:root {
  --beige: #F5EFE6;
  --beige2: #f2eee9;
  --accent1: #E83C91;
  --accent2: #FF8FB7;
  --accent3: #FF3F7F;
  --dark: #111111;
  --prim2: #ffffff;
}

html {
  scroll-behavior: smooth;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--beige);
  color: var(--dark);
  line-height: 1.6;
}

/* NAV */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  position: relative;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  text-decoration: none;
  color: var(--dark);
  display: inline-block;
}

.logo span {
  color: var(--accent1);
}


/* NAV LINKS */

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent1);
  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(--dark);
}

/* 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-1529634806980-85c3dd6d34ac?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: 600px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 30px;
  font-size: 18px;
}

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  background: var(--accent1);
  color: var(--prim2);
  cursor: pointer;
  transition: 0.4s ease;
}

.btn:hover {
  background: var(--accent3);
}

/* SECTION */

.section {
  padding: 100px 8%;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.section p {
  max-width: 700px;
  margin: auto;
  color: #444;
}

.gallery {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* CTA */

.cta {
  background: var(--accent2);
  color: white;
  text-align: center;
  padding: 120px 8%;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
}

/* FOOTER */

footer {
  background: #111;
  color: white;
  padding: 60px 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(--accent2);
}

.footer-desc {
  margin-top: 15px;
  color: #aaa;
}

.footer-section h4 {
  margin-bottom: 15px;
}

.footer-section a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-section a:hover {
  color: var(--accent2);
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .parallax {
    height: 65vh;
    min-height: auto;
    background-attachment: scroll;
  }

  .parallax-content h2 {
    font-size: 34px;
  }

  .parallax-content p {
    font-size: 16px;
  }

  .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 h1 {
    font-size: 34px;
  }

  .hero {
    height: 70vh;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}
.img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  display: block;
}

.before-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
}

/* LUXURY PARALLAX */

.parallax {
  height: 90vh; /* bigger on desktop */
  min-height: 700px;
  background-image: url("https://images.unsplash.com/photo-1522337660859-02fbefca4702?auto=format&fit=crop&w=2000&q=80");
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* slightly darker for better contrast */
}

.parallax-content {
  position: relative;
  color: var(--dark);
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.parallax-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 64px; /* bigger headline */
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.parallax-content p {
  font-size: 22px; /* larger supporting text */
  font-weight: 400;
  opacity: 0.9;
}

/* PACKAGES SECTION */

.packages {
  padding: 120px 8%;
  background: #fff;
  text-align: center;
}

.packages h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 10px;
}

.packages-subtitle {
  color: #666;
  margin-bottom: 60px;
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.package-card {
  background: var(--beige2);
  padding: 50px 30px;
  transition: 0.4s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
}

/* FEATURED CARD */

.featured {
  background: white;
  border: 2px solid var(--accent1);
  transform: scale(1.05);
}

.featured-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent1);
  color: white;
  padding: 6px 16px;
  font-size: 12px;
}

/* TEXT */
.package-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.price {
  font-size: 28px;
  color: var(--accent1);
  margin-bottom: 25px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.package-card li {
  margin-bottom: 10px;
  color: #555;
}

/* BUTTON */

.package-btn {
  background: var(--accent1);
  border: none;
  color: white;
  padding: 12px 28px;
  cursor: pointer;
  transition: 0.3s ease;
}

.package-btn:hover {
  background: var(--accent3);
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .packages-container {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: scale(1);
  }

}

.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);

  cursor: pointer;

  transition: all 0.3s ease;

  z-index: 999;
}

.whatsapp-float:hover {

  transform: translateY(-4px) scale(1.05);

  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

