/* ── Import Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400&display=swap');

/* ── CSS Variables ── */
:root {
  --color-text:       #333333;
  --color-bg:         #ffffff;
  --color-blush-bg:   #f9f5ef;
  --color-pale-rose:  #ffe9ed;
  --color-dusky-pink: #c58ba8;
  --color-heading:    #a24f72;
  --font-body:        'Montserrat', sans-serif;
  --font-heading:     'Playfair Display', serif;
}

/* ── GLOBAL RESET & BASE TYPOGRAPHY ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

/* ── HEADER & NAVIGATION ── */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}

.logo img {
  height: 80px;  /* Doubled from 40px to 80px */
  width: auto;
  object-fit: contain;
}

.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1.1rem;
}

.menu li a:hover {
  color: var(--color-dusky-pink);
}

/* Active Navigation States */
.menu li a.active {
  color: var(--color-dusky-pink);
  font-weight: 600;
  position: relative;
}

.menu li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-dusky-pink);
  border-radius: 1px;
}

/* ── SOCIAL MEDIA LINKS ── */
.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-pale-rose);
  color: var(--color-dusky-pink);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  background: var(--color-dusky-pink);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 139, 168, 0.3);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.tiktok:hover {
  background: #000000;
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 2rem auto;
  background: var(--color-bg);
  text-align: center;
}

.hero-gallery {
  position: relative;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-gallery-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.hero-gallery-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.hero-gallery-slide img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-height: 600px;
  object-fit: contain;
}

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

.hero-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-heading);
  transition: all 0.3s ease;
  z-index: 10;
}

.hero-gallery-nav:hover {
  background: var(--color-dusky-pink);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.hero-gallery-nav.prev {
  left: 20px;
}

.hero-gallery-nav.next {
  right: 20px;
}


/* ── HOW IT WORKS SECTION ── */
.steps {
  padding: 4rem 2rem;
  background: var(--color-blush-bg);
}

.steps h2 {
  font-family: var(--font-heading);
  color: var(--color-dusky-pink);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ── STEP CARDS ── */
.card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--color-bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.step-circle {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-pale-rose);
  color: var(--color-dusky-pink);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  color: var(--color-heading);
  font-size: 1.25rem;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── BOOK SECTION STYLES ── */
.book-section {
  padding: 4rem 2rem;
  background: var(--color-bg);
  max-width: 1400px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-text);
  opacity: 0.8;
}

/* ── PACKAGES GRID ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.package-card {
  background: var(--color-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.package-card.featured {
  border-color: var(--color-dusky-pink);
  transform: scale(1.02);
}

.package-card.premium {
  border-color: #d4af37;
  background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
}

.package-card.custom {
  border-color: var(--color-pale-rose);
}

/* ── PACKAGE IMAGE ── */
.package-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.package-image a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.package-image a:hover::after {
  content: "Click to view details";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-dusky-pink);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-badge {
  background: #d4af37;
}

/* ── PACKAGE CONTENT ── */
.package-content {
  padding: 2rem;
}

.package-content h3 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.package-description {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.package-details {
  margin-bottom: 2rem;
}

.duration {
  display: inline-block;
  background: var(--color-pale-rose);
  color: var(--color-dusky-pink);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--color-text);
  position: relative;
  padding-left: 1.5rem;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-dusky-pink);
  font-weight: bold;
}

.features-list li.highlight {
  color: var(--color-heading);
  font-weight: 600;
}

.features-list li.note {
  font-style: italic;
  opacity: 0.8;
  font-size: 0.85rem;
}

/* ── PACKAGE FOOTER ── */
.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-heading);
  font-weight: 700;
}

.price-note {
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.7;
  font-weight: 400;
}

.book-btn {
  background: var(--color-dusky-pink);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.book-btn:hover {
  background: var(--color-heading);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(162, 79, 114, 0.3);
}

/* ── ADDONS SECTION ── */
.addons-section {
  text-align: center;
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: var(--color-blush-bg);
  border-radius: 20px;
}

.addons-section h3 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.addon-item {
  background: var(--color-bg);
  padding: 1.5rem 1rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.addon-item:hover {
  transform: translateY(-3px);
}

.addon-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.addon-item h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 1rem;
  margin: 0;
}

/* ── CONTACT SECTION ── */
.contact-section {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--color-pale-rose) 0%, var(--color-blush-bg) 100%);
  border-radius: 20px;
  margin-top: 2rem;
}

.contact-section h3 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-section p {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-btn.primary {
  background: var(--color-dusky-pink);
  color: white;
}

.contact-btn.primary:hover {
  background: var(--color-heading);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(162, 79, 114, 0.3);
}

.contact-btn.secondary {
  background: transparent;
  color: var(--color-heading);
  border: 2px solid var(--color-heading);
}

.contact-btn.secondary:hover {
  background: var(--color-heading);
  color: white;
  transform: translateY(-2px);
}

/* ── SOCIAL SECTION IN CONTACT ── */
.social-section {
  margin-top: 2rem;
  text-align: center;
}

.social-section p {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.social-section .social-links {
  justify-content: center;
  margin-left: 0;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--color-heading);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  font-family: var(--font-heading);
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-section .social-links {
  margin-left: 0;
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .package-card.featured {
    transform: none;
  }
  
  .package-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .card {
    flex-direction: column;
    text-align: center;
  }
  .hero-gallery-slide {
    min-height: 300px;
  }
  .hero-gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .hero-gallery-nav.prev {
    left: 10px;
  }
  .hero-gallery-nav.next {
    right: 10px;
  }
  .hero-gallery-slide img {
    border-radius: 15px;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .package-content {
    padding: 1.5rem;
  }
  
  .addons-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  /* Social links responsive */
  .social-links {
    margin-left: 1rem;
    gap: 0.5rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link svg {
    width: 18px;
    height: 18px;
  }
  
  /* Footer responsive */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
}
