/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  color: #292929;
  background: #fffaf8;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

.section {
  padding: 100px 0;
}


/* =========================
   NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee2dd;
}

.nav-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 27px;
  font-weight: 700;
}

.logo span {
  font-weight: 400;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  opacity: 0.6;
}

.nav-button,
.primary-button {
  display: inline-block;
  padding: 13px 23px;
  border-radius: 50px;
  background: #292929;
  color: white;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-button:hover,
.primary-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.menu-button {
  display: none;
  background: none;
  border: 0;
  font-size: 27px;
  cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
  padding: 90px 0;
  background: #f3e6df;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.small-heading,
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.05;
  margin-bottom: 25px;
}

.hero h1 span {
  display: block;
  font-style: italic;
  font-weight: 500;
}

.hero-description {
  max-width: 520px;
  font-size: 17px;
  color: #625c59;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.secondary-button {
  padding: 12px 22px;
  border: 1px solid #292929;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.hero-image img {
  height: 570px;
  object-fit: cover;
  border-radius: 200px 200px 20px 20px;
}


/* =========================
   ABOUT
========================= */

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-image img {
  height: 570px;
  object-fit: cover;
  border-radius: 20px;
}

.about h2,
.section-heading h2,
.booking h2,
.offer h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 25px;
}

.about-text > p:not(.section-label) {
  color: #69615d;
  margin-bottom: 18px;
}

.features {
  display: flex;
  gap: 40px;
  margin-top: 35px;
}

.features div {
  display: flex;
  flex-direction: column;
}

.features strong {
  font-family: "Playfair Display", serif;
  font-size: 30px;
}

.features span {
  font-size: 12px;
  color: #777;
}


/* =========================
   SERVICES
========================= */

.services {
  background: #f8f0ec;
}

.section-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px;
}

.section-heading > p:last-child {
  color: #706966;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  padding: 35px;
  border-radius: 18px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 30px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  margin-bottom: 12px;
}

.service-card p {
  color: #706966;
  font-size: 14px;
  margin-bottom: 20px;
}

.service-card span {
  font-weight: 700;
  font-size: 14px;
}


/* =========================
   OFFER
========================= */

.offer {
  padding: 65px 0;
  background: #292929;
  color: white;
}

.offer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.offer h2 {
  margin-bottom: 10px;
}

.offer p {
  opacity: 0.75;
}

.offer .primary-button {
  background: white;
  color: #292929;
  white-space: nowrap;
}


/* =========================
   GALLERY
========================= */

.gallery {
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-grid img {
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}


/* =========================
   REVIEWS
========================= */

.reviews {
  background: #f8f0ec;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: white;
  padding: 35px;
  border-radius: 18px;
}

.stars {
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.review-card p {
  color: #65605d;
  margin-bottom: 20px;
}


/* =========================
   BOOKING
========================= */

.booking {
  background: white;
}

.booking-box {
  padding: 65px;
  border-radius: 25px;
  background: #f3e6df;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.booking-text p:not(.section-label) {
  color: #655e5a;
  margin-bottom: 25px;
}

.whatsapp-button {
  display: inline-block;
  padding: 14px 25px;
  border-radius: 50px;
  background: #292929;
  color: white;
  font-weight: 600;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.booking-info > div {
  display: flex;
  gap: 15px;
}

.booking-info span {
  font-size: 25px;
}

.booking-info strong {
  display: block;
  margin-bottom: 3px;
}

.booking-info p {
  color: #6e6865;
  font-size: 14px;
}


/* =========================
   MAP
========================= */

.contact {
  background: #f8f0ec;
}

.map-container {
  overflow: hidden;
  border-radius: 20px;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================
   FOOTER
========================= */

.footer {
  background: #292929;
  color: white;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer p {
  color: #aaa;
  margin-top: 15px;
  font-size: 14px;
}

.footer h4 {
  margin-bottom: 15px;
}

.footer-grid a:not(.logo) {
  display: block;
  color: #aaa;
  font-size: 14px;
  margin-bottom: 8px;
}

.copyright {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #444;
  color: #888;
  font-size: 13px;
}


/* =========================
   FLOATING WHATSAPP
========================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 25px;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fffaf8;
    flex-direction: column;
    gap: 0;
    display: none;
    padding: 20px 5%;
    border-bottom: 1px solid #eee2dd;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 0;
  }

  .nav-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-content,
  .about-grid,
  .booking-box {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    height: 450px;
  }

  .about-image img {
    height: 450px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 600px) {

  .section {
    padding: 70px 0;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-image img {
    height: 380px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid img {
    height: 220px;
  }

  .features {
    gap: 20px;
    flex-wrap: wrap;
  }

  .booking-box {
    padding: 35px 25px;
  }

  .offer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

}