/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* --- Announcement Bar --- */
.announcement-bar {
  background-color: var(--maroon);
  color: var(--gold-pale);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform var(--transition);
}
.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo__text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon);
  white-space: nowrap;
  margin-right: 40px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active {
  color: var(--maroon);
  border-bottom-color: var(--gold);
}

/* Donate button in nav */
.nav-donate {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.06em;
  transition: all var(--transition) !important;
}
.nav-donate:hover {
  background: var(--maroon) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Sections --- */
.section { padding: var(--section-pad) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--maroon {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
}
.section--maroon p { color: rgba(255,255,255,0.9); }
.section--navy {
  background: linear-gradient(135deg, var(--navy), #0f1b33);
}

.section__heading {
  margin-bottom: 40px;
  position: relative;
}
.section__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
  border-radius: 2px;
}
.section__heading--centered { text-align: center; }
.section__heading--centered::after {
  margin-left: auto;
  margin-right: auto;
}
.section__heading--white::after { background: var(--gold); }

.centered-text {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy) center/cover no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,42,74,0.85), rgba(107,29,42,0.9));
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px var(--container-pad);
}
.hero__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 72px;
  height: auto;
  z-index: 3;
}
.hero h1 {
  color: var(--white);
  font-size: 5.25rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
  line-height: 1.05;
}
.hero__subtitle {
  color: var(--gold-pale);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 32px;
}
.hero__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--maroon-dark));
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p {
  color: var(--gold-pale);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Grids --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.hours-grid {
  display: flex;
  justify-content: center;
  gap: var(--grid-gap);
  flex-wrap: wrap;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}
.tier-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--grid-gap);
}
.tier-grid > * {
  flex: 0 1 320px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* --- Placeholder Images --- */
.placeholder-image, .map-placeholder {
  background: linear-gradient(135deg, var(--cream-dark), #e0d8cc);
  border-radius: var(--radius);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-style: italic;
  border: 2px dashed var(--gold-light);
}

/* --- Entertainment Cards --- */
.ent-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.ent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ent-card__image {
  height: 200px;
  overflow: hidden;
}
.ent-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.ent-card:hover .ent-card__image img {
  transform: scale(1.05);
}
.ent-card__body { padding: 24px; }
.ent-card__body h3 { color: var(--maroon); margin-bottom: 8px; }
.ent-card__body p { color: var(--text-light); font-size: 0.95rem; }

/* --- Info Items --- */
.info-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.info-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.info-item span {
  color: var(--maroon);
  font-size: 1.1rem;
  font-weight: 600;
}

/* --- Footer --- */
.site-footer {
  background: linear-gradient(135deg, var(--navy), #0f1b33);
  color: var(--cream);
  padding: 60px 0 0;
}
.footer__top {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
  max-width: 420px;
}
.footer__logo {
  width: 180px;
  height: auto;
  flex-shrink: 0;
}
.footer__brand p {
  color: rgba(250,247,242,0.7);
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer__links {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col h3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer__col p, .footer__col li {
  color: rgba(250,247,242,0.8);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer__col a { color: rgba(250,247,242,0.8); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer__bottom p { font-size: 0.85rem; color: rgba(250,247,242,0.5); }

/* --- Responsive --- */
@media screen and (max-width: 992px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__links { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .footer__top { gap: 40px; }
  .ent-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
}

@media screen and (max-width: 767px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px var(--container-pad);
    gap: 0;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-dark);
    width: 100%;
  }
  .hero h1 { font-size: 3rem; }
  .hero__subtitle { font-size: 1.25rem; }
  .hero__details { flex-direction: column; gap: 10px; font-size: 1rem; }
  .hero__logo { width: 56px; top: 14px; left: 14px; }
  .hero__buttons { flex-direction: column; }
  .logo__text { font-size: 1rem; }
  .card-grid { grid-template-columns: 1fr; }
  /* Force ent-grid and tier-grid to single column on mobile (overrides inline styles) */
  .ent-grid { grid-template-columns: 1fr !important; }
  .tier-grid { flex-direction: column; align-items: center; }
  .tier-grid > * { flex: 0 1 100%; width: 100%; }
  .tier-card--presenting .two-col { grid-template-columns: 1fr !important; }
  .footer__top { flex-direction: column; align-items: center; text-align: center; }
  .footer__brand { flex-direction: column; max-width: 100%; }
  .footer__links { grid-template-columns: 1fr; text-align: center; }
  .hours-grid { flex-direction: column; align-items: center; }
  .hours-card { width: 100%; }
  .btn { width: 100%; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .page-hero { padding: 60px 0 40px; }
  .page-hero h1 { font-size: 2rem; }
}

/* Prevent horizontal overflow on all screens */
html, body {
  overflow-x: hidden;
}
.sponsor-marquee {
  max-width: 100vw;
}
