/* ==========================================================================
   HER CONNECT HUB - ILLUMINATING EXCELLENCE 2026 LANDING PAGE STYLES
   Colors extracted from official logo: Pink (#E52B75), Purple (#6B116E), Obsidian (#0F0712), Gold Accent (#D4AF37)
   ========================================================================== */

:root {
  --pink-primary: #E52B75;
  --pink-hover: #FC3C8A;
  --purple-primary: #6B116E;
  --purple-dark: #3A093D;
  --purple-deep: #250528;
  --bg-dark: #0A040C;
  --bg-card: rgba(30, 14, 33, 0.75);
  --bg-card-border: rgba(229, 43, 117, 0.25);
  --gold-accent: #E2C068;
  --gold-gradient: linear-gradient(135deg, #FFE08B 0%, #D4AF37 50%, #997A15 100%);
  --brand-gradient: linear-gradient(135deg, #E52B75 0%, #A21B7D 50%, #6B116E 100%);
  --brand-gradient-glow: linear-gradient(135deg, #FF3D8B 0%, #831587 100%);
  --text-white: #FFFFFF;
  --text-light: #F5EBF3;
  --text-muted: #C4B0C7;
  --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-glow: 0 10px 30px rgba(229, 43, 117, 0.3);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.48;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text-white);
  font-weight: 700;
}

p {
  line-height: 1.48;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Helper Classes */
.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bg-card-border);
}

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #3A093D 0%, #6B116E 50%, #E52B75 100%);
  color: #FFF;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 4, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 43, 117, 0.2);
  padding: 0.85rem 0;
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  padding: 0.25rem 1.25rem 0.25rem 0;
  flex-shrink: 0;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(229, 43, 117, 0.4));
  transition: var(--transition);
}

.brand-logo img:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--pink-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: 1rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #FFF;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--brand-gradient-glow);
  box-shadow: 0 14px 36px rgba(229, 43, 117, 0.45);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #1A071E;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(229, 43, 117, 0.4);
}

.btn-outline:hover {
  background: rgba(229, 43, 117, 0.12);
  border-color: var(--pink-primary);
  color: #FFF;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFF;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
  background: radial-gradient(circle at 70% 20%, rgba(229, 43, 117, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(107, 17, 110, 0.25) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.3rem;
  border-radius: 50px;
  background: rgba(229, 43, 117, 0.12);
  border: 1px solid rgba(229, 43, 117, 0.35);
  color: #FF7EB3;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.hero-subtitle-tag {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.45;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Quick Info Box - Redesigned to 2x2 Spacious Grid to Fix Squeezing & Truncation */
.event-quick-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 Columns = 2x2 Grid for generous width & zero cutoff */
  gap: 1.5rem 1.75rem;
  padding: 1.6rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(20, 8, 23, 0.95);
  border: 1px solid rgba(229, 43, 117, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  width: 100%;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(229, 43, 117, 0.16);
  border: 1px solid rgba(229, 43, 117, 0.4);
  color: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-text {
  flex-grow: 1;
  min-width: 0;
}

.info-text h6 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-accent);
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 3px;
}

.info-text p {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin: 0;
  white-space: normal; /* Allow clean multi-line display if needed, no truncation! */
  word-break: normal;
}

/* Hero Media Frame */
.hero-media-card {
  position: relative;
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(229, 43, 117, 0.4), rgba(107, 17, 110, 0.4), rgba(212, 175, 55, 0.3));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero-media-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #140717;
}

.hero-media-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-badge-floating {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(15, 6, 18, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 43, 117, 0.4);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Section Standard Layouts */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-primary);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Features Grid & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--bg-card-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 43, 117, 0.5);
  box-shadow: 0 16px 36px rgba(107, 17, 110, 0.35);
}

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

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(229, 43, 117, 0.12);
  border: 1px solid rgba(229, 43, 117, 0.3);
  color: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--brand-gradient);
  color: #FFF;
  transform: scale(1.08);
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Quote Callout Banner */
.quote-banner {
  background: linear-gradient(135deg, rgba(58, 9, 61, 0.9) 0%, rgba(107, 17, 110, 0.8) 50%, rgba(229, 43, 117, 0.7) 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  margin: 3rem 0 1rem;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.3;
  color: #FFF;
  max-width: 900px;
  margin: 0 auto 1rem;
}

.quote-author {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-accent);
  font-weight: 700;
}

/* Who We Celebrate Checklist Cards */
.celebrate-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: rgba(26, 11, 29, 0.7);
  border: 1px solid rgba(229, 43, 117, 0.2);
  transition: var(--transition);
}

.celebrate-card:hover {
  background: rgba(45, 16, 51, 0.85);
  border-color: var(--pink-primary);
  transform: translateX(4px);
}

.celebrate-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.celebrate-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.35;
}

/* Highlights & Video Showcase */
.video-showcase {
  background: linear-gradient(180deg, rgba(20, 7, 22, 0.9) 0%, rgba(35, 12, 39, 0.95) 100%);
  border-radius: 28px;
  border: 1px solid rgba(229, 43, 117, 0.3);
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.video-placeholder-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(229, 43, 117, 0.3) 0%, rgba(37, 5, 40, 0.9) 80%);
  opacity: 0.8;
}

.play-btn {
  position: relative;
  z-index: 5;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 35px rgba(229, 43, 117, 0.8);
  transition: var(--transition);
  padding-left: 4px;
}

.play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 0 50px rgba(229, 43, 117, 1);
}

/* Event Details & Dress Code Grid */
.event-details-box {
  background: linear-gradient(135deg, rgba(30, 10, 33, 0.95) 0%, rgba(15, 5, 17, 0.95) 100%);
  border-radius: 28px;
  padding: 3rem;
  border: 2px solid rgba(229, 43, 117, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.dress-code-box {
  background: rgba(37, 12, 39, 0.95);
  border: 2px solid var(--gold-accent);
  border-radius: 22px;
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.dress-code-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.6rem;
  border-radius: 50px;
  background: var(--gold-gradient);
  color: #1A071E;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.dress-code-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin: 1.5rem 0;
}

.dress-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  background: rgba(229, 43, 117, 0.15);
  border: 1px solid rgba(229, 43, 117, 0.35);
  color: var(--text-white);
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
}

.dress-pill i {
  color: var(--gold-accent);
  font-size: 0.95rem;
}

.dress-pill:hover {
  background: rgba(229, 43, 117, 0.3);
  border-color: var(--pink-primary);
  transform: translateY(-2px);
}

/* Charity Spotlight Section */
.charity-banner {
  background: radial-gradient(circle at 10% 50%, rgba(229, 43, 117, 0.25) 0%, transparent 60%),
              linear-gradient(135deg, rgba(25, 8, 28, 0.95) 0%, rgba(45, 12, 51, 0.95) 100%);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  border: 1px solid rgba(229, 43, 117, 0.35);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.impact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  gap: 1rem;
}

.faq-header:hover {
  color: var(--pink-primary);
}

.faq-icon {
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--pink-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem 1.25rem;
  display: none;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.faq-item.active .faq-body {
  display: block;
}

/* Footer Styles */
.footer {
  background: #060207;
  border-top: 1px solid rgba(229, 43, 117, 0.2);
  padding: 4rem 0 2rem;
}

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

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--pink-primary);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(229, 43, 117, 0.12);
  border: 1px solid rgba(229, 43, 117, 0.3);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--brand-gradient);
  color: #FFF;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #140717;
  border: 1px solid rgba(229, 43, 117, 0.4);
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFF;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .nav-links {
    gap: 1.25rem;
  }
  .nav-link {
    font-size: 0.88rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid, .charity-banner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #140717;
    flex-direction: column;
    padding: 1.75rem;
    border-bottom: 1px solid rgba(229, 43, 117, 0.3);
    gap: 1.25rem;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-cta {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .event-quick-info {
    grid-template-columns: 1fr;
  }
  .grid-3, .grid-2, .grid-4 {
    grid-template-columns: 1fr;
  }
  .quote-text {
    font-size: 1.25rem;
  }
  .dress-code-pills {
    flex-direction: column;
    align-items: stretch;
  }
  .dress-pill {
    justify-content: center;
  }
}
