* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #111;
  color: #eee;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 100;
}

.logo {
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
}

.btn {
  background: #b08d57;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.small {
  padding: 8px 15px;
}

.hero {
  height: 100vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  padding-left: 80px;
  max-width: 600px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 25px;
  font-size: 18px;
}

.about {
  display: flex;
  gap: 50px;
  padding: 100px;
}

.about img {
  width: 50%;
  border-radius: 8px;
}

.services, .team, .booking {
  padding: 80px;
}

.services {
  background: #151515;
}

.cards {
  display: flex;
  gap: 30px;
}

.card {
  background: #1f1f1f;
  padding: 30px;
  width: 100%;
}

.card span {
  display: block;
  margin-top: 15px;
  color: #b08d57;
  font-weight: 600;
}

.members {
  display: flex;
  gap: 30px;
}

.member img {
  width: 100%;
  border-radius: 6px;
}

.booking {
  background: #151515;
}

.booking form {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking input, select {
  padding: 12px;
}

footer {
  text-align: center;
  padding: 30px;
  background: #000;
}

/* ===== MOBILE ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #fff;
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 20px;
  }

  .nav.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .hero-content {
    padding: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .about {
    flex-direction: column;
    padding: 60px 20px;
  }

  .about img {
    width: 100%;
  }

  .cards, .members {
    flex-direction: column;
  }

  .services, .team, .booking {
    padding: 60px 20px;
  }
}
