/* ==========================================================================
   Boba Bash Greater Noida - Design System & Stylesheet
   Based strictly on the official Boba Bash Branding Guide
   (https://boba-bash-brand.vercel.app)
   ========================================================================== */

:root {
  /* Official Brand Colors */
  --bubble: #a9d8ee;
  --bubble-ink: #274156;
  --surface: #fbf6e8;
  --surface-alt: #f0e9d8;
  --ink: #3d2b18;
  --ink-muted: #6b5842;
  --ink-soft: #9a8064;
  --line: #3d2b18;
  --goldenrod: #f2c14e;
  --apply-gradient: linear-gradient(180deg, #c0dfc6 0%, #85c5da 44%, #6fbbe2 81%, #b6dbc9 100%);
  
  /* Fonts */
  --font-display: 'Baloo 2', cursive, sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows */
  --shadow-card: 4px 4px 0 var(--line);
  --shadow-card-hover: 6px 6px 0 var(--line);
  --shadow-control: 0 3px 0 0 var(--line);
  --shadow-control-pressed: 0 1px 0 0 var(--line);
  --shadow-bubble: 0 2px 0 0 var(--bubble-ink);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Classes matching Guide */
.font-display {
  font-family: var(--font-display);
}

.font-bold {
  font-weight: 700;
}

.text-title {
  font-size: 2.2rem;
  line-height: 1.2;
}

.text-heading {
  font-size: 1.45rem;
  line-height: 1.25;
}

.text-subheading {
  font-size: 1.15rem;
  line-height: 1.45;
}

.text-body {
  font-size: 0.95rem;
  line-height: 1.6;
}

.text-caption {
  font-size: 0.82rem;
  line-height: 1.4;
}

.text-ink { color: var(--ink); }
.text-ink-muted { color: var(--ink-muted); }
.text-ink-soft { color: var(--ink-soft); }
.text-bubble-ink { color: var(--bubble-ink); }

.bg-surface { background-color: var(--surface); }
.bg-surface-alt { background-color: var(--surface-alt); }
.bg-bubble { background-color: var(--bubble); }
.bg-goldenrod { background-color: var(--goldenrod); }

.border-line { border-color: var(--line); }
.border-bubble-ink { border-color: var(--bubble-ink); }

.border { border: 1px solid var(--line); }
.border-2 { border: 2px solid var(--line); }
.border-t-2 { border-top: 2px solid var(--line); }
.border-b-2 { border-bottom: 2px solid var(--line); }
.border-t { border-top: 1px solid var(--line); }
.border-r-2 { border-right: 2px solid var(--bubble-ink); }
.border-b-2 { border-bottom: 2px solid var(--bubble-ink); }

.shadow-card { box-shadow: var(--shadow-card); }
.shadow-control { box-shadow: var(--shadow-control); }

/* Layout Helpers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.relative { position: relative; }
.absolute { position: absolute; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }

.gap-1\.5 { gap: 6px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 18px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 20px; }
.p-4 { padding: 16px; }
.p-5 { padding: 24px; }

.rounded-full { border-radius: 9999px; }

/* Accessible Focus States */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--bubble);
  outline-offset: 2px;
}

/* Floating Ambient Boba Canvas */
.floating-boba-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-pearl {
  position: absolute;
  bottom: -40px;
  background-color: var(--ink);
  border-radius: 50%;
  opacity: 0.1;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(0.8) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.1;
  }
  85% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-110vh) scale(1.1) rotate(360deg);
    opacity: 0;
  }
}

/* Top Announcement Banner */
.top-banner {
  background-color: var(--goldenrod);
  border-bottom: 2px solid var(--line);
  padding: 8px 0;
  position: relative;
  z-index: 50;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.88rem;
  flex-wrap: wrap;
  text-align: center;
}

.banner-badge {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--line);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 2px 10px;
  border-radius: 999px;
}

.banner-text {
  color: var(--ink);
  font-weight: 500;
}

.banner-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  font-family: var(--font-display);
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  background: var(--surface);
  border-bottom: 2px solid var(--line);
  z-index: 100;
  padding: 12px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  max-height: 52px;
  width: auto;
}

.city-pill {
  background: var(--bubble);
  border: 1.5px solid var(--bubble-ink);
  color: var(--bubble-ink);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
}

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

.nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--bubble-ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--ink);
  transition: transform 0.2s ease;
}

/* Core Buttons from Brand Guide */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border-radius: 999px;
  border: 2px solid var(--line);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  line-height: 1;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-nav {
  padding: 8px 18px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-control);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.15rem;
  box-shadow: var(--shadow-control);
}

.btn-gradient {
  background: var(--apply-gradient);
  color: var(--ink);
}

.btn-surface {
  background: var(--surface-alt);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 0 var(--line);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: var(--shadow-control-pressed);
}

/* Speech Bubble Component from Brand Guide */
.speech-bubble {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.bubble-pill {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bubble);
  border: 2px solid var(--bubble-ink);
  border-radius: 9999px;
  padding: 8px 24px;
}

.bubble-pill span,
.bubble-pill h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bubble-ink);
  margin: 0;
  line-height: 1.2;
}

.bubble_tail {
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: -5px;
  left: 32px;
  transform: rotate(45deg);
  background-color: var(--bubble);
  border-right: 2px solid var(--bubble-ink);
  border-bottom: 2px solid var(--bubble-ink);
  border-bottom-right-radius: 2px;
  z-index: 1;
}

.hero-badge-text {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 70px;
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 800;
}

.highlight-boba {
  color: var(--bubble-ink);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-bottom: 28px;
  max-width: 540px;
}

/* Event Metadata Cards with SVG Icons */
.event-meta-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.meta-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-alt);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.meta-icon-box {
  width: 38px;
  height: 38px;
  background: var(--bubble);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.meta-svg {
  width: 20px;
  height: 20px;
  stroke: var(--bubble-ink);
  display: block;
}

.meta-info {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}

.meta-value {
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Roomy Tactile Pill Badges */
.pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface-alt);
  border: 2px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 999px;
  line-height: 1.2;
  box-shadow: 2px 2px 0 var(--line);
  transition: transform 0.15s ease;
}

.pill-badge:hover {
  transform: translateY(-1px);
}

.pill-badge-lg {
  font-size: 1.05rem;
  padding: 12px 26px;
  box-shadow: 3px 3px 0 var(--line);
}

/* Hero Illustration Card */
.hero-illustration-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
}

.mascot-badge-tag {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  border-bottom: 2px solid var(--line);
}

.wordmark-hero {
  max-height: 58px;
  width: auto;
}

.cup-display-wrapper {
  padding: 40px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}

.boba-cup-hero {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 12px 16px rgba(61, 43, 24, 0.15));
  animation: gentleBob 3s ease-in-out infinite alternate;
}

@keyframes gentleBob {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(1.5deg); }
}

.floating-sticker {
  position: absolute;
  background: var(--surface);
  border: 1.5px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.sticker-1 {
  top: 15%;
  left: 10px;
  animation-delay: 0s;
}

.sticker-2 {
  top: 50%;
  right: 10px;
  animation-delay: 1.2s;
}

.sticker-3 {
  bottom: 20%;
  left: 15px;
  animation-delay: 2.4s;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-6px); }
}

.card-footer-note {
  padding: 16px 20px;
}

.status-pill {
  background: var(--goldenrod);
  border: 1.5px solid var(--line);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--ink);
}

/* Sections */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.section-header {
  margin-bottom: 48px;
}

/* About / Feature Cards */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-hover {
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-svg {
  width: 26px;
  height: 26px;
  stroke: var(--ink);
  display: block;
}

.feature-cup-img {
  max-height: 38px;
  width: auto;
  display: block;
}

/* Schedule / Timeline */
.timeline-wrapper {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: flex-start;
}

.time-pill {
  background: var(--goldenrod);
  border: 2px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  text-align: center;
  box-shadow: 2px 2px 0 var(--line);
}

.timeline-content {
  border-radius: 12px;
  padding: 18px 22px;
}

.timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.tag-pill {
  background: var(--surface-alt);
  border: 1.5px solid var(--line);
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  color: var(--ink);
}

/* Sponsors Section Styles */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sponsor-card {
  border-radius: 16px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  text-align: center;
  align-items: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.sponsor-logo-wrap {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--surface-alt);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.sponsor-logo-img {
  max-height: 58px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sponsor-logo-hcb {
  height: 66px;
  width: 66px;
  max-height: 66px;
  max-width: 66px;
  object-fit: contain;
}

.contact-email-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-alt);
  border: 2px solid var(--line);
  padding: 8px 20px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  box-shadow: var(--shadow-control);
  user-select: all;
}

.sponsor-name {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.sponsor-desc {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.sponsor-footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1.5px solid var(--line);
}

.sponsor-badge {
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
  color: var(--ink);
}

.sponsor-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--bubble-ink);
  text-decoration: none;
}

.sponsor-link:hover {
  text-decoration: underline;
}

.sponsor-callout-card {
  border-radius: 16px;
  padding: 24px 30px;
  margin-top: 36px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* RSVP Section */
.rsvp-card-wrapper {
  border-radius: 20px;
  padding: 48px;
  max-width: 820px;
  margin: 0 auto;
}

/* FAQ Accordions */
.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  user-select: none;
  background-color: var(--surface);
}

.faq-question:hover {
  background-color: var(--surface-alt);
}

.faq-chevron {
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

details[open] .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 18px 22px;
  border-top: 1.5px solid var(--line);
  background-color: var(--surface);
  font-size: 0.95rem;
}

/* Venue Section */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.venue-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.venue-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.point-icon {
  width: 40px;
  height: 40px;
  background: var(--goldenrod);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.point-svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
  display: block;
}

.venue-box {
  border-radius: 16px;
}

.venue-map-placeholder {
  border-radius: 12px;
  background-color: var(--surface-alt);
  padding: 40px 20px;
  text-align: center;
}

.map-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 50%;
  animation: gentleBob 3s ease-in-out infinite alternate;
}

/* CTA Section */
.section-cta {
  padding: 60px 0;
}

.footer-mascot {
  max-width: 175px;
  height: auto;
}

/* Redesigned Clean Site Footer */
.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--line);
  padding: 56px 0 28px;
  position: relative;
  z-index: 10;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  max-height: 54px;
  width: auto;
}

.footer-desc {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 360px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink);
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  color: var(--ink-muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.15s ease, transform 0.15s ease;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: var(--bubble-ink);
  transform: translateX(3px);
}

.footer-info-card {
  background: var(--surface-alt);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-info-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-info-body {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.45;
  font-weight: 500;
}

.footer-bottom-bar {
  border-top: 2px solid var(--line);
  padding-top: 20px;
  text-align: center;
}

.footer-copyright {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
}

/* Mobile & Tablet Responsive Breakpoints */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-visual-col {
    order: -1;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .sponsors-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

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

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .event-meta-cards {
    grid-template-columns: 1fr;
  }

  .rsvp-card-wrapper {
    padding: 32px 18px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .time-pill {
    width: fit-content;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface);
    border-bottom: 2px solid var(--line);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 8px 16px rgba(61, 43, 24, 0.1);
  }

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

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 12px 22px;
    width: 100%;
  }

  .pill-badge-lg {
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  .sticker-1 { left: 4px; top: 10%; }
  .sticker-2 { right: 4px; top: 48%; }
  .sticker-3 { left: 8px; bottom: 12%; }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
