/*
Theme Name: Hill Country Open
Theme URI: https://www.hillcountryopen.com
Author: Hill Country Open Tournament
Description: Custom volleyball tournament theme for the Hill Country Open annual event. Red, white, and blue championship style.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hillcountryopen
Tags: sports, volleyball, tournament, custom-theme
*/

/* ================================================
   CSS CUSTOM PROPERTIES
   ================================================ */
:root {
  --red:        #C8102E;
  --red-dark:   #9B0C22;
  --red-light:  #E8193F;
  --blue:       #002868;
  --blue-mid:   #003DA5;
  --blue-light: #1155CC;
  --white:      #FFFFFF;
  --off-white:  #F5F5F0;
  --sand:       #EDE8DC;
  --gray-light: #E8E8E8;
  --gray:       #888888;
  --gray-dark:  #333333;
  --black:      #111111;

  --font-display: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body:    'Barlow', 'Trebuchet MS', sans-serif;
  --font-accent:  'Oswald', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.18);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.25);
  --shadow-red: 0 4px 20px rgba(200,16,46,0.35);

  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.25s ease;
  --max-width:  1200px;
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue);
}

p { margin-bottom: 1rem; }

/* ================================================
   LAYOUT UTILITIES
   ================================================ */
.container        { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section-pad      { padding: 5rem 0; }
.section-pad-sm   { padding: 3rem 0; }
.text-center      { text-align: center; }
.text-white       { color: var(--white); }
.bg-blue          { background: var(--blue); }
.bg-red           { background: var(--red); }
.bg-off-white     { background: var(--off-white); }
.bg-sand          { background: var(--sand); }
.visually-hidden  { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 3px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,16,46,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.15rem; }

/* ================================================
   SECTION HEADINGS
   ================================================ */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.section-heading span { color: var(--red); }

.section-subheading {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 2.5rem;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-divider .line {
  flex: 1;
  height: 2px;
  background: var(--gray-light);
}
.section-divider .star {
  width: 12px; height: 12px;
  background: var(--red);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem;
  font-family: var(--font-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--red-light); }

/* ================================================
   HEADER / NAVIGATION
   ================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.logo-icon {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.logo-icon::before {
  content: '🏐';
  font-size: 1.7rem;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logo-subtitle {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--blue);
  color: var(--white);
}
.main-nav .nav-register a {
  background: var(--red);
  color: var(--white);
  padding: 0.55rem 1.2rem;
}
.main-nav .nav-register a:hover {
  background: var(--red-dark);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  background:
    linear-gradient(135deg, rgba(0,40,104,0.92) 0%, rgba(0,61,165,0.78) 40%, rgba(200,16,46,0.72) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated volleyball net lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.06) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.06) 60px);
  pointer-events: none;
}

/* Stars overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5l4.5 13.8H49L37.7 27l4.3 13.2L30 32.5 18 40.2l4.3-13.2L11 18.8h14.5z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--red-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 30px; height: 2px;
  background: var(--red-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.hero-title .year {
  display: block;
  color: var(--red-light);
  font-size: 0.65em;
  letter-spacing: 0.1em;
}
.hero-title .highlight {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}

.hero-stat-item { color: var(--white); }
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red-light);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator::after {
  content: '▼';
  font-size: 0.8rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ================================================
   ANNOUNCEMENT BAND
   ================================================ */
.announcement-band {
  background: var(--red);
  color: var(--white);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.marquee-track span::before { content: '★'; color: rgba(255,255,255,0.6); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================
   EVENT DETAILS CARDS
   ================================================ */
.event-details {
  padding: 5rem 0;
  background: var(--off-white);
}

.detail-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--red);
  transition: transform var(--transition), box-shadow var(--transition);
}
.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.detail-card:nth-child(2) { border-top-color: var(--blue); }
.detail-card:nth-child(3) { border-top-color: var(--red); }
.detail-card:nth-child(4) { border-top-color: var(--blue); }

.detail-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.detail-card h3 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 0.4rem;
  font-family: var(--font-accent);
}
.detail-card .value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}
.detail-card .sub-value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.3rem;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 400;
}

/* ================================================
   ABOUT / TOURNAMENT INFO
   ================================================ */
.about-section {
  padding: 5rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--gray-dark);
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-text .btn { margin-top: 1.5rem; }

.about-visual {
  position: relative;
}
.about-image-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, var(--red) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-image-box .placeholder-icon {
  position: absolute;
  font-size: 5rem;
  opacity: 0.3;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--red);
  color: var(--white);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-badge .badge-year { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge .badge-text { font-size: 0.6rem; letter-spacing: 0.1em; line-height: 1.3; }

/* ================================================
   DIVISIONS
   ================================================ */
.divisions-section {
  padding: 5rem 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.divisions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='2'/%3E%3C/svg%3E") repeat;
}

.divisions-section .section-heading { color: var(--white); }
.divisions-section .section-subheading { color: rgba(255,255,255,0.65); }

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.division-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
  cursor: default;
}
.division-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--red);
  transform: translateY(-3px);
}
.division-card.featured {
  background: var(--red);
  border-color: var(--red);
}
.division-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.division-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.division-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ================================================
   REGISTRATION CTA
   ================================================ */
.registration-cta {
  padding: 5rem 0;
  background: var(--off-white);
}
.cta-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: '🏐';
  position: absolute;
  right: 3rem;
  font-size: 8rem;
  opacity: 0.08;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 0;
}
.cta-content p a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.cta-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.cta-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* ================================================
   VENUE / LOCATION
   ================================================ */
.venue-section {
  padding: 5rem 0;
  background: var(--white);
}
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.venue-map-placeholder {
  background: linear-gradient(135deg, var(--sand) 0%, var(--gray-light) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gray);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px dashed var(--gray-light);
}
.venue-map-placeholder .map-icon { font-size: 3rem; }

.venue-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.venue-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-light);
}
.venue-detail:last-child { border-bottom: none; }
.venue-detail .icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.venue-detail strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.2rem;
}
.venue-detail p { margin-bottom: 0; font-size: 0.95rem; color: var(--gray-dark); }

/* ================================================
   SPONSORS
   ================================================ */
.sponsors-section {
  padding: 4rem 0;
  background: var(--sand);
  text-align: center;
}
.sponsors-section h2 {
  font-size: 1.1rem;
  color: var(--gray);
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
  font-family: var(--font-accent);
  font-weight: 500;
}
.sponsor-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.sponsor-slot {
  background: var(--white);
  border: 2px dashed var(--gray-light);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
  width: 160px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.sponsor-slot:hover { border-color: var(--blue); color: var(--blue); }
.sponsor-slot img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-brand .logo-title { color: var(--white); font-size: 1.3rem; }
.footer-brand .logo-subtitle { color: var(--red-light); }
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--red-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ================================================
   PAGE BANNER (inner pages)
   ================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 70%, var(--red-dark) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.05) 60px),
                    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.05) 60px);
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
}
.page-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-top: 0.75rem;
  position: relative;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  font-family: var(--font-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--red-light); }

/* ================================================
   COUNTDOWN TIMER
   ================================================ */
.countdown-section {
  background: var(--red);
  padding: 2.5rem 0;
  text-align: center;
}
.countdown-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.countdown-unit {
  color: var(--white);
  text-align: center;
}
.countdown-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.countdown-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ================================================
   GALLERY TEASER
   ================================================ */
.gallery-section {
  padding: 5rem 0;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 0.75rem;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition);
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; font-size: 4rem; background: linear-gradient(135deg, var(--red-dark), var(--red)); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, var(--blue-mid), var(--blue-light)); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,40,104,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-family: var(--font-accent);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .about-grid, .venue-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { flex-direction: row; }
}

@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; gap: 0.25rem; }

  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem; box-shadow: var(--shadow-md); border-top: 2px solid var(--red); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0.25rem; }
  .main-nav a { display: block; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(2.5rem, 12vw, 4.5rem); }
  .hero-stats { gap: 1.5rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; height: 200px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .countdown-timer { gap: 1rem; }
  .countdown-number { font-size: 2.5rem; }

  .cta-box { padding: 2rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .detail-cards { grid-template-columns: 1fr 1fr; }
  .divisions-grid { grid-template-columns: 1fr 1fr; }
}
