/* ========================================
   Senna Racing #22 — Stylesheet
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Custom Properties --- */
:root {
  --racing-blue: #0A1628;
  --racing-blue-mid: #1B3A5C;
  --racing-blue-light: #2E5A88;
  --racing-orange: #FF6B00;
  --racing-orange-dark: #E05E00;
  --racing-orange-light: #FF8C33;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F7;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --text-light: #FFFFFF;
  --text-dark: #1A1A2E;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1200px;
  --section-py: 5rem;
  --section-py-mobile: 3rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

.section-title-light {
  color: var(--white);
}

.section-subtitle-light {
  color: var(--gray-300);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-orange {
  background: var(--racing-orange);
  color: var(--white);
  border-color: var(--racing-orange);
}

.btn-orange:hover {
  background: var(--racing-orange-dark);
  border-color: var(--racing-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

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

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

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

.btn-outline-dark:hover {
  background: var(--racing-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-logo span {
  color: var(--racing-orange);
}

.nav-logo .nav-number {
  font-size: 0.85rem;
  background: var(--racing-orange);
  color: var(--white);
  padding: 0.1rem 0.45rem;
  border-radius: 3px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--racing-orange);
}

.nav-cta {
  font-family: var(--font-heading) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--racing-orange);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s !important;
}

.nav-cta:hover {
  background: var(--racing-orange-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Nav right (lang toggle + hamburger) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language toggle */
.lang-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  transition: border-color 0.3s;
}

.lang-toggle:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.lang-option {
  transition: color 0.2s;
}

.lang-option.active {
  color: var(--racing-orange);
  font-weight: 700;
}

.lang-sep {
  margin: 0 0.15rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--racing-blue);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 20, 40, 0.55);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
}

.hero-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--racing-orange);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--racing-orange);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-tagline .divider {
  margin: 0 0.6rem;
  color: var(--racing-orange);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   SECTIONS — General
   ======================================== */
.section {
  padding: var(--section-py) 0;
}

.section-dark {
  background: var(--racing-blue);
  color: var(--white);
}

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

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--racing-orange);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

/* ========================================
   OVER SENNA (About)
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.stats-card {
  background: var(--racing-blue);
  border-radius: 8px;
  padding: 2rem;
  color: var(--white);
  border-left: 4px solid var(--racing-orange);
}

.stats-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--racing-orange);
}

.stat-item {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.stat-value {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

/* ========================================
   SEIZOEN 2026
   ======================================== */
.season-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.season-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  border-top: 3px solid var(--racing-orange);
  transition: transform 0.3s, border-color 0.3s;
}

.season-card:hover {
  transform: translateY(-3px);
  border-top-color: var(--racing-orange-light);
}

.season-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.season-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.season-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ========================================
   RACEKALENDER
   ======================================== */

/* Countdown (inline) */
.countdown-inline {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.countdown-text {
  font-size: 0.95rem;
  font-style: italic;
}

.countdown-time {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--racing-orange);
  letter-spacing: 0.03em;
}

.countdown-details {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.3rem;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* --- Sponsor Bar --- */
.sponsor-bar {
  background: var(--gray-100);
  padding: 1.25rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: sticky;
  top: 56px;
  z-index: 999;
  border-bottom: 1px solid var(--gray-300);
}

.sponsor-bar::-webkit-scrollbar {
  display: none;
}

.sponsor-bar-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  padding: 0 2rem;
  min-width: min-content;
}

.sponsor-bar-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  text-decoration: none;
}

.sponsor-bar-item img {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter 0.3s, opacity 0.3s;
}

.sponsor-bar-item:hover img {
  filter: none;
  opacity: 1;
}

.sponsor-bar-dark {
  background: var(--racing-blue-mid);
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
}

.sponsor-bar-dark img {
  filter: none;
  opacity: 0.85;
}

.sponsor-bar-dark:hover img {
  opacity: 1;
}

.sponsor-bar-zoom {
  overflow: hidden;
}

.sponsor-bar-zoom img {
  transform: scale(2.2);
  object-fit: cover;
}

/* Verberg duplicaten op desktop */
.sponsor-bar-dupe {
  display: none;
}

@keyframes sponsor-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.calendar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.race-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.race-item:hover {
  transform: translateX(4px);
  border-color: var(--racing-orange);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.race-item::after {
  content: '\2197';
  font-size: 0.85rem;
  color: var(--gray-300);
  transition: color 0.3s;
  flex-shrink: 0;
}

.race-item:hover::after {
  color: var(--racing-orange);
}

.race-item.past {
  opacity: 0.4;
}

.race-item.past:hover {
  opacity: 0.6;
}

.race-item.next {
  border-color: var(--racing-orange);
  border-width: 2px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.04) 0%, rgba(255, 107, 0, 0.08) 100%);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.12);
}

.race-date {
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}

.race-date .day {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--racing-orange);
  line-height: 1;
}

.race-date .month {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-top: 0.2rem;
}

.race-info {
  flex: 1;
}

.race-info h3 {
  font-size: 1.1rem;
  color: var(--racing-blue);
  margin-bottom: 0.2rem;
}

.race-info p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.race-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  flex-shrink: 0;
}

.race-badge.upcoming {
  background: var(--gray-100);
  color: var(--gray-500);
}

.race-badge.next-race {
  background: var(--racing-orange);
  color: var(--white);
}

.race-badge.done {
  background: var(--gray-100);
  color: var(--gray-500);
}

/* ========================================
   PRESTATIES (Achievements)
   ======================================== */
.achievement-main {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  border-left: 5px solid var(--racing-orange);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
}

.achievement-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--racing-orange);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.achievement-main h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--racing-blue);
}

.achievement-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.achievement-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-300);
}

.achievement-detail {
  display: flex;
  flex-direction: column;
}

.achievement-detail .label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.achievement-detail .value {
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 0.2rem;
}

/* ========================================
   GALERIJ (Photo Gallery)
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 0.5rem;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-portrait {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-hidden {
  display: none;
}

.gallery-grid.gallery-expanded .gallery-hidden {
  display: block;
}

.gallery-toggle {
  display: block;
  margin: 2rem auto 0;
}

.gallery-toggle.is-hidden {
  display: none;
}

/* ========================================
   SPONSORS
   ======================================== */
.sponsors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.sponsor-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--gray-300);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sponsor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.sponsor-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.sponsor-logo img {
  max-height: 80px;
  max-width: 180px;
  object-fit: contain;
}

.sponsor-logo-dark {
  background: var(--racing-blue);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  height: auto;
}

.sponsor-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  min-height: 80px;
}

.sponsor-card h3 {
  font-size: 1.4rem;
  color: var(--racing-blue);
  margin-bottom: 0.5rem;
}

.sponsor-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* Word Sponsor CTA Block */
.sponsor-cta {
  background: linear-gradient(135deg, var(--racing-orange) 0%, var(--racing-orange-dark) 100%);
  border-radius: 12px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--white);
}

.sponsor-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.sponsor-cta > p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.sponsor-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.sponsor-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.sponsor-benefit svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.sponsor-cta .btn {
  background: var(--white);
  color: var(--racing-orange);
  border-color: var(--white);
  font-size: 1.05rem;
}

.sponsor-cta .btn:hover {
  background: var(--racing-blue);
  color: var(--white);
  border-color: var(--racing-blue);
}

/* ========================================
   CLUB VAN 100
   ======================================== */
.club-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.club-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.progress-bar-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  height: 24px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--racing-orange), var(--racing-orange-light));
  border-radius: 50px;
  width: 22.5%;
  transition: width 1s ease;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.progress-text strong {
  color: var(--racing-orange);
}

.club-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.club-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.club-perk svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--racing-orange);
}

/* Donateurs Ticker */
.donors-section {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.donors-section h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 1.25rem;
}

.donors-ticker {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.donors-track {
  display: flex;
  gap: 1rem;
  animation: ticker-scroll 60s linear infinite;
  width: max-content;
}

.donors-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.donor-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 0.5rem 1.25rem 0.5rem 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.donor-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--racing-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.donor-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.donor-name {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.donor-amount {
  color: var(--racing-orange);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--racing-blue);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--racing-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--racing-orange);
}

.contact-item-text .contact-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-item-text a {
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}

.contact-item-text a:hover {
  color: var(--racing-orange);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--racing-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.social-link:hover {
  background: var(--racing-orange);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-300);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--racing-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

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

.contact-form .btn {
  width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--racing-blue);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: var(--racing-orange);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--racing-orange);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--racing-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: var(--racing-orange);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Small (640px) */
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsor-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .club-perks {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium (768px) */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .section-title {
    font-size: 3rem;
  }
}

/* Large (1024px) */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .sponsor-cta {
    padding: 4rem 3rem;
  }
}

/* Mobile nav */
@media (max-width: 1023px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--racing-blue);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.2rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }

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

  .nav-links a {
    font-size: 1.05rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-cta {
    text-align: center;
    margin-top: 1rem;
    border-bottom: none !important;
  }
}

/* Mobile overrides */
@media (max-width: 639px) {
  :root {
    --section-py: 3rem;
  }

  .section {
    padding: var(--section-py-mobile) 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero {
    min-height: calc(100vh - 100px);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .hero-tagline .divider {
    display: none;
  }

  .hero-tagline {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .achievement-main {
    padding: 1.5rem;
  }

  .achievement-main h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }

  .achievement-desc {
    font-size: 0.85rem;
  }

  .achievement-details {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    gap: 1rem;
  }

  .sponsor-cta {
    padding: 2.5rem 1.5rem;
  }

  .sponsor-cta h2 {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .race-item {
    gap: 0.75rem;
    padding: 1rem;
  }

  .race-date {
    min-width: 44px;
  }

  .race-date .day {
    font-size: 1.4rem;
  }

  .race-date .month {
    font-size: 0.7rem;
  }

  .race-info h3 {
    font-size: 0.95rem;
  }

  .race-info p {
    font-size: 0.8rem;
  }

  .race-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.45rem;
  }

  .race-item::after {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
  }

  .gallery-portrait {
    grid-row: span 2;
  }

  .sponsor-bar {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  }

  .sponsor-bar-dupe {
    display: flex;
  }

  .sponsor-bar-track {
    justify-content: flex-start;
    gap: 2.5rem;
    padding: 0 1rem;
    animation: sponsor-marquee 35s linear infinite;
    width: max-content;
  }

  .sponsor-bar-track:hover {
    animation-play-state: paused;
  }

  .sponsor-bar-item img {
    height: 30px;
    max-width: 90px;
  }
}
