.wifi-banner { display: none; }

/* WiFi Modal Styles */
.wifi-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 20, 10, 0.65);
  align-items: center;
  justify-content: center;
}
.wifi-modal.active {
  display: flex;
}
.wifi-modal-content {
  background: linear-gradient(90deg, #FFD700 0%, #FFB300 100%);
  color: #4B2E1D;
  font-weight: 700;
  font-size: 1.13em;
  text-align: center;
  padding: 2em 1.5em 1.5em 1.5em;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  max-width: 90vw;
  min-width: 260px;
  position: relative;
}
.wifi-modal-close {
  position: absolute;
  top: 0.7em;
  right: 1em;
  background: none;
  border: none;
  font-size: 1.7em;
  color: #4B2E1D;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
}
.wifi-modal-content strong {
  font-size: 1.15em;
}
.wifi-modal-content span {
  font-weight: 400;
}
@media (max-width: 700px) {
  .wifi-modal-content {
    font-size: 1em;
    padding: 1.2em 0.5em 1em 0.5em;
    min-width: 0;
  }
}
/* WiFi Banner Styles */
.wifi-banner {
  width: 100vw;
  background: linear-gradient(90deg, #FFD700 0%, #FFB300 100%);
  color: #4B2E1D;
  font-weight: 700;
  font-size: 1.13em;
  text-align: center;
  padding: 0.7em 0.5em 0.7em 0.5em;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 1000;
  position: relative;
}
@media (max-width: 700px) {
  .wifi-banner {
    font-size: 1em;
    padding: 0.6em 0.2em;
  }
}
/* Modern concession menu card grid */
.concession-menu-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.1em 1em;
  margin: 1.5em 0 1.2em 0;
}
.concession-category-title {
  grid-column: 1 / -1;
  font-size: 1.2em;
  font-weight: 800;
  color: #FFD700;
  margin: 1.4em 0 0.3em 0;
  letter-spacing: 0.01em;
  text-align: left;
  text-transform: uppercase;
}
.concession-category-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFB300);
  border-radius: 3px;
  margin-top: 6px;
}
.concession-card {
  background: linear-gradient(135deg, #fffbe6 70%, #ffe9a7 100%);
  border: 1.5px solid #FFD70066;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  padding: 0.85em 0.9em 0.75em 0.9em;
  display: block;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.12s;
  min-height: 88px;
  position: relative;
}
.concession-card:hover, .concession-card:focus {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: #FFD700;
  transform: translateY(-2px);
}
.concession-item-name {
  font-size: 1.05em;
  font-weight: 700;
  color: #4B2E1D;
}
.concession-item-price {
  float: right;
  font-size: 0.95em;
  font-weight: 800;
  color: #3a1f13;
  background: linear-gradient(90deg, #FFD700, #FFB300);
  padding: 0.15em 0.55em;
  border-radius: 999px;
  border: 1px solid #4B2E1D11;
}
.concession-item-desc {
  clear: both;
  font-size: 0.92em;
  color: #5c3826;
  margin-top: 0.35em;
}
@media (max-width: 700px) {
  .concession-menu-board {
    grid-template-columns: 1fr 1fr;
    gap: 0.8em;
  }
  .concession-category-title {
    font-size: 1.02em;
    margin: 1em 0 0.2em 0;
  }
  .concession-card {
    padding: 0.7em 0.65em 0.6em 0.65em;
    min-height: 72px;
  }
}
/* Concession menu accordion styles */
.concession-accordion {
  margin: 2em 0 1em 0;
}
.concession-category {
  margin-bottom: 1.2em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}
.concession-toggle {
  width: 100%;
  background: #fffbe6;
  border: 2px solid #b8860b;
  border-radius: 8px;
  padding: 1em 1.5em;
  font-size: 1.1em;
  font-weight: 600;
  color: #b8860b;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.concession-toggle:hover, .concession-toggle:focus {
  background: #b8860b;
  color: #fffbe6;
  outline: none;
}
.concession-toggle::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.2s;
}
.concession-toggle.expanded::after {
  transform: rotate(45deg);
}
.concession-items {
  display: none;
  background: #fffbe6;
  border: 2px solid #b8860b;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 1.2em 1.5em;
  font-size: 1em;
  line-height: 1.6;
}
.concession-item {
  margin-bottom: 1em;
}
.concession-item:last-child {
  margin-bottom: 0;
}
.concession-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.08em;
}
.concession-item-desc {
  margin-top: 0.3em;
  color: #5c3826;
  font-size: 0.98em;
}
/* Sticky footer for all pages */
html, body {
  height: 100%;
  min-height: 100vh;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
footer {
  margin-top: auto;
  width: 100%;
  background: #3a1f13;
  color: #FFD700;
  text-align: center;
  padding: 1.2em 0 1em 0;
  font-size: 1.08em;
  letter-spacing: 0.02em;
  border-top: 2px solid #b8860b;
  box-shadow: 0 -2px 12px rgba(184,134,11,0.07);
}
/* Interactive band list - accordion style */
.band-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.band-item {
  margin: 0.5em 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.band-toggle {
  width: 100%;
  background: #fffbe6;
  border: 2px solid #b8860b;
  border-radius: 8px;
  padding: 1em 1.5em;
  font-size: 1.1em;
  font-weight: 600;
  color: #b8860b;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.band-toggle:hover, .band-toggle:focus {
  background: #b8860b;
  color: #fffbe6;
  outline: none;
}
.band-toggle::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.2s;
}
.band-toggle.expanded::after {
  transform: rotate(45deg);
}
.band-details {
  display: none;
  background: #fffbe6;
  border: 2px solid #b8860b;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 1.5em;
  font-size: 1em;
  line-height: 1.6;
}
.band-section {
  margin-bottom: 1em;
}
.band-section:last-child {
  margin-bottom: 0;
}
.band-details .band-bio {
  margin-top: 0.5em;
}
/* Temporary message box for program page */
.temp-message {
  background: #fffbe6;
  border: 2px dashed #b8860b;
  color: #7a5a00;
  text-align: center;
  padding: 2em 1em;
  margin: 2em auto;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(184,134,11,0.07);
}
/* Centered text utility */
.center-text {
  text-align: center;
}
@media (max-width: 700px) {
  html, body {
    height: 100vh !important;
    min-height: 100vh !important;
    width: 100vw !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  body {
    /* Sparkling golden sand background for mobile (local file for offline use) */
    background: url('mobile-bg-gold.jpeg') center center / cover no-repeat fixed !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-attachment: fixed !important;
  }
  #bg-video {
    display: none !important;
    visibility: hidden !important;
  }
  .bg-overlay {
    display: none !important;
  }
}
/* --- Responsive fixes for program card, PDF, and nav --- */
.program-section {
  width: 100vw !important;
  max-width: 100vw !important;
  min-width: 0;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden;
}
.program-card {
  width: 100%;
  max-width: 700px;
  min-width: 0;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  padding: 0.5em 0 1.5em 0;
}
.pdf-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-sizing: border-box;
}
.pdf-wrapper iframe {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 80vh;
  min-height: 220px;
  border: 0;
  display: block;
  box-sizing: border-box;
}

/* Hamburger menu styles */
.main-nav {
  background: #3a1f13;
  position: relative;
  z-index: 10;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px 0 0;
  z-index: 20;
}
.nav-toggle-bar {
  width: 28px;
  height: 4px;
  background: var(--accent-color);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.nav-links a {
  color: var(--accent-color);
  padding: 15px 20px;
  text-decoration: none;
  font-weight: bold;
  outline: none;
  display: inline-block;
}
.nav-links a:focus {
  outline: var(--focus-outline);
  background: #FFD70022;
}
.nav-links a:hover {
  background-color: #5c3826;
}

@media (max-width: 700px) {
  .nav-toggle {
    display: flex !important;
    position: relative;
    z-index: 101;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #3a1f13;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    border-radius: 0 0 12px 12px;
    z-index: 99;
    padding: 0 0 10px 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid #FFD70022;
    font-size: 1.1em;
  }
  .program-section {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .program-card {
    max-width: 100vw;
    border-radius: 0;
    box-shadow: none;
    padding: 0.5em 0 1em 0;
  }
  .pdf-wrapper {
    max-width: 100vw;
    border-radius: 0;
  }
  .pdf-wrapper iframe {
    min-height: 180px;
    height: 48vw;
    max-width: 100vw;
    border-radius: 0;
  }
}
/* Modern Contact Page Styles */
.contact-section {
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 60vh;
  padding: 0;
  background: none;
}
.contact-card {
  background: rgba(255,255,255,0.98);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  padding: 2.5em 2.2em 2em 2.2em;
  max-width: 440px;
  width: 100%;
  margin: 2.5em 0 2em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card h2 {
  color: var(--main-bg);
  margin-top: 0;
  margin-bottom: 1.1em;
  font-size: 2em;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
}
.contact-icon {
  font-size: 1.2em;
  vertical-align: middle;
  margin-right: 0.18em;
}
.contact-info {
  width: 100%;
  margin-bottom: 1.5em;
  color: #3a1f13;
  font-size: 1.08em;
}
.contact-info a {
  color: #4B2E1D;
  text-decoration: underline;
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1.5em;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.contact-form label {
  font-weight: 600;
  color: #4B2E1D;
  margin-bottom: 0.1em;
}
.contact-form input,
.contact-form textarea {
  border: 1.5px solid #FFD70099;
  border-radius: 7px;
  padding: 0.7em 1em;
  font-size: 1em;
  font-family: inherit;
  background: #fffbe7;
  color: #2d2d2d;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #FFD700;
  outline: none;
  box-shadow: 0 2px 8px rgba(255,215,0,0.08);
}
.contact-btn {
  background: linear-gradient(90deg, #FFD700 0%, #FFB300 100%);
  color: #4B2E1D !important;
  font-size: 1.13em;
  font-weight: 700;
  padding: 0.7em 2em;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 0.5em;
  margin-bottom: 0.2em;
  cursor: pointer;
}
.contact-btn:hover, .contact-btn:focus {
  background: linear-gradient(90deg, #FFB300 0%, #FFD700 100%);
  color: #2d2d2d !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  outline: 2px solid #4B2E1D;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-top: 0.7em;
  font-size: 1.08em;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1em;
  height: 2.1em;
  background: #fffbe7;
  border-radius: 50%;
  border: 1.5px solid #FFD70099;
  font-size: 1.25em;
  color: #4B2E1D;
  transition: background 0.2s, border 0.2s;
  text-decoration: none;
}
.social-btn:hover, .social-btn:focus {
  background: #FFD700;
  border: 2px solid #4B2E1D;
  color: #2d2d2d;
}
/* Concession Stand Menu Styles */
.concessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
  max-width: 700px;
  margin: 2em auto 1.5em auto;
  padding: 0;
}
.concessions-grid .concession-card {
  background: linear-gradient(120deg, #fffbe7 70%, #ffe9a7 100%);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1.1em 1.2em;
  font-size: 1.13em;
  font-weight: 500;
  color: #4B2E1D;
  transition: transform 0.13s, box-shadow 0.13s;
  border: 1.5px solid #FFD70033;
}
.concessions-grid .concession-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  background: linear-gradient(120deg, #ffe9a7 60%, #fffbe7 100%);
}
.concessions-grid .concession-emoji {
  font-size: 2.1em;
  margin-right: 0.2em;
  flex-shrink: 0;
}
.concessions-grid .concession-price {
  color: #8d6a00;
  font-weight: 700;
  font-size: 1.08em;
}
.concession-note {
  font-size: 0.98em;
  color: #555;
  text-align: center;
  margin-top: 1.2em;
}
:root {
  --main-bg: #4B2E1D;
  --accent-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #2d2d2d;
  --focus-outline: 2px solid #FFD700;
}

.header-flex {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}

.header-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


body {
  margin: 0;
  min-height: 100vh;
  background-color: #fdfaf4;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
}


header {
  background-color: var(--main-bg);
  color: var(--accent-color);
  padding: 8px 5px;
  min-height: unset;
}
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 20, 10, 0.75);
  z-index: -1;
  pointer-events: none;
}


header h1 {
  margin: 0;
  line-height: 1.2;
}


header p {
  font-size: 1rem;
  margin: 0.2em 0 0 0;
}

nav {
  background-color: #3a1f13;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: var(--accent-color);
  padding: 15px 20px;
  text-decoration: none;
  font-weight: bold;
  outline: none;
}

nav a:focus {
  outline: var(--focus-outline);
  background: #FFD70022;
}

nav a:hover {
  background-color: #5c3826;
}

section {
  padding: 40px 20px;
  max-width: 2000px;
  margin: 2em auto 2em auto;
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  backdrop-filter: blur(2px);
}

.tickets-section {
  width: 90vw;
  max-width: 1300px;
  min-width: 260px;
  margin: 2em auto 2em auto;
  padding: 40px 20px;
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  backdrop-filter: blur(2px);
}
.tickets-section > div {
  width: 100% !important;
  box-sizing: border-box;
}

.program-card {
  /* Simple container for program content */
  padding: 0.5em 0 1.5em 0;
  margin: 0;
  width: 100%;
  max-width: none;
  min-width: 0;
  display: block;
}

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

.program-card h2 {
  margin-top: 0;
  margin-bottom: 0.4em;
  color: var(--main-bg);
}

.program-desc {
  font-size: 1.12em;
  color: #3a1f13;
  margin-bottom: 0.7em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.program-card .button {
  background: var(--main-bg);
  color: #FFD70099 !important;
  border: none;
  border-radius: 6px;
  padding: 0.7em 1.5em;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 1.2em;
  text-decoration: none;
  transition: background 0.2s;
}
.program-card .button:hover {
  background: #6a3b22;
  color: #8d6a00 !important;
}

.program-card iframe {
  width: 100%;
  height: 60vh;
  min-height: 350px;
  border: 1.5px solid #bbb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* Responsive wrapper for PDFs/iframes to preserve aspect ratio */
.pdf-wrapper {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.pdf-wrapper iframe {
  width: 100%;
  height: 80vh; /* fallback for larger screens */
  min-height: 300px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .program-card {
    width: 98vw;
    padding: 1.2em 0.5em 1.5em 0.5em;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

/* Smaller devices adjustments */
@media (max-width: 600px) {
  .program-section {
    width: 96vw;
    padding: 12px 10px;
    margin: 1em auto;
    box-shadow: none;
    border-radius: 12px;
  }
  .program-card .program-desc {
    font-size: 1em;
    padding: 0 6px;
  }
  .pdf-wrapper iframe {
    height: 56vh;
    min-height: 260px;
  }

  /* Hide background video on small screens to save bandwidth and avoid overlap */
  #bg-video {
    display: none;
    visibility: hidden;
  }
}

section h2 {
  color: var(--main-bg);
}


img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Default desktop logo style */
.site-logo {
  max-width: 60px;
  min-width: 40px;
  width: 100%;
  height: auto;
  margin: 0 0 0 0;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}


footer {
  background-color: #2b1a10;
  color: var(--accent-color);
  text-align: center;
  padding: 16px 10px;
  margin-top: auto;
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 1;
}

#countdown {
  margin: 2.5em auto 2em auto;
  padding: 1.5em 2.5em;
  max-width: 420px;
  background: rgba(58, 31, 19, 0.7);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  border-radius: 1.5em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--accent-color);
  text-align: center;
  font-family: 'Segoe UI', 'Roboto Mono', 'Menlo', 'monospace', Arial, sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  transition: box-shadow 0.2s;
}

#countdown #timer {
  display: inline-block;
  font-size: 2.2rem;
  font-family: 'Roboto Mono', 'Menlo', 'monospace', Arial, sans-serif;
  font-weight: 700;
  color: #fffbe7;
  background: rgba(0,0,0,0.18);
  border-radius: 0.5em;
  padding: 0.15em 0.5em;
  margin-left: 0.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s;
  min-width: 180px;
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  #countdown {
    padding: 1em 0.5em;
    font-size: 1.1rem;
    max-width: 98vw;
  }
  #countdown #timer {
    font-size: 1.3rem;
    min-width: 100px;
  }
}

@media (max-width: 900px) {
  section {
    padding: 20px 5px;
    max-width: 98vw;
  }
  header {
    padding: 8px 5px;
  }
  .site-logo {
    max-width: 100vw;
    width: 100vw;
    height: auto;
    min-width: 0;
    border-radius: 0;
    margin: 0 auto 0 auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  }
  header h1 {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 0.9rem;
  }
  nav {
    flex-direction: column;
  }
  section {
    padding: 10px 2px;
  }
  .header-flex {
    gap: 6px;
  }
  .site-logo {
    max-width: 100vw;
    width: 100vw;
    height: auto;
    min-width: 0;
    border-radius: 0;
    margin: 0 auto 0 auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  }
}
/* Center and cover the video background */
#bg-video {
  object-fit: cover;
  object-position: center center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* High contrast for accessibility */
@media (prefers-contrast: more) {
  body {
    background: #fff;
    color: #000;
  }
  header, nav, footer, #countdown {
    background: #000 !important;
    color: #FFD700 !important;
  }
}

.program-section {
  width: 75vw;
  max-width: 1100px;
  min-width: 260px;
  margin: 2em auto 2em auto;
  padding: 40px 20px;
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  backdrop-filter: blur(2px);
}


.program-download-btn {
  display: inline-block;
  background: linear-gradient(90deg, #fffbe7 0%, #ffe9a7 100%);
  color: #4B2E1D !important;
  font-size: 1.15em;
  font-weight: 700;
  padding: 0.7em 1.7em;
  border-radius: 8px;
  border: 2px solid #FFD700;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-bottom: 1em;
}
.program-download-btn:hover, .program-download-btn:focus {
  background: linear-gradient(90deg, #FFD700 0%, #fffbe7 100%);
  color: #2d2d2d !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  outline: 2px solid #4B2E1D;
}
