:root {
  --sun-gold: #f2a900;
  --sunset-orange: #e8652b;
  --coral: #e85d5d;
  --warm-peach: #fcdec0;
  --cream: #fff8f0;
  --deep-terracotta: #c44b2b;
  --night-navy: #1a1a2e;
  --soft-navy: #2d2d44;
  --olive: #6b7b3a;
  --sage: #a4b07a;
  --wine: #7b2d3b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Libre Franklin", sans-serif;
  color: var(--night-navy);
  background: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

nav.transparent {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

nav.scrolled {
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.7rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

nav .logo {
  font-family: "Caveat", cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.02em;
}

nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

nav .nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

nav .nav-links a.active {
  color: var(--sun-gold);
}

.lang-switch {
  display: flex;
  gap: 0.3rem;
  margin-left: 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 1.5rem;
}

.lang-switch a {
  font-size: 0.75rem !important;
  letter-spacing: 0.05em !important;
  padding: 0.25em 0.5em;
  border-radius: 4px;
  transition: all 0.3s;
}

.lang-switch a.active {
  background: var(--sun-gold);
  color: var(--night-navy) !important;
  font-weight: 700 !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.mobile-toggle span:nth-child(1) {
  top: 0;
}
.mobile-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.mobile-toggle span:nth-child(3) {
  bottom: 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    #1a1a2e 0%,
    #2d2d44 25%,
    #4a2040 40%,
    #8b3a3a 55%,
    #c44b2b 65%,
    #e8652b 75%,
    #f2a900 90%,
    #ffd166 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 600px 400px at 20% 80%,
      rgba(242, 169, 0, 0.3),
      transparent
    ),
    radial-gradient(
      ellipse 500px 500px at 80% 20%,
      rgba(232, 93, 93, 0.2),
      transparent
    ),
    radial-gradient(
      ellipse 300px 300px at 50% 60%,
      rgba(255, 255, 255, 0.05),
      transparent
    );
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 2;
}

.sun-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #ffd166 0%,
    #f2a900 30%,
    #e8652b 70%,
    transparent 100%
  );
  top: 15%;
  right: 10%;
  opacity: 0.4;
  filter: blur(60px);
  animation: float-sun 8s ease-in-out infinite;
}

@keyframes float-sun {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 15px);
  }
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 209, 102, 0.6);
  border-radius: 50%;
  animation: drift linear infinite;
}

@keyframes drift {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  max-width: 800px;
}

.hero-date {
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sun-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 0.3em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--sun-gold);
}

.hero-sub {
  font-family: "Caveat", cursive;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--warm-peach);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-details {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-details span {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.hero-details .icon {
  font-size: 1.3em;
}

.hero-cta {
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-cta a {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--sun-gold);
  color: var(--night-navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 60px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(242, 169, 0, 0.4);
}

.hero-cta a:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(242, 169, 0, 0.5);
}

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

/* ===== SECTION COMMONS ===== */
section {
  padding: 6rem 2rem;
}

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

.section-label {
  font-family: "Caveat", cursive;
  font-size: 1.2rem;
  color: var(--sunset-orange);
  margin-bottom: 0.3rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--night-navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  background: linear-gradient(
    165deg,
    #1a1a2e 0%,
    #2d2d44 25%,
    #4a2040 40%,
    #8b3a3a 55%,
    #c44b2b 65%,
    #e8652b 75%,
    #f2a900 90%,
    #ffd166 100%
  );
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, var(--sun-gold), var(--sunset-orange), var(--coral)) 1;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 600px 400px at 20% 80%,
      rgba(242, 169, 0, 0.3),
      transparent
    ),
    radial-gradient(
      ellipse 500px 500px at 80% 20%,
      rgba(232, 93, 93, 0.2),
      transparent
    );
}

.page-header .section-title {
  color: white;
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}

.page-header .section-label {
  color: var(--sun-gold);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* ===== ABOUT / INTRO ===== */
.about {
  background: var(--cream);
  text-align: center;
}

.about-text {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--soft-navy);
}

.tags {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(242, 169, 0, 0.12);
  color: var(--deep-terracotta);
  padding: 0.5em 1.2em;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== THE PARTY ===== */
.the-party {
  background: var(--night-navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.the-party::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 500px 400px at 10% 90%,
      rgba(242, 169, 0, 0.12),
      transparent
    ),
    radial-gradient(
      ellipse 400px 300px at 90% 10%,
      rgba(232, 93, 93, 0.1),
      transparent
    );
}

.the-party .section-label {
  color: var(--sun-gold);
}
.the-party .section-title {
  color: white;
}

.party-intro {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  position: relative;
}

.party-callout {
  background: linear-gradient(
    135deg,
    rgba(242, 169, 0, 0.15),
    rgba(232, 101, 43, 0.12)
  );
  border-left: 4px solid var(--sun-gold);
  padding: 1.2rem 1.5rem;
  border-radius: 0 14px 14px 0;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--sun-gold);
  margin: 2rem 0;
}

.master-plan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1rem;
  position: relative;
}

.plan-column h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.plan-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.plan-step-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(242, 169, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.plan-step-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.plan-step-text strong {
  color: white;
}

.help-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.help-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.help-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--sun-gold),
    var(--sunset-orange)
  );
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== VENUES ===== */
.venues {
  background: var(--night-navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.venues::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--sun-gold),
    var(--sunset-orange),
    var(--coral)
  );
}

.venues .section-label {
  color: var(--sun-gold);
}

.venues .section-title {
  color: white;
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.venue-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.venue-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--sun-gold),
    var(--sunset-orange)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.venue-card:hover::before {
  opacity: 1;
}

.venue-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.venue-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.venue-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.venue-card .venue-subtitle {
  font-family: "Caveat", cursive;
  color: var(--sun-gold);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.venue-card .venue-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.venue-card .address {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.venue-card .address .pin {
  font-size: 1.2em;
  flex-shrink: 0;
}

.venue-card .when {
  background: linear-gradient(
    135deg,
    rgba(242, 169, 0, 0.15),
    rgba(232, 101, 43, 0.15)
  );
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.venue-card .when strong {
  color: var(--sun-gold);
}

/* ===== INFO / DETAILS ===== */
.details {
  background: linear-gradient(
    180deg,
    var(--night-navy) 0%,
    var(--soft-navy) 50%,
    var(--cream) 100%
  );
  padding-top: 4rem;
}

.details .section-label {
  color: var(--sun-gold);
}

.details .section-title {
  color: white;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
}

.info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--night-navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4em;
}

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

.info-card ul li {
  padding: 0.5em 0;
  font-size: 0.95rem;
  color: var(--soft-navy);
  display: flex;
  align-items: center;
  gap: 0.5em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card ul li:last-child {
  border-bottom: none;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--cream);
  text-align: center;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-card {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-size: 1rem;
  color: var(--night-navy);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-card:hover {
  border-color: var(--sun-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(242, 169, 0, 0.15);
}

.contact-card .c-icon {
  font-size: 1.5rem;
}

/* ===== FAQs ===== */
.faqs {
  background: white;
  position: relative;
}

.faqs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--sun-gold),
    var(--sunset-orange),
    var(--coral)
  );
}

.faq-list {
  max-width: 750px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--night-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.faq-question:hover {
  color: var(--sunset-orange);
}

.faq-arrow {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--sun-gold);
  flex-shrink: 0;
}

.faq-item.highlighted {
  background: linear-gradient(
    135deg,
    rgba(242, 169, 0, 0.08),
    rgba(232, 101, 43, 0.08)
  );
  border: 2px solid var(--sun-gold);
  border-radius: 16px;
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--sun-gold);
}

.faq-item.highlighted .faq-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--sun-gold),
    var(--sunset-orange)
  );
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.8em;
  border-radius: 20px;
  margin-left: 0.8em;
  vertical-align: middle;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.faq-item:not(.highlighted) .faq-badge {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--soft-navy);
}

/* ===== FOOTER ===== */
footer {
  background: var(--night-navy);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.85rem;
}

.footer-logo {
  height: 8rem;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.85;
}

footer a {
  color: var(--sun-gold);
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    gap: 1rem;
  }

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

  .mobile-toggle {
    display: block;
  }

  .venue-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-details {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .master-plan {
    grid-template-columns: 1fr;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .lang-switch {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
