/* ═══════════════════════════════════════════
   EXCLUSIVE PHOTO BOOTHS — SHARED STYLES
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', system-ui, sans-serif;
  background-color: #0C0A09;
  color: #FAFAF9;
  overflow-x: hidden;
}

/* ─── Typography ─── */
h1, h2, h3, h4, .heading { font-family: 'Bodoni Moda', Georgia, serif; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #CA8A04;
}

/* ─── Glass Cards ─── */
.glass {
  background: rgba(28, 25, 23, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(202, 138, 4, 0.18);
  border-radius: 16px;
}

.glass-light {
  background: rgba(44, 41, 39, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(202, 138, 4, 0.12);
  border-radius: 12px;
}

/* ─── Gold Effects ─── */
.gold-text {
  background: linear-gradient(135deg, #CA8A04 0%, #EAB308 40%, #FEF3C7 60%, #CA8A04 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.gold-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #CA8A04, transparent);
  margin: 0 auto;
}

.gold-border-t { border-top: 1px solid rgba(202, 138, 4, 0.2); }
.gold-border-b { border-bottom: 1px solid rgba(202, 138, 4, 0.2); }

/* ─── Buttons ─── */
.btn-gold {
  background: linear-gradient(135deg, #92400E 0%, #CA8A04 40%, #EAB308 100%);
  color: #0C0A09;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-gold:hover::after { transform: translateX(100%); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(202,138,4,0.4); }

.btn-ghost {
  border: 1px solid rgba(202,138,4,0.5);
  color: #EAB308;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all 0.25s ease;
  cursor: pointer;
  background: transparent;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(202,138,4,0.1);
  border-color: #EAB308;
  transform: translateY(-2px);
}

/* ─── Navbar ─── */
#navbar { transition: all 0.3s ease; }
#navbar.scrolled {
  background: rgba(12,10,9,0.92) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(202,138,4,0.2);
}

/* ─── Mobile Menu ─── */
#mobile-menu {
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  max-height: 0;
  overflow: hidden;
}
#mobile-menu.open { max-height: 560px; }

/* ─── Particles ─── */
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202,138,4,0.6), transparent);
  animation: float var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  pointer-events: none;
}

/* ─── Booth Cards ─── */
.booth-card {
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}
.booth-card:hover {
  transform: translateY(-8px);
  border-color: rgba(202,138,4,0.5) !important;
  box-shadow: 0 20px 48px rgba(202,138,4,0.15);
}
.booth-card:hover .booth-icon { color: #EAB308; transform: scale(1.1); }
.booth-icon { transition: all 0.3s ease; color: #CA8A04; }

/* ─── Event Cards ─── */
.event-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s ease;
  border-radius: 16px;
}
.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,9,0.92) 40%, rgba(12,10,9,0.3) 100%);
  z-index: 1;
  transition: all 0.35s ease;
}
.event-card:hover::before { background: linear-gradient(to top, rgba(12,10,9,0.75) 20%, rgba(202,138,4,0.15) 100%); }
.event-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(202,138,4,0.2); }
.event-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card-img { transform: scale(1.08); }

/* ─── Backdrop Gallery ─── */
.backdrop-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 1;
  border: 1px solid rgba(202,138,4,0.1);
}
.backdrop-card:hover { transform: scale(1.03); border-color: rgba(202,138,4,0.4); box-shadow: 0 8px 24px rgba(202,138,4,0.2); }
.backdrop-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.backdrop-card:hover img { transform: scale(1.06); }
.backdrop-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,10,9,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.backdrop-card:hover .overlay { opacity: 1; }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── FAQ Accordion ─── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-icon { transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item { cursor: pointer; }

/* ─── Testimonials ─── */
.testimonial-card { transition: all 0.3s ease; }
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202,138,4,0.4) !important;
}

/* ─── Form Inputs ─── */
.form-input {
  background: rgba(44,41,39,0.6);
  border: 1px solid rgba(202,138,4,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: #FAFAF9;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-input:focus {
  border-color: #CA8A04;
  box-shadow: 0 0 0 3px rgba(202,138,4,0.12);
}
.form-input::placeholder { color: #78716C; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A8A29E;
  margin-bottom: 6px;
}

/* ─── Package Cards ─── */
.package-card {
  transition: all 0.35s ease;
  position: relative;
}
.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(202,138,4,0.5) !important;
  box-shadow: 0 20px 48px rgba(202,138,4,0.12);
}
.package-card.featured {
  border-color: rgba(202,138,4,0.5) !important;
  box-shadow: 0 0 0 1px rgba(202,138,4,0.3), 0 20px 48px rgba(202,138,4,0.15);
}

/* ─── Stars ─── */
.stars { color: #EAB308; }

/* ─── Page Hero (sub-pages) ─── */
.page-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,10,9,0.78);
}
.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(202,138,4,0.1) 0%, transparent 70%);
}

/* ─── Step Process ─── */
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, #92400E, #CA8A04);
  color: #0C0A09;
  flex-shrink: 0;
}

/* ─── Animations ─── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1C1917; }
::-webkit-scrollbar-thumb { background: #CA8A04; border-radius: 3px; }

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
