/* ============================================================
   DANDIYA IN SURAT — Design System
   Textile-Inspired | Bandhani | Mirror-Work | Gujarati Festival
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Yatra+One&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Gujarati Festive Palette */
  --red: #D72638;
  --red-deep: #9B1B30;
  --red-light: #F04A5E;
  --yellow: #F5A623;
  --yellow-light: #FFD166;
  --green: #2E8B57;
  --green-dark: #1A5C38;
  --royal-blue: #1E3A8A;
  --blue-light: #3B5FCC;
  --orange: #FF6B35;
  --orange-light: #FF8C5A;
  --gold: #FFD700;
  --gold-dark: #B8860B;
  --maroon: #5C1124;

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FFF8F0;
  --off-white: #FDF5E6;
  --dark: #1A0A0A;
  --dark-brown: #2D1810;
  --text-dark: #2C1810;
  --text-light: #F5F0EB;
  --text-muted: #8B7355;

  /* Typography */
  --font-heading: 'Yatra One', cursive;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;

  /* Borders & Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
  --shadow-gold: 0 4px 20px rgba(255,215,0,0.3);
  --shadow-red: 0 4px 20px rgba(215,38,56,0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.4s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { font-size: 1rem; line-height: 1.8; color: var(--text-dark); }
.text-muted { color: var(--text-muted); }

/* --- Section Title --- */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  color: var(--red-deep);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--red));
  border-radius: 2px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 16px auto 0;
}

/* --- Decorative Bandhani Dots Background (CSS) --- */
.bandhani-bg {
  position: relative;
  overflow: hidden;
}

.bandhani-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(circle, rgba(255,215,0,0.15) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255,215,0,0.1) 1px, transparent 1px);
  background-size: 24px 24px, 12px 12px;
  background-position: 0 0, 6px 6px;
  pointer-events: none;
  z-index: 0;
}

/* --- Mirror-Work Sparkle --- */
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.mirror-sparkle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: sparkle 2s infinite;
  pointer-events: none;
}

/* --- Pattern Dividers --- */
.pattern-divider {
  width: 100%;
  height: 16px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px, var(--red) 20px,
    var(--yellow) 20px, var(--yellow) 40px,
    var(--green) 40px, var(--green) 60px,
    var(--royal-blue) 60px, var(--royal-blue) 80px,
    var(--orange) 80px, var(--orange) 100px
  );
}

.pattern-divider-thin {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
    var(--red), var(--yellow), var(--green), var(--royal-blue), var(--orange), var(--red));
}

/* --- Geometric Border Frame --- */
.geo-frame {
  border: 3px solid var(--gold);
  position: relative;
  padding: 30px;
}

.geo-frame::before,
.geo-frame::after {
  content: '◆';
  position: absolute;
  color: var(--gold);
  font-size: 14px;
}

.geo-frame::before { top: -10px; left: 20px; }
.geo-frame::after { bottom: -10px; right: 20px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--royal-blue), var(--orange)) 1;
  transition: background var(--transition-med);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-icon {
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transition: width var(--transition-med);
  border-radius: 1px;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  width: 26px; height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-close { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-close { display: block; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(26, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right var(--transition-slow);
    border-left: 3px solid var(--gold-dark);
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    font-size: 1.05rem;
    padding: 8px 0;
  }

  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.6rem;
    color: var(--gold);
    cursor: pointer;
    background: none;
    border: none;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
}

.btn:hover::before {
  width: 300px; height: 300px;
  top: -100px; left: -100px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(215,38,56,0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26,10,10,0.7) 0%,
    rgba(26,10,10,0.4) 40%,
    rgba(26,10,10,0.6) 70%,
    rgba(26,10,10,0.95) 100%
  );
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(255,215,0,0.15);
  border: 1px solid var(--gold);
  border-radius: var(--radius-xl);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Countdown Timer */
.countdown-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--dark-brown), var(--maroon));
  position: relative;
}

.countdown-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(circle, rgba(255,215,0,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.countdown-item {
  text-align: center;
  min-width: 100px;
}

.countdown-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255,215,0,0.3);
}

.countdown-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}

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

.card-body {
  padding: 24px;
}

.card-body h3 {
  color: var(--red-deep);
  margin-bottom: 10px;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Festive Card with top border */
.card-festive {
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--red), var(--gold), var(--green)) 1;
}

/* ============================================================
   PATTERN GRID LAYOUT
   ============================================================ */
.pattern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.pattern-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pattern-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .pattern-grid-2, .pattern-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: linear-gradient(135deg, var(--dark-brown), var(--dark));
  color: var(--text-light);
}

.section-dark .section-title h2 { color: var(--gold); }
.section-dark .section-title p { color: rgba(255,255,255,0.6); }

.section-festive {
  background: linear-gradient(135deg, var(--red-deep), var(--maroon));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-festive .section-title h2 { color: var(--gold); }
.section-festive .section-title p { color: rgba(255,255,255,0.75); }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '🔍';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26,10,10,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item.span-2 {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.span-2 { grid-column: span 1; aspect-ratio: 1; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING / PASS CARDS
   ============================================================ */
.pass-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-med);
  border: 2px solid #eee;
}

.pass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pass-card.featured {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.pass-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pass-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.pass-badge.silver { background: linear-gradient(135deg, #C0C0C0, #E8E8E8); color: #555; }
.pass-badge.gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); }
.pass-badge.diamond { background: linear-gradient(135deg, #B9F2FF, #00CED1); color: #006060; }

.pass-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--red-deep);
  margin: 16px 0;
}

.pass-price span { font-size: 1rem; color: var(--text-muted); }

.pass-features {
  text-align: left;
  margin: 24px 0;
}

.pass-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pass-features li::before {
  content: '✦';
  color: var(--gold);
}

/* ============================================================
   TIMELINE (Events & Schedule)
   ============================================================ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--gold), var(--green), var(--royal-blue));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) { justify-content: flex-start; padding-right: calc(50% + 30px); }
.timeline-item:nth-child(even) { justify-content: flex-end; padding-left: calc(50% + 30px); }

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px; height: 16px;
  background: var(--gold);
  border: 3px solid var(--red);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-content {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: all var(--transition-med);
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.timeline-date {
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.timeline-content h3 {
  color: var(--red-deep);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50px;
  }
  .timeline-dot { left: 20px; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0d5c8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.15);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 60px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg,
    var(--red), var(--yellow), var(--green), var(--royal-blue), var(--orange), var(--red));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  display: block;
  padding: 5px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PASSWORD GATE
   ============================================================ */
.gate-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--maroon);
  background-image: url('../images/bandhani-pattern.png');
  background-size: 300px;
  position: relative;
}

.gate-page::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center,
    rgba(92,17,36,0.6) 0%,
    rgba(92,17,36,0.9) 70%);
}

.gate-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.gate-card h1 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 8px;
}

.gate-card .gate-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.gate-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.gate-input-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.gate-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 2px;
  outline: none;
  transition: all var(--transition-fast);
}

.gate-input::placeholder {
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
}

.gate-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,215,0,0.15);
}

.gate-error {
  color: var(--yellow);
  font-size: 0.9rem;
  min-height: 24px;
  margin-bottom: 16px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gate-error.visible { opacity: 1; }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-10px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

.shake { animation: shake 0.5s ease; }

/* Gate reveal transition */
.gate-reveal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gate-reveal-circle {
  width: 0; height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold), var(--orange), var(--red));
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1), height 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gate-reveal-circle.expand {
  width: 300vmax;
  height: 300vmax;
}

/* ============================================================
   ANIMATIONS & SCROLL REVEAL
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse animation for CTAs */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255,215,0,0); }
}

.pulse { animation: pulse-gold 2s infinite; }

/* ============================================================
   DRESSCODE CARDS
   ============================================================ */
.dresscode-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-med);
}

.dresscode-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dresscode-card-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.dresscode-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.dresscode-card-body {
  padding: 30px;
}

.dresscode-card-body h3 { color: var(--red-deep); margin-bottom: 12px; }

.style-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0e8d8;
}

.style-tip-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   MEDIA / NEWS CARDS
   ============================================================ */
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(215,38,56,0.1);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  width: fit-content;
}

.news-date {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: auto;
  padding-top: 12px;
}

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--white);
}

.contact-info-card h4 { color: var(--red-deep); margin-bottom: 4px; font-size: 1rem; }
.contact-info-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================================
   ABOUT FEATURE LIST
   ============================================================ */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  border-left: 4px solid var(--gold);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-item h4 { color: var(--red-deep); margin-bottom: 4px; font-size: 0.95rem; }
.feature-item p { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================================
   CSS DECORATIVE PLACEHOLDERS (for pages needing images)
   ============================================================ */
.css-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.css-visual-dandiya {
  background: linear-gradient(135deg, var(--red-deep), var(--maroon), var(--red));
  position: relative;
}

.css-visual-dandiya::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(circle, rgba(255,215,0,0.15) 2px, transparent 2px),
    radial-gradient(circle, rgba(255,215,0,0.1) 1.5px, transparent 1.5px);
  background-size: 30px 30px, 15px 15px;
  background-position: 0 0, 7.5px 7.5px;
}

.css-visual-dandiya .visual-emoji {
  font-size: 4rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.css-visual-green {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.css-visual-blue {
  background: linear-gradient(135deg, var(--royal-blue), var(--blue-light));
}

.css-visual-orange {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.pt-nav { padding-top: 80px; }

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .section-title { margin-bottom: 30px; }
  .hero-content { padding: 0 16px; }
  .countdown-wrapper { gap: 16px; }
  .countdown-item { min-width: 70px; }
  .countdown-value { font-size: 2rem; }

  .gate-card { padding: 36px 24px; }
  .gate-card h1 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
