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

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

:root{

  --primary:#c86b85;
  --secondary:#fff7fa;
  --dark:#1e1e1e;
  --text:#555;
  --white:#fff;

  --shadow:
    0 10px 30px rgba(0,0,0,0.08);

  --radius:20px;

}

html{
  scroll-behavior:smooth;
}

body{

  font-family:'Poppins',sans-serif;

  color:var(--text);

  line-height:1.7;

  overflow-x:hidden;

  background:#fff;

}

h1,h2,h3{

  font-family:'Playfair Display',serif;

  color:var(--dark);

}

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

.container{

  width:min(1150px,calc(100% - 2rem));

  margin:auto;

}

.section{
  padding:90px 0;
}

.bg-light{
  background:var(--secondary);
}

.center{
  text-align:center;
}

.section-subtitle{

  color:var(--primary);

  font-weight:600;

  letter-spacing:2px;

  text-transform:uppercase;

  margin-bottom:10px;

}

.section-title{

  font-size:clamp(2rem,4vw,3rem);

  margin-bottom:25px;

}

.contact-address{

  line-height:2;

  font-size:1.05rem;

  color:#555;

}

/* =========================
   HEADER
========================= */

.header{

  position:fixed;

  top:0;

  width:100%;

  z-index:1000;

  background:
    rgba(255,255,255,0.94);

  backdrop-filter:blur(10px);

  box-shadow:
    0 2px 10px rgba(0,0,0,0.05);

}

.navbar{

  display:flex;

  justify-content:space-between;

  align-items:center;

  padding:18px 0;

}

.logo{

  text-decoration:none;

  font-size:1.9rem;

  font-weight:700;

  color:var(--dark);

}

.logo span{
  color:var(--primary);
}

.nav-links{

  display:flex;

  gap:24px;

  list-style:none;

}

.nav-links a{

  text-decoration:none;

  color:var(--dark);

  font-weight:500;

  transition:.3s ease;

}

.nav-links a:hover{
  color:var(--primary);
}

.menu-toggle{

  display:none;

  border:none;

  background:none;

  font-size:1.8rem;

  cursor:pointer;

}

/* =========================
   HERO IMAGE ONLY
========================= */

.hero{

  width:100%;

  min-height:100vh;

  padding-top:110px;

  padding-bottom:40px;

  background:#f8eef1;

  display:flex;

  align-items:center;

  justify-content:center;

  overflow:hidden;

}

.hero-full-image{

  width:min(1400px,95%);

  margin:auto;

  border-radius:35px;

  overflow:hidden;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.18);

}

.hero-full-image img{

  width:100%;

  height:auto;

  display:block;

  object-fit:contain;

}

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

.grid-2{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:50px;

  align-items:center;

}

.rounded-img{

  border-radius:var(--radius);

  box-shadow:var(--shadow);

}

.feature-list{

  padding-left:20px;

  margin-top:20px;

}

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

.services-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

  gap:28px;

  margin-top:40px;

}

.service-card{

  background:#fff;

  border-radius:28px;

  overflow:hidden;

  box-shadow:
    0 12px 35px rgba(0,0,0,0.08);

  transition:.4s ease;

}

.service-card:hover{

  transform:translateY(-8px);

}

.service-card img{

  height:320px;

  object-fit:cover;

  transition:.6s ease;

}

.service-card:hover img{

  transform:scale(1.08);

}

.service-card h3{

  padding:20px 20px 8px;

  font-size:1.7rem;

}

.service-card p{

  padding:0 20px 24px;

}

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

.gallery-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

  gap:22px;

  margin-top:40px;

  max-height:470px;

  overflow:hidden;

  transition:.5s ease;

}

.gallery-grid.show-all{
  max-height:5000px;
}

.gallery-grid img{

  width:100%;

  height:320px;

  object-fit:cover;

  border-radius:24px;

  cursor:pointer;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.12);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    filter .35s ease;

}

.gallery-grid:hover img{

  transform:scale(0.96);

  filter:brightness(0.82);

}

.gallery-grid img:hover{

  transform:scale(1.08);

  z-index:10;

  position:relative;

  filter:brightness(1);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.22);

}

.gallery-btn{

  text-align:center;

  margin-top:35px;

}

/* =========================
   PRICING
========================= */

.pricing-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

  gap:25px;

}

.price-card{

  background:white;

  padding:32px;

  border-radius:var(--radius);

  text-align:center;

  box-shadow:var(--shadow);

  transition:.3s ease;

}

.price-card:hover{
  transform:translateY(-6px);
}

.featured{
  border:3px solid var(--primary);
}

.price{

  font-size:2.5rem;

  color:var(--primary);

  font-weight:700;

  margin:15px 0;

}

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

.booking-form{

  max-width:700px;

  margin:auto;

  display:grid;

  gap:18px;

}

.booking-form input,
.booking-form select,
.booking-form textarea{

  width:100%;

  padding:15px 18px;

  border:1px solid #ddd;

  border-radius:14px;

  font-size:16px;

  font-family:'Poppins',sans-serif;

  outline:none;

  transition:.3s ease;

}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{

  border-color:var(--primary);

  box-shadow:
    0 0 0 4px rgba(200,107,133,0.12);

}

.booking-form textarea{
  resize:none;
}

/* =========================
   BUTTONS
========================= */

.btn{

  display:inline-block;

  padding:14px 30px;

  border-radius:999px;

  text-decoration:none;

  font-weight:600;

  border:none;

  cursor:pointer;

  transition:.3s ease;

}

.btn-primary{

  background:var(--primary);

  color:white;

}

.btn-primary:hover{
  transform:translateY(-3px);
}

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

.footer{

  background:#111;

  color:white;

  text-align:center;

  padding:25px 0;

}

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

.whatsapp-float{

  position:fixed;

  right:20px;

  bottom:20px;

  width:60px;

  height:60px;

  border-radius:50%;

  background:#25d366;

  color:white;

  display:grid;

  place-items:center;

  font-size:1.8rem;

  text-decoration:none;

  box-shadow:var(--shadow);

  z-index:999;

}

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

.review-form{

  max-width:700px;

  margin:40px auto;

  display:grid;

  gap:18px;

}

.review-form input,
.review-form select,
.review-form textarea{

  width:100%;

  padding:15px 18px;

  border:1px solid #ddd;

  border-radius:14px;

  font-size:16px;

  font-family:'Poppins',sans-serif;

  outline:none;

}

.review-form textarea{
  resize:none;
}

/* REVIEW GRID */

.reviews-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

  gap:25px;

  margin-top:50px;

}

/* CARD */

.review-card{

  background:#fff;

  padding:28px;

  border-radius:24px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

  transition:.3s ease;

}

.review-card:hover{

  transform:translateY(-5px);

}

.review-stars{

  font-size:22px;

  margin-bottom:14px;

}

.review-text{

  color:#555;

  line-height:1.8;

  margin-bottom:18px;

}

.review-name{

  font-weight:600;

  color:#c86b85;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .gallery-grid{

    grid-template-columns:
      repeat(3,1fr);

  }

}

@media(max-width:768px){

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

  .menu-toggle{
    display:block;
  }

  .nav-links{

    position:absolute;

    top:100%;

    left:0;

    right:0;

    background:white;

    flex-direction:column;

    padding:20px;

    display:none;

  }

  .nav-links.show{
    display:flex;
  }

  .hero{

    min-height:auto;

    padding-top:90px;

    padding-bottom:20px;

  }

  .hero-full-image{

    width:96%;

    border-radius:22px;

  }

  .gallery-grid{

    grid-template-columns:
      repeat(auto-fit,minmax(160px,1fr));

    max-height:700px;

  }

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

}

@media(max-width:480px){

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

}