:root {
  --beige: #f8f3f0;
  --white: #ffffff;

  --accent: #d48f95;
  --accent-hover: #bf6e75;

  --text-primary: #1a1a1a;
  --text-secondary: #6b6b6b;
}


/* BASE */

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--beige);
  color: var(--text-primary);
  line-height: 1.6;
}


/* NAV */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 24px 8%;

  position: sticky;
  top: 0;

  background: rgba(248, 243, 240, 0.9);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(0,0,0,0.05);

  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;

  text-decoration: none;
  color: var(--text-primary);
}

.logo span {
  color: var(--accent);
}


/* NAV LINKS */

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);

  font-size: 15px;
  letter-spacing: 0.4px;

  position: relative;
}

.nav-links a::after {
  content: "";

  position: absolute;
  bottom: -6px;
  left: 0;

  width: 0%;
  height: 2px;

  background: var(--accent);

  transition: 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
}


/* HERO */

.hero {
  height: 90vh;

  background:
  linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
  url("https://images.unsplash.com/photo-1607779097040-26e80aa78e66?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;

  padding: 0 8%;

  color: white;
}

.hero-content {
  max-width: 650px;

  background: rgba(0,0,0,0.35);

  padding: 50px 60px;

  backdrop-filter: blur(4px);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  line-height: 1.15;

  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  opacity: 0.95;

  margin-bottom: 30px;
}


/* BUTTONS */

.btn {
  padding: 14px 32px;

  border: none;

  background: var(--accent);
  color: white;

  font-weight: 500;
  letter-spacing: 0.5px;

  cursor: pointer;

  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--accent-hover);

  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* SECTION */

.section {
  padding: 140px 8%;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;

  margin-bottom: 20px;
}

.section p {
  max-width: 700px;
  margin: auto;

  color: var(--text-secondary);
}


/* GALLERY */

.gallery {
  margin-top: 60px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.gallery img {
  width: 100%;
  height: 380px;

  object-fit: cover;

  transition: all 0.6s ease;
}

.gallery img:hover {
  transform: scale(1.06);
}


/* PACKAGES */

.packages {
  padding: 140px 8%;

  background: var(--white);

  text-align: center;
}

.packages h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
}

.packages-subtitle {
  color: var(--text-secondary);
  margin-bottom: 60px;
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}


/* PACKAGE CARD */

.package-card {
  background: var(--white);

  padding: 60px 40px;

  box-shadow: 0 4px 20px rgba(0,0,0,0.05);

  transition: all 0.4s ease;

  position: relative;
}

.package-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.featured {
  border: 2px solid var(--accent);
}

.featured-label {
  position: absolute;

  top: -15px;
  left: 50%;

  transform: translateX(-50%);

  background: var(--accent);
  color: white;

  padding: 6px 16px;

  font-size: 12px;
}

.package-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;

  margin-bottom: 15px;
}

.price {
  font-size: 34px;
  color: var(--accent);

  margin-bottom: 25px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.package-card li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}


/* PACKAGE BUTTON */

.package-btn {
  background: var(--accent);
  border: none;

  color: white;

  padding: 12px 28px;

  cursor: pointer;

  transition: all 0.3s ease;
}

.package-btn:hover {
  background: var(--accent-hover);

  transform: translateY(-2px);
}


/* CTA */

.cta {
  background: var(--accent);

  color: white;

  text-align: center;

  padding: 140px 8%;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;

  margin-bottom: 20px;
}


/* FOOTER */

footer {
  background: var(--text-primary);

  color: white;

  padding: 80px 8%;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  margin-top: 15px;
  color: var(--text-secondary);
}

.footer-section h4 {
  margin-bottom: 15px;
}

.footer-section a {
  display: block;

  color: var(--text-secondary);

  text-decoration: none;

  margin-bottom: 10px;

  transition: 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 40px;

  font-size: 14px;

  color: var(--text-secondary);
}


/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;

  bottom: 25px;
  right: 25px;

  width: 60px;
  height: 60px;

  background: #25D366;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 25px rgba(0,0,0,0.2);

  transition: 0.3s ease;

  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);

  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}


/* RESPONSIVE */

@media (max-width: 992px) {

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-container {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;

    top: 80px;
    right: 0;

    background: var(--beige);

    width: 100%;

    flex-direction: column;

    align-items: center;

    padding: 30px 0;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 70vh;
  }

  .hero h1 {
    font-size: 34px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

}

/* CTA BUTTON FIX + LUXURY GLOW */

.cta .btn {
  background: var(--white);
  color: var(--accent);

  box-shadow: 0 0 0 rgba(212,143,149,0.0);

  animation: velouraGlow 2.5s ease-in-out infinite;
}

.cta .btn:hover {
  background: var(--beige);
  color: var(--accent-hover);

  transform: translateY(-3px);

  box-shadow: 0 12px 30px rgba(0,0,0,0.15);

  animation: none;
}


/* SOFT LUXURY GLOW */

@keyframes velouraGlow {

  0% {
    box-shadow: 0 0 0 rgba(212,143,149,0.0);
  }

  50% {
    box-shadow: 0 0 25px rgba(212,143,149,0.35);
  }

  100% {
    box-shadow: 0 0 0 rgba(212,143,149,0.0);
  }

}

/* TESTIMONIALS SECTION */

.testimonials {

  padding: 140px 8%;

  background: var(--beige);

  text-align: center;

}

.testimonials h2 {

  font-family: 'Playfair Display', serif;

  font-size: 40px;

  margin-bottom: 10px;

}

.testimonials-subtitle {

  color: var(--text-secondary);

  margin-bottom: 60px;

}


/* WRAPPER */

.testimonial-wrapper {

  overflow: hidden;

  position: relative;

}


/* TRACK */

.testimonial-track {

  display: flex;

  gap: 30px;

  width: max-content;

  animation: scrollTestimonials 40s linear infinite;

}

.testimonial-wrapper:hover .testimonial-track {

  animation-play-state: paused;

}


/* CARD */

.testimonial-card {

  background: var(--white);

  padding: 40px 30px;

  width: 350px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  text-align: left;

  flex-shrink: 0;

}

.testimonial-card p {

  color: var(--text-secondary);

  margin-bottom: 20px;

  font-size: 15px;

  line-height: 1.6;

}

.testimonial-card h4 {

  font-weight: 500;

  color: var(--accent);

}


/* AUTO SCROLL ANIMATION */

@keyframes scrollTestimonials {

  0% {

    transform: translateX(0);

  }

  100% {

    transform: translateX(-50%);

  }

}


/* RESPONSIVE */

@media (max-width: 1024px) {

  .testimonial-card {

    width: 300px;

  }

}

@media (max-width: 768px) {

  .testimonial-card {

    width: 85vw;

  }

}

.section,
.packages,
.testimonials {
  scroll-margin-top: 100px;
}

