/* ==========================================================================
   Sheffield Summer Courtyard Party - Stylesheet
   Design Theme: Modern High-Energy Nightlife / Glassmorphism
   Color Palette: Live Nation UK Inspired
   ========================================================================== */

/* Custom Variables */
:root {
  /* Colors */
  --bg-primary: #0f0f10;
  --bg-secondary: #161618;
  --bg-card: rgba(24, 24, 27, 0.7);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-card-hover: rgba(226, 24, 54, 0.4);
  
  --color-red: #E21836;
  --color-red-hover: #c20505;
  --color-red-dark: #a7162d;
  --color-yellow: #fff599;
  --color-pink: #ffdff8;
  --color-teal: #007858;
  
  --text-white: #ffffff;
  --text-primary: #f5f5f5;
  --text-muted: #bdbdbd;
  --text-dark: #101010;
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  /* Layout */
  --header-height: 80px;
  --max-width: 1200px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-red);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

p {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  color: var(--text-white);
  font-weight: 700;
}

/* Utility Elements */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-white { color: var(--text-white); }
.text-primary { color: var(--color-red) !important; }

.tag-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
}

.tag-badge.red-badge {
  background-color: rgba(226, 24, 54, 0.15);
  color: var(--color-red);
  border-color: rgba(226, 24, 54, 0.3);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-white);
}

.section-title-center {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-white);
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  font-size: 0.95rem;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-red);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(226, 24, 54, 0.4);
}

.btn-primary:hover {
  background-color: var(--color-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(226, 24, 54, 0.6);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--color-red);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(226, 24, 54, 0.3);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.05rem;
}

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

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 24, 54, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(226, 24, 54, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(226, 24, 54, 0);
  }
}

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

/* Floating Ticket CTA */
.floating-ticket-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  transform: translateY(120px);
  transition: transform var(--transition-normal);
}

.floating-ticket-cta.visible {
  transform: translateY(0);
}

.floating-ticket-cta .btn {
  border-radius: 50px;
  padding: 16px 28px;
  font-size: 0.9rem;
}

.floating-ticket-cta .icon {
  margin-right: 8px;
}

/* Header Section */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: all var(--transition-normal);
  background-color: transparent;
}

.main-header.scrolled {
  background-color: rgba(15, 15, 16, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 70px;
}

.header-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  height: 50px;
  object-fit: contain;
  transition: height var(--transition-normal);
}

.main-header.scrolled .brand-logo {
  height: 40px;
}

/* Header Nav Menu */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-red);
  transition: width var(--transition-fast);
}

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

.btn-nav {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 16, 0.4) 0%,
    rgba(15, 15, 16, 0.7) 60%,
    rgba(15, 15, 16, 1) 100%
  );
}

.hero-content-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 100px 24px 0 24px;
}

.hero-text-content {
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 24px;
  color: var(--text-white);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.05;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 36px;
  line-height: 1.5;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-info-grid .info-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.hero-info-grid .info-item-link {
  background-color: rgba(226, 24, 54, 0.15);
  border-color: rgba(226, 24, 54, 0.4);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(226, 24, 54, 0.15);
}

.hero-info-grid .info-item-link:hover {
  background-color: var(--color-red);
  border-color: var(--color-red);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(226, 24, 54, 0.5);
}

.hero-info-grid .info-icon {
  font-size: 1.2rem;
  margin-right: 10px;
}

.hero-info-grid .info-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-down-arrow {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.scroll-down-arrow span {
  display: block;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid var(--text-muted);
  border-right: 2px solid var(--text-muted);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: scrollArrow 1.5s infinite;
}

@keyframes scrollArrow {
  0% { transform: rotate(45deg) translate(0, 0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: rotate(45deg) translate(8px, 8px); opacity: 0; }
}

/* Sections Global */
section {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg-primary);
}

/* Headline Event Section */
.headline-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.headline-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.headline-lead {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.event-details-box {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
}

.detail-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  width: 140px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.detail-val {
  font-weight: 500;
  font-size: 1rem;
}

.detail-val.logo-val {
  display: flex;
  align-items: center;
}

.inline-logo {
  height: 24px;
  margin-right: 8px;
}

.headline-subtext {
  margin-bottom: 30px;
}

.headline-actions {
  display: flex;
}

.headline-visual-card .glass-border-wrapper {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.magazine-cover-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  transition: transform var(--transition-normal);
}

.headline-visual-card:hover .magazine-cover-img {
  transform: scale(1.02);
}

.visual-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: var(--color-red);
  color: var(--text-white);
  font-family: var(--font-display);
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Timeline Section */
.timeline-section {
  background-color: var(--bg-secondary);
}

.timeline-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.timeline-card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.timeline-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-card-hover);
  box-shadow: 0 12px 30px rgba(226, 24, 54, 0.15);
}

.card-glow {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(226, 24, 54, 0.15) 0%, rgba(226, 24, 54, 0) 70%);
  pointer-events: none;
}

.featured-ribbon {
  position: absolute;
  top: 20px;
  right: -40px;
  background-color: var(--color-red);
  color: var(--text-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 6px 40px;
  transform: rotate(45deg);
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.timeline-card.featured-card {
  border-color: rgba(226, 24, 54, 0.3);
  background-color: rgba(226, 24, 54, 0.03);
}

.timeline-card.featured-card:hover {
  border-color: var(--color-red);
}

.card-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background-color: var(--color-red);
  color: var(--text-white);
  font-family: var(--font-display);
  border-radius: 8px;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.card-date-badge .day {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.card-date-badge .month {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.timeline-card:not(.featured-card) .card-date-badge {
  background-color: #2c2c30;
}

.event-host {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.event-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

.event-description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-top: auto;
}

.event-time {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.timeline-footer {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.more-dates-alert {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.05em;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 32px;
  border-radius: 50px;
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.more-dates-alert .alert-icon {
  color: var(--color-yellow);
  margin-right: 8px;
}

/* Experience Section */
.experience-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: flex-start;
}

.experience-text {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.experience-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-white);
}

.feature-card p {
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Video Showcase Custom Styling */
.video-container-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-video {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 650px;
  object-fit: cover;
  display: block;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 16, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  z-index: 5;
}

.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn-circle {
  width: 80px;
  height: 80px;
  background-color: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(226, 24, 54, 0.4);
  transition: all var(--transition-fast);
  margin-bottom: 16px;
}

.play-arrow {
  color: var(--text-white);
  font-size: 1.8rem;
  margin-left: 5px; /* Offset to visually center the triangle */
}

.play-label {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.video-play-overlay:hover .play-btn-circle {
  transform: scale(1.1);
  background-color: var(--color-red-hover);
  box-shadow: 0 6px 25px rgba(226, 24, 54, 0.6);
}

.notice-callout {
  margin-top: 24px;
}

.notice-image-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-white);
  transition: all var(--transition-fast);
  text-align: center;
}

.notice-image-trigger:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-red);
}

/* Modal Popup Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 16, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}

.modal-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

.modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: var(--text-white);
  cursor: pointer;
}

/* Venue Section */
.venue-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.venue-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 36px;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.info-block {
  display: flex;
  gap: 20px;
}

.info-block-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.info-block-text h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-white);
}

.info-block-text p {
  font-size: 0.95rem;
}

.info-block-text a:hover {
  color: var(--color-red);
}

.social-links-row {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-link:hover {
  color: var(--text-white);
  background-color: var(--color-red);
  border-color: var(--color-red);
  transform: translateY(-3px);
}

.map-iframe-container {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Call to Action Banner */
.banner-cta-section {
  padding: 120px 0;
  text-align: center;
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/SUMMER 2026.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.banner-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-white);
  margin-bottom: 16px;
}

.banner-content p {
  font-size: 1.25rem;
  margin-bottom: 36px;
  color: var(--text-primary);
}

/* Footer Section */
.main-footer {
  background-color: #080809;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px 0;
}

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

.footer-logo {
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.95rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 24px;
  color: var(--text-white);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
}

.copyright {
  font-size: 0.85rem;
}

/* Responsive Overrides (Media Queries) */
@media (max-width: 1024px) {
  .headline-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .experience-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .experience-video-showcase {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .venue-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section-title {
    font-size: 2.1rem;
  }
  
  .section-title-center {
    font-size: 2.3rem;
  }

  /* Nav Menu Mobile */
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-primary);
    backdrop-filter: blur(15px);
    z-index: 99;
    transition: left var(--transition-normal);
    padding: 60px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }
  
  .nav-link {
    font-size: 1.4rem;
  }
  
  .header-cta {
    display: none; /* Hide standard navbar CTA on mobile, rely on floating CTA */
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-info-grid {
    gap: 12px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.dev-link {
  transition: opacity var(--transition-fast);
}

.dev-link:hover {
  opacity: 0.8;
  text-decoration: underline !important;
}
