/* Core Design System & CSS Custom Properties */
:root {
  /* Brand Colors */
  --primary-color: hsl(142, 60%, 25%); /* Forest Green */
  --primary-hover: hsl(142, 60%, 20%);
  --secondary-color: hsl(45, 93%, 47%); /* Golden Yellow */
  --secondary-hover: hsl(45, 93%, 42%);
  
  /* Neutrals */
  --bg-main: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #1e293b;
  --text-main: #334155;
  --text-muted: #64748b;
  --text-light: #ffffff;
  
  /* Typography */
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', 'Roboto', sans-serif;
  
  /* Layout */
  --container-max-width: 1200px;
  --section-padding: 6rem 0;
  
  /* Components */
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-hover);
}

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

/* Typography Utilities */
.text-center { text-align: center; }
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255,255,255,0.2);
  color: var(--text-light);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.section { padding: var(--section-padding); }
.section-alt { background-color: var(--bg-alt); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--border-radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  gap: 0.5rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(22, 101, 52, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(234, 179, 8, 0.3);
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, rgba(22, 101, 52, 0.9), rgba(22, 101, 52, 0.7)), url('../assets/hero-bg.png') center/cover;
  background-color: var(--primary-color); /* Fallback */
  color: var(--text-light);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--text-light);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  min-width: 120px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.countdown .time {
  display: block;
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.countdown .label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.main-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h3, .footer-col h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Responsive constraints */
.mobile-toggle {
    display: none;
    background: transparent; border: none;
    color: white; font-size: 1.8rem; cursor: pointer;
    z-index: 1001; margin-left: auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 950px) {
  .mobile-toggle { display: block; }
  
  .top-bar { display: none !important; }
  
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    height: 70px;
    padding: 0 1rem;
  }
  
  .logo-wrapper { flex-shrink: 0; }
  .logo .main-title { font-size: 1.1rem !important; }
  .logo .sub-brand { font-size: 0.65rem !important; }
  
  .nav-wrapper {
    display: none;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-top: none;
  }
  
  /* Use !important to override display inline style toggles securely if JS fails */
  .nav-wrapper.active { display: flex !important; }
  
  .main-nav ul {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  
  .main-nav a { font-size: 1.15rem !important; font-weight: 600; }
  
  .header-cta { width: 100%; text-align: center; }
  .header-cta .btn { width: 100%; display: block; }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .countdown {
    gap: 1rem;
  }
  
  .countdown-item {
    min-width: 100px;
    padding: 1rem;
  }
  
  .countdown .time {
    font-size: 2.5rem;
  }
}

/* --- New Section Styles --- */

.bg-white { background-color: #ffffff; }
.section-narrow { max-width: 800px; margin: 0 auto; }
.mt-1 { margin-top: 1rem; }

.section-eyebrow {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.section-header { margin-bottom: 3rem; }

.divider {
  height: 4px;
  width: 60px;
  background-color: var(--secondary-color);
  margin-top: 1rem;
}
.divider.center { margin: 1rem auto 0; }

.lead-text {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Grid Layouts */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.align-center { align-items: center; }

@media(max-width: 768px) {
  .grid-2-col { grid-template-columns: 1fr; gap: 2rem; }
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin-top: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-size: 1.1rem;
}

.icon-check {
  width: 28px;
  height: 28px;
  color: var(--primary-color);
  flex-shrink: 0;
}

/* Images & Shadows */
.image-wrapper { overflow: hidden; background: #000; }
.shadow-lg { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.radius-lg { border-radius: var(--border-radius-lg); }
.image-wrapper img { transition: transform 0.8s ease; opacity: 0.9; }
.image-wrapper:hover img { transform: scale(1.05); opacity: 1; }

/* Value Cards */
.value-card {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid #f1f5f9;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.1);
  border-color: #e2e8f0;
}

.value-card .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--bg-alt);
  color: var(--primary-color);
  border-radius: 50%;
  margin-bottom: 2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.value-card:hover .icon-wrapper {
  background-color: var(--primary-color);
  color: #fff;
}

.value-card h3 { margin-bottom: 1rem; font-size: 1.35rem; }

/* Speaker Grid */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.speaker-card {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid #f1f5f9;
}

.speaker-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

.speaker-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.expand-icon {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 300;
  opacity: 0.95;
  transition: transform 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.speaker-card.expanded .expand-icon {
  transform: rotate(45deg);
  background: var(--secondary-color);
  color: #000;
}

.speaker-info {
  padding: 2rem;
}

.speaker-info h3 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
  font-size: 1.4rem;
}

.speaker-info .title {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.speaker-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, margin-top 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.speaker-card.expanded .speaker-bio {
  max-height: 250px;
  margin-top: 1.25rem;
  opacity: 1;
}

.speaker-bio p {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
}


/* Update Hero */
.hero-impact {
    position: relative;
    padding: 8rem 0 6rem;
    background: url('../assets/hero-bg.png') center/cover;
    color: white;
    text-align: center;
}
.hero-overlay {
    position: absolute; top:0; left:0; right:0; bottom:0;
    background: linear-gradient(135deg, rgba(15,23,42,0.85), rgba(22,101,52,0.85));
}
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 2;
}
.hero-theme {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.countdown-modern {
    display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; position: relative; z-index: 2; flex-wrap: wrap;
}
.cd-box {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    min-width: 100px;
}
.cd-box .time { font-size: 2.5rem; font-family: var(--font-heading); font-weight: 700; color: white; display: block; line-height: 1.1; }
.cd-box .label { font-size: 0.8rem; color: var(--secondary-color); text-transform: uppercase; font-weight: 600; letter-spacing: 1px;}

.hero-actions { position: relative; z-index: 2; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* About / Concept */
.objectives-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.obj-card { padding: 1.5rem; background: white; border: 1px solid #e2e8f0; border-radius: var(--border-radius-md); box-shadow: var(--box-shadow); transition: transform 0.3s; }
.obj-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.obj-icon { font-size: 2.5rem; margin-bottom: 1rem; }
@media(max-width: 768px) { .objectives-grid { grid-template-columns: 1fr; } }

/* Thematic Pillars */
.tracks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.track-card { background: white; padding: 2.5rem 1.5rem; border-radius: var(--border-radius-md); box-shadow: var(--box-shadow); border-top: 4px solid var(--primary-color); }
.track-header { font-weight: 700; color: var(--text-muted); text-transform: uppercase; font-size: 0.85rem; margin-bottom: 0.5rem; }
.track-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.track-highlight { background: var(--primary-color); color: white; border-top-color: var(--secondary-color); }

/* Split Screen Speaker Gallery */
.speaker-spotlight-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    text-align: left;
}
@media(max-width: 900px) { .speaker-spotlight-wrapper { grid-template-columns: 1fr; } }

.speaker-list { display: flex; flex-direction: column; padding: 2rem; gap: 0.5rem; }
.speaker-btn {
    background: transparent; border: 1px solid transparent; text-align: left; padding: 1.25rem;
    border-radius: var(--border-radius-md); color: white; cursor: pointer; transition: all 0.3s;
}
.speaker-btn:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.speaker-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-hover);
    box-shadow: 0 4px 15px rgba(22,101,52,0.4);
}
.sb-name { font-size: 1.1rem; font-weight: 700; font-family: var(--font-heading); margin-bottom: 0.25rem; }
.sb-role { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.speaker-btn.active .sb-role { color: rgba(255,255,255,0.9); }

.speaker-display {
    position: relative;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 450px;
    background: #000;
}
.sd-image { position: absolute; top:0; left:0; right:0; bottom:0; z-index: 1; }
.sd-image img { width: 100%; height: 100%; object-fit: cover; }
.sd-image::after {
    content: ''; position: absolute; top:0; left:0; right:0; bottom:0;
    background: linear-gradient(transparent 30%, rgba(15,23,42,0.98) 100%);
}
.sd-content { position: relative; z-index: 2; padding: 3rem 2.5rem; }
.sd-content h3 { font-size: 2.2rem; margin-bottom: 0.5rem; padding-top: 1rem; }

/* Resources & Network */
.resource-card-mini { background: white; border: 1px solid #e2e8f0; border-radius: var(--border-radius-md); padding: 2rem; text-align: center; transition: all 0.3s; }
.resource-card-mini:hover { box-shadow: var(--box-shadow); border-color: var(--primary-color); transform: translateY(-5px); }
.rc-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.resource-card-mini a { font-weight: 600; display: inline-block; margin-top: 1rem; color: var(--primary-color); }

.sponsor-tiers .tier-name { color: var(--text-muted); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 1rem; }
.tier-logos { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.logo-box { padding: 1.25rem 2.5rem; background: var(--bg-alt); border: 1px solid #e2e8f0; border-radius: var(--border-radius-md); font-weight: 600; color: var(--text-main); font-size: 1.2rem; }
.tier-logos.small .logo-box { padding: 0.75rem 1.5rem; font-size: 1rem; }

.network-marquee { margin-top: 4rem; padding: 2rem 0; background: var(--primary-color); color: white; overflow: hidden; white-space: nowrap; border-radius: var(--border-radius-md); position: relative; }
.marquee-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; opacity: 0.9; }
.marquee-track span { margin: 0 1.5rem; font-weight: 700; font-size: 1.2rem; font-family: var(--font-heading); }


/* Devolution Style New Sections */

/* Massive Title Section (CTA Image Style) */
.massive-title-section {
    padding: 2rem 0 4rem;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 3rem;
}
.massive-title {
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 800;
    line-height: 0.9;
    color: #000;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}
.massive-title span {
    color: #a51c30; /* A crimson/red color similar to the 2025 text in the image */
}

/* serif headings for goal/objective */
.serif-heading {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
    letter-spacing: 1px;
}

/* Welcome Grid (Image 1 Style) */
.welcome-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}
@media(max-width: 900px) {
    .welcome-grid { grid-template-columns: 1fr; }
}
.welcome-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.welcome-text p {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Blockquote Highlight (Green border style) */
.blockquote-highlight {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-top: 2rem;
}
.quote-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.75rem !important;
    font-family: var(--font-heading);
    line-height: 1.4;
}
.quote-sub {
    font-size: 1rem;
    color: #555;
    margin: 0 !important;
}

/* Play Button Overlay for Founder Image */
.welcome-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}
.founder-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
.play-button-overlay:hover {
    background: rgba(22, 101, 52, 0.8);
    border-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}
.play-button-overlay svg {
    width: 40px;
    height: 40px;
    color: white;
    margin-left: 5px; /* Visual center for play icon */
}


/* 4 Days, 4 Venues Grid */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media(max-width: 768px) {
    .venue-grid { grid-template-columns: 1fr; }
}
.venue-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    color: white;
    transition: transform 0.4s ease;
    box-shadow: var(--box-shadow);
}
.venue-card:hover { transform: translateY(-5px); box-shadow: 0 20px 30px rgba(0,0,0,0.15); }
.venue-overlay {
    position: absolute; top:0; left:0; right:0; bottom:0;
    background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.4) 50%, rgba(15,23,42,0) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}
.venue-card:hover .venue-overlay { background: linear-gradient(to top, rgba(22,101,52,0.95) 0%, rgba(22,101,52,0.6) 60%, rgba(15,23,42,0) 100%); }
.venue-content { position: relative; z-index: 2; }
.venue-day { display: inline-block; padding: 0.25rem 0.75rem; background: var(--secondary-color); color: #000; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; border-radius: 4px; margin-bottom: 1rem; }
.venue-content h3 { font-size: 2rem; margin-bottom: 0.25rem; color: white; }
.venue-event { font-family: var(--font-heading); font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 1rem; font-size: 1.1rem; }
.venue-desc { color: rgba(255,255,255,0.8); line-height: 1.5; font-size: 0.95rem; margin: 0; }

/* Logistics Glassmorphic Redesign */
.logistics-glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    color: white;
    transition: all 0.4s ease;
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}
.glass-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}
.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}
.glass-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}
.glass-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}
.glass-link:hover {
    color: white;
}

