@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary-green: #7cb342;
  --primary-blue: #1565c0;
  --primary-blue-light: #1976d2;
  --bg-dark: #1565c0;
  --bg-darker: #0d4a8a;
  --card-bg: #1976d2;
  --text-white: #ffffff;
  --text-gray: #b3d4fc;
  --footer-bg: #0a3d6e;
  --footer-text: #c5e0e6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  background-attachment: fixed;
  color: var(--text-white);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: rgba(13, 74, 138, 0.95);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--primary-blue-light);
}

.nav-logo {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-green);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 288px;
  background: var(--bg-darker);
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-drawer.active {
  transform: translateX(0);
}

/* Hide mobile drawer elements on desktop */
@media (min-width: 768px) {
  .mobile-overlay,
  .mobile-drawer {
    display: none !important;
  }
}

.drawer-header {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
  border-bottom: 1px solid var(--primary-blue-light);
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
}

.drawer-links a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.2s;
}

.drawer-links a:hover,
.drawer-links a.active {
  color: var(--primary-green);
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* LOGO BANNER (Homepage only) */
.logo-banner {
  padding: 32px 0;
  display: flex;
  justify-content: center;
  background-color: var(--bg-darker);
}

.logo-banner img {
  width: 256px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-banner img {
    width: 384px;
  }
}

/* HERO SECTION */
.hero {
  padding: 64px 5%;
  text-align: center;
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--bg-darker) 100%);
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero h1 .green {
  color: var(--primary-green);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero h1 span.block {
    display: inline;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 672px;
  margin: 0 auto 24px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .hero-meta {
    flex-direction: row;
  }
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-meta-item svg {
  color: var(--primary-green);
}

/* CTA BUTTON */
.cta-button {
  background-color: var(--primary-green);
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-button-white {
  background: white;
  color: var(--primary-green);
  padding: 16px 40px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s;
}

.cta-button-white:hover {
  transform: scale(1.05);
}

.cta-button-blue {
  background-color: var(--bg-darker);
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.2s;
}

.cta-button-blue:hover {
  background-color: var(--primary-blue);
}

/* SECTIONS */
.section-padding {
  padding: 80px 5%;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
}

.green-section {
  background-color: var(--primary-green);
  color: white;
}

.teal-section {
  background-color: var(--primary-blue-light);
  color: white;
}

.blue-section {
  background-color: var(--bg-darker);
}

/* FEATURED SPEAKERS (Homepage) */
.speaker-grid-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .speaker-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .speaker-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.featured-speaker {
  text-align: center;
}

.featured-speaker-img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 4px solid var(--primary-green);
  object-fit: cover;
  object-position: top;
  margin: 0 auto 16px;
  display: block;
}

@media (min-width: 768px) {
  .featured-speaker-img {
    width: 160px;
    height: 160px;
  }
}

.featured-speaker h3 {
  font-weight: 700;
  font-size: 1.125rem;
}

.featured-speaker p {
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* SPONSORSHIP TIERS */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tier-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tier-card {
  background: var(--bg-darker);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--primary-blue-light);
  transition: transform 0.2s;
}

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

.tier-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-card .price {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--primary-green);
  margin-bottom: 24px;
}

.tier-card ul {
  color: var(--text-gray);
  font-size: 0.875rem;
  list-style: none;
}

.tier-card ul li {
  margin-bottom: 12px;
}

.tier-card ul li::before {
  content: '✓ ';
  color: var(--primary-green);
}

/* PLATINUM SPONSOR BOX */
.platinum-sponsor {
  max-width: 672px;
  margin: 64px auto 0;
}

.platinum-box {
  background: var(--bg-darker);
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #ffd700;
  text-align: center;
}

.platinum-label {
  color: #ffd700;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.platinum-box h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .platinum-box h3 {
    font-size: 1.875rem;
  }
}

.platinum-logo {
  width: 128px;
  height: 128px;
  background: white;
  border-radius: 50%;
  padding: 8px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .platinum-logo {
    width: 160px;
    height: 160px;
  }
}

.platinum-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--primary-blue);
  border-radius: 8px;
  width: 100%;
  max-width: 512px;
  max-height: 85vh;
  overflow: hidden;
  border: 2px solid var(--primary-green);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header {
  position: sticky;
  top: 0;
  background: var(--bg-darker);
  padding: 16px 24px;
  border-bottom: 1px solid var(--primary-blue-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-green);
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--primary-green);
}

.modal-content {
  overflow-y: auto;
  max-height: calc(85vh - 70px);
  padding: 24px;
}

.modal-image {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid var(--primary-green);
  object-fit: cover;
  object-position: top;
  margin: 0 auto 24px;
  display: block;
}

.modal-section-title {
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.modal-bio {
  color: var(--text-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-bio p {
  margin-bottom: 12px;
}

.modal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.modal-link:hover {
  color: var(--primary-green);
}

.modal-link svg {
  flex-shrink: 0;
}

/* VIDEO MODAL (Verity Metals) */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 24px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.modal-description {
  color: var(--text-white);
}

.modal-description p {
  margin-bottom: 16px;
}

.modal-description .highlight {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-green);
}

.modal-description strong {
  color: var(--text-white);
}

.modal-description .text-gray {
  color: var(--text-gray);
}

.modal-description ul {
  list-style: none;
  margin-top: 8px;
}

.modal-description ul li {
  margin-bottom: 8px;
}

/* SPEAKER CARDS (Upcoming/Past) */
.speaker-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .speaker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .speaker-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.speaker-card {
  background: var(--primary-blue);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--primary-blue-light);
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.speaker-card:hover {
  border-color: var(--primary-green);
}

.speaker-card-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary-green);
  object-fit: cover;
  object-position: top;
  margin: 0 auto 16px;
  display: block;
}

.speaker-card h3 {
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 8px;
  color: var(--primary-green);
}

.speaker-card .bio {
  color: var(--text-gray);
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 16px;
  flex-grow: 1;
}

.read-bio-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary-green);
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  margin-top: auto;
}

.read-bio-btn:hover {
  text-decoration: underline;
}

/* PAST SPEAKERS GRID */
.past-speaker-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .past-speaker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .past-speaker-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.past-speaker-card {
  background: var(--primary-blue);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--primary-blue-light);
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.past-speaker-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 4px 20px rgba(124, 179, 66, 0.1);
}

.past-speaker-card-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--primary-green);
  object-fit: cover;
  object-position: top;
  margin: 0 auto 12px;
  display: block;
}

.past-speaker-card h3 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--primary-green);
}

.past-speaker-card .bio {
  color: var(--text-gray);
  font-size: 0.75rem;
  text-align: center;
  margin-bottom: 12px;
  flex-grow: 1;
}

.past-speaker-card .read-bio-btn {
  font-size: 0.75rem;
}

/* MC SECTION */
.mc-section {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.mc-section h2 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .mc-section h2 {
    font-size: 1.875rem;
  }
}

.mc-section h2 .green {
  color: var(--primary-green);
}

.mc-section h3 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .mc-section h3 {
    font-size: 2.25rem;
  }
}

.mc-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.mc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mc-card-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid var(--primary-green);
  object-fit: cover;
  object-position: top;
  margin: 0 auto 16px;
  display: block;
}

@media (min-width: 768px) {
  .mc-card-img {
    width: 192px;
    height: 192px;
  }
}

.mc-card p {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.mc-tagline {
  color: var(--text-gray);
  margin-top: 32px;
  font-size: 1.125rem;
}

.mc-tagline .white {
  color: var(--text-white);
  font-weight: 700;
}

.patp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 16px;
}

.patp-btn:hover {
  text-decoration: underline;
}

/* EVENT INFO GRID */
.event-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .event-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.event-info-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
}

.event-info-card .icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-info-card h3 {
  font-weight: 700;
  font-size: 1.125rem;
}

.event-info-card p {
  margin-top: 4px;
}

.event-info-card .small {
  font-size: 0.875rem;
}

/* HOSTS GRID */
.hosts-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.host-card {
  text-align: center;
}

.host-card-img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 4px solid var(--primary-green);
  object-fit: cover;
  margin: 0 auto 8px;
  display: block;
}

.host-card .name {
  font-weight: 700;
}

.host-card .role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* WELCOME TEXT */
.welcome-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 768px;
  margin: 0 auto;
  text-align: left;
}

.welcome-text p {
  margin-bottom: 16px;
}

/* WATCH GRID */
.watch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .watch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.watch-card {
  background: var(--primary-blue);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--primary-blue-light);
  text-align: center;
  text-decoration: none;
  color: var(--text-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}

.watch-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 4px 20px rgba(124, 179, 66, 0.1);
}

.watch-card .play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.2s;
}

.watch-card:hover .play-btn {
  transform: scale(1.1);
}

.watch-card h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.watch-card .date {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.watch-card .featuring {
  font-size: 0.875rem;
  margin-top: 8px;
}

/* SCHEDULE */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.schedule-day {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
}

.schedule-day h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.schedule-session {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.schedule-session .title {
  font-weight: 600;
}

.schedule-session .time {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ABOUT PAGE */
.founder-img {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  border: 4px solid var(--primary-green);
  object-fit: cover;
  margin: 0 auto 24px;
  display: block;
}

.mission-card {
  background: var(--primary-blue);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--primary-blue-light);
  text-align: center;
}

.mission-card svg {
  color: var(--primary-green);
  margin: 0 auto 24px;
  display: block;
}

.mission-card p {
  color: var(--text-gray);
  font-size: 1.125rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.value-card svg {
  margin: 0 auto 16px;
  display: block;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.what-we-do-card {
  background: var(--primary-blue);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--primary-blue-light);
  transition: border-color 0.2s;
  margin-bottom: 24px;
}

.what-we-do-card:hover {
  border-color: var(--primary-green);
}

.what-we-do-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.what-we-do-card p {
  color: var(--text-gray);
}

/* CONTACT PAGE */
.contact-cards {
  display: flex;
  justify-content: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  max-width: 448px;
  width: 100%;
}

.contact-card .icon-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-card svg {
  margin-top: 4px;
}

.contact-card h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

.contact-card a:hover {
  text-decoration: underline;
}

.venue-card {
  background: var(--primary-blue);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--primary-blue-light);
  max-width: 896px;
  margin: 0 auto;
}

.venue-card .venue-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.venue-card .venue-row:last-child {
  margin-bottom: 0;
}

.venue-card svg {
  color: var(--primary-green);
  flex-shrink: 0;
  margin-top: 4px;
}

.venue-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.venue-card p {
  color: var(--text-gray);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .inquiry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.inquiry-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.inquiry-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.inquiry-card p {
  margin-bottom: 16px;
}

.inquiry-card a {
  color: var(--text-white);
  font-weight: 600;
  text-decoration: none;
}

.inquiry-card a:hover {
  text-decoration: underline;
}

/* FOOTER */
.footer {
  padding: 48px 5%;
  background: var(--footer-bg);
  border-top: 1px solid var(--primary-blue-light);
  text-align: center;
}

.footer h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 16px;
}

.footer .tagline {
  color: var(--footer-text);
  margin-bottom: 24px;
}

.footer .email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--footer-text);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.footer .email-link:hover {
  color: var(--primary-green);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer .copyright {
  font-size: 0.75rem;
  color: var(--primary-blue-light);
}

/* UTILITY */
.text-center { text-align: center; }
.max-w-4xl { max-width: 896px; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 768px; margin-left: auto; margin-right: auto; }

/* Past Events hero section */
.past-event-info {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.past-event-info h2 {
  font-size: 1.875rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .past-event-info h2 {
    font-size: 2.25rem;
  }
}

.past-event-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

@media (min-width: 640px) {
  .past-event-meta {
    flex-direction: row;
  }
}

.past-event-meta .meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.past-event-meta .meta-item svg {
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .past-event-meta .meta-item svg.hide-mobile {
    display: none;
  }
}
