/* ============================================
   OSHKOSH FLYERS - Main Stylesheet
   Mobile-First Responsive Design
   Colors: Navy (#0a1f3f, #1a3a5c, #2a5a8c)
           Gold (#d4a843, #e8c36a)
           Red  (#c8392b)
   Fonts:  Bebas Neue (display)
           Montserrat (headings)
           Open Sans (body)
   ============================================ */

/* -------------------------------------------
   CSS CUSTOM PROPERTIES
   ------------------------------------------- */
:root {
  /* Colors */
  --navy-dark: #0a1f3f;
  --navy: #1a3a5c;
  --navy-light: #2a5a8c;
  --gold: #d4a843;
  --gold-light: #e8c36a;
  --red: #c8392b;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-50: #f4f5f7;
  --gray-100: #ebedf0;
  --gray-200: #d1d5db;
  --gray-300: #9ca3af;
  --gray-400: #6b7280;
  --gray-500: #4b5563;
  --gray-600: #374151;
  --gray-700: #1f2937;
  --text-dark: #1a1a2e;
  --text-body: #3d4555;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --text-white-muted: rgba(255, 255, 255, 0.7);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 31, 63, 0.08);
  --shadow-md: 0 4px 12px rgba(10, 31, 63, 0.1);
  --shadow-lg: 0 8px 30px rgba(10, 31, 63, 0.12);
  --shadow-xl: 0 16px 50px rgba(10, 31, 63, 0.15);

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Spacing */
  --section-pad-mobile: 48px 0;
  --section-pad-tablet: 64px 0;
  --section-pad-desktop: 80px 0;
}

/* -------------------------------------------
   RESET & BASE (Mobile-First)
   ------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.625rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

svg {
  flex-shrink: 0;
}

/* -------------------------------------------
   CONTAINER
   ------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* -------------------------------------------
   UTILITY CLASSES
   ------------------------------------------- */
.text-center { text-align: center; }

.text-muted {
  color: var(--text-light);
  font-size: 0.9rem;
}

.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

.max-w-prose {
  max-width: 680px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-32 {
  margin-top: 32px;
}

/* -------------------------------------------
   BUTTONS
   ------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--text-dark);
  border-color: var(--gray-200);
}

.btn-secondary:hover {
  background: var(--gray-200);
  color: var(--text-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.btn-danger {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-danger:hover {
  background: #a82e22;
  border-color: #a82e22;
  color: var(--white);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

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

/* -------------------------------------------
   SCROLL REVEAL ANIMATION
   ------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------
   FLASH MESSAGES
   ------------------------------------------- */
.flash {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  animation: flashSlideDown 0.4s ease;
}

@keyframes flashSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.flash-success {
  background: #059669;
  color: var(--white);
}

.flash-error {
  background: var(--red);
  color: var(--white);
}

.flash-close {
  margin-left: auto;
  background: none;
  border: none;
  color: inherit;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.8;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flash-close:hover {
  opacity: 1;
}

/* -------------------------------------------
   TOP BAR
   ------------------------------------------- */
.top-bar {
  display: none;
  background: var(--navy-dark);
  color: var(--text-white-muted);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item a {
  color: var(--text-white-muted);
  font-size: 0.78rem;
}

.top-bar-item a:hover {
  color: var(--gold-light);
}

.top-bar-hide-mobile {
  display: none;
}

.top-bar-link {
  color: var(--text-white-muted);
  font-size: 0.78rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.top-bar-link:hover {
  color: var(--gold-light);
}

.top-admin-link {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold-light);
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

/* -------------------------------------------
   NAVBAR (Mobile-First)
   ------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 31, 63, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 31, 63, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

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

.brand-logo svg {
  width: 40px;
  height: 40px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  line-height: 1.1;
  color: var(--white);
}

.brand-sub {
  font-size: 0.6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Hamburger Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Links - Slide-in from right */
.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  height: 100dvh;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 32px;
  gap: 0;
  transition: right var(--transition);
  z-index: 999;
  overflow-y: auto;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
  list-style: none;
}

.nav-links.open {
  right: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  min-height: 44px;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-links a.nav-active {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
  font-weight: 600;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  margin-top: 12px;
  text-align: center;
  justify-content: center;
  border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

/* -------------------------------------------
   HERO SECTION
   ------------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--gold);
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 250px;
  height: 250px;
  bottom: -50px;
  left: -50px;
  animation: heroFloat 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  left: 60%;
  animation: heroFloat 6s ease-in-out infinite 2s;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.02) 60px,
    rgba(255, 255, 255, 0.02) 61px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 168, 67, 0.25);
}

.hero-title {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-white-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-league {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-white-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-league-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* -------------------------------------------
   STATS SECTION
   ------------------------------------------- */
.stats-section {
  background: var(--navy-dark);
  padding: 40px 0;
  border-bottom: 3px solid var(--gold);
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-number {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.stat-detail {
  display: block;
  font-size: 0.7rem;
  color: var(--text-white-muted);
  margin-top: 2px;
}

/* -------------------------------------------
   SECTION STYLES
   ------------------------------------------- */
.section {
  padding: var(--section-pad-mobile);
}

.section.bg-light {
  background: var(--gray-50);
}

.section.bg-dark {
  background: var(--navy-dark);
  color: var(--white);
}

.section.bg-dark h2,
.section.bg-dark h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 2px;
}

.section-divider-left {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0;
}

.section-header-light {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-light h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.section-header-light .section-tag {
  color: var(--gold-light);
}

/* -------------------------------------------
   MISSION BLOCK (Home)
   ------------------------------------------- */
.mission-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.mission-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.mission-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-body);
  border: none;
  padding: 0;
  margin: 0;
}

/* -------------------------------------------
   ANNOUNCEMENTS GRID
   ------------------------------------------- */
.announcements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.announcement-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.announcement-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.announcement-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.announcement-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

.announcement-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.pin-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* -------------------------------------------
   FEATURES GRID
   ------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy);
}

.feature-accent.accent-gold {
  background: var(--gold);
}

.feature-accent.accent-red {
  background: var(--red);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(26, 58, 92, 0.06);
  border-radius: var(--radius-lg);
  color: var(--navy);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* -------------------------------------------
   VOLUNTEER CARD
   ------------------------------------------- */
.volunteer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  text-align: center;
}

.volunteer-icon {
  color: var(--red);
  flex-shrink: 0;
}

.volunteer-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.volunteer-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* -------------------------------------------
   CTA SECTION
   ------------------------------------------- */
.cta-section {
  position: relative;
  background: var(--navy-dark);
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-stripe {
  position: absolute;
  background: rgba(212, 168, 67, 0.06);
  transform: skewY(-6deg);
}

.cta-stripe-1 {
  width: 100%;
  height: 120px;
  top: -40px;
  left: 0;
}

.cta-stripe-2 {
  width: 100%;
  height: 80px;
  bottom: -20px;
  right: 0;
  background: rgba(200, 57, 43, 0.05);
}

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

.cta-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 1rem;
  color: var(--text-white-muted);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* -------------------------------------------
   PAGE HERO (About, Calendar, Contact, etc.)
   ------------------------------------------- */
.page-hero {
  position: relative;
  padding: 100px 0 50px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(42, 90, 140, 0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(212, 168, 67, 0.08) 0%, transparent 50%);
}

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

.page-hero-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.page-hero-content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: 1rem;
  color: var(--text-white-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* -------------------------------------------
   ABOUT PAGE
   ------------------------------------------- */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.col-text .section-tag {
  display: inline-block;
  margin-bottom: 8px;
}

.col-text h2 {
  margin-bottom: 12px;
}

.col-text .body-text {
  margin-bottom: 20px;
}

.col-side {
  /* Sidebar column */
}

.inline-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(212, 168, 67, 0.08);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 20px;
}

.inline-highlight svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.inline-highlight p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
}

/* Side Card */
.side-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.side-card-header {
  background: var(--navy-dark);
  color: var(--white);
  padding: 16px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Quick Facts DL */
.quick-facts {
  padding: 4px 0;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--gray-100);
}

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

.fact-row dt {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.fact-row dd {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
}

/* Achievement Badge */
.achievement-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(212, 168, 67, 0.08);
  border-top: 2px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}

.achievement-badge svg {
  flex-shrink: 0;
}

/* Mission Quote (About page, dark bg) */
.mission-quote {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text-white-muted);
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 0;
  border: none;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: transform var(--transition), background var(--transition);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50%;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Coaches Grid */
.coaches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.coach-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.coach-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--navy-dark);
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid var(--gold);
}

.coach-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.coach-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.coach-bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* -------------------------------------------
   CALENDAR PAGE
   ------------------------------------------- */
.info-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.info-banner p {
  color: var(--text-body);
}

.info-banner strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.info-banner.info-highlight {
  background: rgba(212, 168, 67, 0.08);
  border-color: var(--gold);
}

.info-banner.info-highlight .info-banner-icon {
  color: var(--gold);
}

.info-banner.info-success {
  background: rgba(5, 150, 105, 0.06);
  border-color: #059669;
}

.info-banner.info-success .info-banner-icon {
  color: #059669;
}

.info-banner-icon {
  flex-shrink: 0;
  color: var(--navy-light);
  margin-top: 2px;
}

/* Calendar Filters */
.calendar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 10px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 44px;
}

.filter-btn:hover {
  border-color: var(--navy-light);
  color: var(--navy);
}

.filter-btn.active {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

/* Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.event-card.hidden {
  display: none;
}

/* Event Date Block */
.event-date-block {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}

.type-bg-practice {
  background: var(--navy);
}

.type-bg-game {
  background: var(--red);
}

.type-bg-event {
  background: var(--gold);
  color: var(--navy-dark);
}

.type-bg-registration {
  background: #059669;
}

.event-month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-day {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.event-year {
  font-size: 0.65rem;
  opacity: 0.8;
}

/* Event Details */
.event-details {
  padding: 16px 20px;
  flex: 1;
}

.event-top-row {
  margin-bottom: 6px;
}

.event-type-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
}

.type-practice {
  background: rgba(26, 58, 92, 0.1);
  color: var(--navy);
}

.type-game {
  background: rgba(200, 57, 43, 0.1);
  color: var(--red);
}

.type-event {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.type-registration {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.event-details h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.event-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.event-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.event-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-top: 6px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.empty-state svg {
  margin: 0 auto 16px;
  opacity: 0.4;
}

.empty-state h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* -------------------------------------------
   CONTACT PAGE
   ------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-info-panel h2,
.board-panel h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(26, 58, 92, 0.06);
  border-radius: var(--radius-md);
  color: var(--navy);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-item a {
  font-size: 0.9rem;
  color: var(--navy-light);
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-addresses {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

/* Board Members */
.board-panel {
  /* Container for board members */
}

.board-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.board-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition-fast);
}

.board-card:hover {
  transform: translateX(4px);
}

.board-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--navy-dark);
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.board-info {
  flex: 1;
  min-width: 0;
}

.board-info h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.board-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.board-email {
  margin-top: 4px;
}

.board-email a {
  font-size: 0.82rem;
  color: var(--navy-light);
}

.board-email a:hover {
  color: var(--gold);
}

/* -------------------------------------------
   REGISTRATION PAGE
   ------------------------------------------- */
.registration-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.reg-main h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.reg-main .body-text {
  margin-bottom: 24px;
}

.reg-requirements {
  margin-bottom: 28px;
}

.reg-requirements h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--navy-dark);
}

.reg-cta {
  margin-top: 24px;
}

.reg-sidebar {
  /* Sidebar container */
}

.reg-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  margin-bottom: 20px;
}

.reg-info-card h3 {
  padding: 16px 20px;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Info List (DL in registration) */
.info-list {
  padding: 4px 0;
}

.info-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--gray-100);
}

.info-list-item:last-child {
  border-bottom: none;
}

.info-list-item dt {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.info-list-item dd {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
}

/* Status Badge */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
}

.status-open {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.status-closed {
  background: rgba(200, 57, 43, 0.1);
  color: var(--red);
}

.reg-contact-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--gray-100);
  text-align: center;
}

.reg-contact-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.reg-contact-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* -------------------------------------------
   SPONSORS PAGE
   ------------------------------------------- */
.sponsors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.sponsor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sponsor-logo {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.sponsor-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(26, 58, 92, 0.06);
  border-radius: var(--radius-md);
  margin: 0 auto 14px;
}

.sponsor-placeholder span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--navy);
}

.sponsor-card h4 {
  font-size: 0.95rem;
  color: var(--navy-dark);
}

/* -------------------------------------------
   FOOTER
   ------------------------------------------- */
.footer {
  background: var(--navy-dark);
  color: var(--text-white-muted);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.footer-wave {
  position: relative;
  margin-top: -2px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 0 32px;
}

.footer-col h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-col ul li a:hover {
  color: var(--gold-light);
}

/* Footer Brand Column */
.footer-brand-col {
  /* Brand column in footer */
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-white-muted);
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--text-white-muted);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.footer-hudl-link {
  display: inline-flex !important;
  width: auto !important;
  padding: 0 12px !important;
  border-radius: var(--radius-full) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  height: 36px;
}

/* Footer Contact List */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.footer-contact-list li a {
  color: var(--text-white-muted);
}

.footer-contact-list li a:hover {
  color: var(--gold-light);
}

.footer-contact-list li svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* Footer League */
.footer-league {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-league span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white-muted);
  margin-bottom: 2px;
}

.footer-league strong {
  color: var(--gold);
  font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.8rem;
}

.footer-usaf {
  margin-top: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* -------------------------------------------
   ADMIN LAYOUT
   ------------------------------------------- */
.admin-layout {
  display: flex;
  min-height: calc(100vh - 64px);
}

.admin-sidebar {
  display: none;
  width: 240px;
  background: var(--navy-dark);
  padding: 24px 0;
  flex-shrink: 0;
  overflow-y: auto;
}

.admin-sidebar.open {
  display: block;
  position: fixed;
  top: 64px;
  left: 0;
  bottom: 0;
  z-index: 900;
  width: 260px;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.admin-sidebar h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-white-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 20px 8px;
}

.admin-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy-dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-right: 12px;
}

/* Admin Nav */
.admin-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.admin-nav-section {
  padding: 12px 20px 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-white-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.admin-nav li {
  list-style: none;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  text-decoration: none;
  min-height: 44px;
}

.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.admin-nav a.active {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
  font-weight: 600;
  border-left: 3px solid var(--gold);
}

/* Admin Main */
.admin-main {
  flex: 1;
  min-width: 0;
  padding: 24px 16px;
  background: var(--gray-50);
}

.admin-header {
  margin-bottom: 28px;
}

.admin-header h1 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.admin-header p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.admin-content {
  /* Wrapper for admin page content */
}

/* Admin Card */
.admin-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  margin-bottom: 24px;
}

.admin-card h2 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.admin-card-header {
  padding: 16px 24px;
  background: var(--navy-dark);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -24px -24px 24px;
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Dash Card (used in actual template) */
.dash-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.dash-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.dash-card h3 {
  font-size: 1.05rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.dash-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
}

.dash-card a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-light);
}

.dash-card a:hover {
  color: var(--gold);
}

/* Dashboard Stat (from spec) */
.dashboard-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.dashboard-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(26, 58, 92, 0.06);
  border-radius: var(--radius-md);
  color: var(--navy);
  flex-shrink: 0;
}

.dashboard-stat-info {
  flex: 1;
}

.dashboard-stat-info h4 {
  font-size: 1.4rem;
  color: var(--navy-dark);
  line-height: 1.1;
}

.dashboard-stat-info p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* -------------------------------------------
   ADMIN FORMS
   ------------------------------------------- */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="url"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group input[type="tel"],
.form-group input[type="file"],
.form-group textarea,
.form-group select {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
}

.form-control:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(42, 90, 140, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: var(--red);
  margin-top: 4px;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy-dark);
  cursor: pointer;
}

.form-check label {
  display: inline;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 0;
  cursor: pointer;
}

/* -------------------------------------------
   ADMIN REPEATER
   ------------------------------------------- */
.admin-repeater {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.repeater-item,
.repeater-block {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px;
  position: relative;
  margin-bottom: 16px;
}

.repeater-add,
.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-light);
  background: rgba(42, 90, 140, 0.06);
  border: 1px dashed var(--navy-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 44px;
  margin-bottom: 16px;
}

.repeater-add:hover,
.add-btn:hover {
  background: rgba(42, 90, 140, 0.12);
  border-style: solid;
}

.repeater-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 57, 43, 0.08);
  color: var(--red);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background var(--transition-fast);
}

.repeater-remove:hover {
  background: rgba(200, 57, 43, 0.15);
}

/* -------------------------------------------
   LOGIN PAGE
   ------------------------------------------- */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px);
  padding: 40px 16px;
  background: var(--gray-50);
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.login-card h1 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 6px;
}

.login-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.login-card .btn {
  width: 100%;
  margin-top: 8px;
}

/* -------------------------------------------
   ITEM LIST (Admin)
   ------------------------------------------- */
.item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.item-list li,
.item-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.item-list li:last-child {
  border-bottom: none;
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-info h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.item-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.item-actions,
.item-list-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ===========================================
   TABLET BREAKPOINT (min-width: 768px)
   =========================================== */
@media (min-width: 768px) {
  /* Container */
  .container {
    padding: 0 24px;
  }

  /* Typography */
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.35rem; }

  /* Top Bar */
  .top-bar {
    display: block;
  }

  .top-bar-hide-mobile {
    display: inline-flex;
  }

  /* Navbar */
  .nav-container {
    height: 72px;
  }

  .brand-logo svg {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .brand-sub {
    font-size: 0.65rem;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
    padding: 100px 0 80px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  /* Stats */
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Sections */
  .section {
    padding: var(--section-pad-tablet);
  }

  .section-header {
    margin-bottom: 48px;
  }

  /* Announcements */
  .announcements-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Volunteer */
  .volunteer-card {
    flex-direction: row;
    text-align: left;
    padding: 36px 32px;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 2.8rem;
  }

  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  /* Page Hero */
  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero-content h1 {
    font-size: 3rem;
  }

  /* About */
  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .coaches-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* Calendar - Horizontal event cards */
  .event-card {
    flex-direction: row;
  }

  .event-date-block {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 16px;
    gap: 2px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Registration */
  .registration-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Sponsors */
  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer-wave svg {
    height: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 48px 0 36px;
  }

  /* Admin */
  .admin-main {
    padding: 32px 24px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===========================================
   DESKTOP BREAKPOINT (min-width: 1024px)
   =========================================== */
@media (min-width: 1024px) {
  /* Container */
  .container {
    padding: 0 32px;
  }

  /* Typography */
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }

  /* Navbar Desktop */
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    gap: 4px;
    box-shadow: none;
    overflow: visible;
    display: flex;
    align-items: center;
  }

  .nav-links a {
    padding: 8px 14px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    min-height: auto;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav-links a.nav-active {
    background: rgba(212, 168, 67, 0.12);
    color: var(--gold);
  }

  .nav-cta {
    margin-top: 0 !important;
    margin-left: 4px;
    padding: 8px 18px !important;
  }

  /* Hero */
  .hero {
    min-height: 92vh;
  }

  .hero-title {
    font-size: 5rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  /* Sections */
  .section {
    padding: var(--section-pad-desktop);
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  /* About */
  .two-col-layout {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .coaches-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mission-quote {
    font-size: 1.35rem;
  }

  /* Page Hero */
  .page-hero-content h1 {
    font-size: 3.5rem;
  }

  /* Registration */
  .registration-content {
    grid-template-columns: 1.4fr 0.6fr;
  }

  /* Sponsors */
  .sponsors-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* Footer */
  .footer-wave svg {
    height: 80px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 0 40px;
  }

  /* Admin Desktop */
  .admin-sidebar {
    display: block;
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
  }

  .admin-sidebar.open {
    position: sticky;
    box-shadow: none;
  }

  .admin-toggle {
    display: none;
  }

  .admin-main {
    padding: 40px 48px;
  }

  .dashboard-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================================
   WIDE BREAKPOINT (min-width: 1400px)
   =========================================== */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-title {
    font-size: 5.5rem;
  }

  .cta-content h2 {
    font-size: 3.2rem;
  }
}

/* ===========================================
   PRINT STYLES
   =========================================== */
@media print {
  .top-bar,
  .navbar,
  .nav-toggle,
  .footer,
  .cta-section,
  .hero-bg,
  .flash {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
    background: none;
  }

  .hero-title,
  .hero-subtitle {
    color: #000;
  }

  .section {
    padding: 20px 0;
  }
}

/* ===========================================
   REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-shape {
    animation: none;
  }
}

/* ===========================================
   FOCUS VISIBLE (Accessibility)
   =========================================== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===========================================
   SELECTION
   =========================================== */
::selection {
  background: rgba(212, 168, 67, 0.25);
  color: var(--navy-dark);
}

/* ===========================================
   SCROLLBAR (Webkit)
   =========================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-50);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}
