html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #070707;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
}

.hide { display: none !important; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #050505;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  border-bottom: 3px solid #d99a16;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand span {
  color: #d99a16;
  font-size: 14px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 8px;
  font-weight: bold;
}

nav a:hover { color: #d99a16; }

.lang button {
  background: #d99a16;
  color: #000;
  border: none;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, #000, #1d1d1d, #9a6500);
  color: white;
  padding: 78px 22px;
  text-align: center;
}

.hero h1 {
  font-size: 46px;
  max-width: 980px;
  margin: auto;
}

.hero p {
  font-size: 20px;
  margin: 18px auto;
}

.hero-buttons a {
  display: inline-block;
  margin: 10px;
  background: #d99a16;
  color: #000;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

.mockup {
  max-width: 1180px;
  margin: 34px auto;
  padding: 0 16px;
}

.mockup img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.section {
  max-width: 1080px;
  margin: 36px auto;
  padding: 34px;
  background: white;
  border-radius: 24px;
}

h2 {
  text-align: center;
  font-size: 34px;
  color: #111;
  margin-top: 0;
}

h3 { color: #1b1b1b; }

.grid, .about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.box {
  background: #fff3d1;
  border: 2px solid #d99a16;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}

.button {
  display: inline-block;
  margin-top: 12px;
  background: #d99a16;
  color: #000;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

.about {
  line-height: 1.65;
}

.about ul {
  padding-left: 22px;
}

.slogan {
  font-size: 22px;
  font-weight: bold;
  color: #b77900;
}

.booking {
  border: 3px solid #d99a16;
}

form {
  max-width: 760px;
  margin: auto;
}

label {
  display: block;
  font-weight: bold;
  margin-top: 16px;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #bbb;
  border-radius: 10px;
  font-size: 16px;
  margin-top: 6px;
}

textarea { min-height: 100px; }

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

button {
  width: 100%;
  margin-top: 22px;
  padding: 16px;
  background: #d99a16;
  color: #000;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
}

button:hover {
  background: #000;
  color: #fff;
}

.contact-section {
  text-align: center;
  font-size: 18px;
}

.contact-section a {
  color: #b77900;
  font-weight: bold;
}

.faq p {
  border-bottom: 1px solid #eee;
  padding-bottom: 14px;
}

@media(max-width: 760px) {
  .topbar { justify-content: center; text-align: center; }
  nav { line-height: 2; }
  .hero h1 { font-size: 32px; }
  .row { grid-template-columns: 1fr; }
  .section { margin: 20px 12px; padding: 22px; }
}
