@import url('styles.css');

.hero-section {
  position: relative;
  height: 80vh;
  max-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--header-height);
  background: #101820;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(34, 43, 69, 0.55),
    rgba(181, 146, 164, 0.28)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 40px;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 16px;
  max-width: 820px;
  width: 90%;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInHero 0.6s ease forwards 0.4s;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  margin-bottom: 22px;
}

.hero-content .btn-primary {
  padding: 12px 30px;
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}

.hero-content .btn-primary:hover {
  transform: translateY(-2px);
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 1rem;
}



.overview-section h2,
.ceremony-section h2,
.packages-section h2,
.dining-section h2,
.extras-section h2,
.cta-container h2 {
  font-family: 'Playfair Display', serif;
  /* color: var(--primary-color); */
  font-size: 1.5em;
  margin-bottom: 16px;
  text-align: center;
  font-weight: bold;
  display: block;
}



.overview-section {
  padding: 80px 20px;
  background: #faf7f8;
  text-align: center;
}

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

.overview-divider {
  width: 100px;
  height: 2px;
  background: var(--accent-color);
  margin: 24px auto;
  border-radius: 999px;
}

.overview-container p {
  font-family: 'Lora', serif;
  color: #475569;
  line-height: 1.9;
  font-size: 1.08rem;
}

.ceremony-section {
  padding: 90px 20px;
  background: #ffffff;
}

.ceremony-grid {
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.ceremony-card {
  background: #fff;
  border: 1px solid #f0e8ec;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ceremony-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.ceremony-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.ceremony-card.large {
  background: linear-gradient(180deg, #fff 0%, #fbf6f8 100%);
}

.ceremony-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.ceremony-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ceremony-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-family: 'Lora', serif;
  color: #475569;
  line-height: 1.75;
}

.ceremony-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.packages-section {
  padding: 90px 20px;
  background: #faf7f8;
  text-align: center;
}

.packages-container {
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.package-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  text-align: left;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.package-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 36px rgba(15, 23, 42, 0.12);
}

.package-card.featured {
  border: 1px solid rgba(181, 146, 164, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #fcf9fb 100%);
}

.package-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.package-intro {
  font-family: 'Lora', serif;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 18px;
}

.details-toggle {
  border: none;
  background: var(--primary-color);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.details-toggle:hover {
  transform: translateY(-1px);
}

.details-toggle.active {
  background: var(--accent-color);
}

.package-details {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #eee4e9;
}

.package-details.active {
  display: block;
}

.package-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.package-details li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-family: 'Lora', serif;
  color: #475569;
  line-height: 1.75;
}

.package-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.packages-note {
  max-width: 900px;
  margin: 24px auto 0;
  font-family: 'Lora', serif;
  color: var(--primary-color);
  font-style: italic;
  line-height: 1.8;
}

.dining-section {
  padding: 90px 20px;
  background: #ffffff;
}

.dining-grid {
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.dining-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dining-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.dining-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 34px rgba(15, 23, 42, 0.11);
}

.dining-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.dining-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.dining-card p {
  font-family: 'Lora', serif;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

.journey-section {
  padding: 90px 20px;
  background: #faf7f8;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.timeline-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item:hover {
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.11);
}

.timeline-item i {
  font-size: 1.9rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.timeline-item h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.timeline-item p {
  font-family: 'Lora', serif;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

.extras-section {
  padding: 90px 20px;
  background: #ffffff;
}

.extras-container {
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.extra-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcf8fa 100%);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.extra-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.extra-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 34px rgba(15, 23, 42, 0.11);
}

.extra-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.extra-card p {
  font-family: 'Lora', serif;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

.cta-section {
  padding: 64px 20px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
}

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

.cta-container h2 {
  color: #fff;
}

.cta-container p {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.cta-section a {
  color: #fff;
  text-decoration: none;
}

.cta-container .btn-primary {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 30px;
  transition: transform 0.3s ease;
}

.cta-container .btn-primary:hover {
  transform: translateY(-2px);
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .ceremony-grid,
  .dining-grid,
  .extras-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 62vh;
  }

  .hero-content {
    padding: 26px 20px;
  }

  .overview-section,
  .ceremony-section,
  .packages-section,
  .dining-section,
  .journey-section,
  .extras-section {
    padding: 60px 15px;
  }

  .ceremony-grid,
  .packages-container,
  .dining-grid,
  .extras-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .details-toggle,
  .cta-container .btn-primary {
    font-size: 0.95rem;
  }
}