/*
Theme Name: Paarl Action Sports Arena
Theme URI: https://paarlarena.co.za
Author: Paarl Arena
Author URI: https://paarlarena.co.za
Description: Custom theme for Paarl Action Sports Arena
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paarl-arena
*/

/* === Paarl Action Sports Arena — Restyled CSS === */
/* Brand: Action Sports Red, Electric Blue, Deep Green, Dark Navy */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@400;600;700;800&display=swap');

/* ─── Variables ─── */
:root {
  /* Primary Brand */
  --red: #E23A34;
  --red-dark: #c52f2a;
  --red-light: #ffeaea;
  --red-highlight: #FF4A3F;

  /* Secondary */
  --blue: #2EA3F2;
  --blue-dark: #1A8AD8;
  --blue-highlight: #5BB9FF;

  /* Accent */
  --green: #0B7A3B;
  --green-highlight: #1AA84F;
  --green-light: #e6f5ec;

  /* Neutrals */
  --dark: #0F172A;
  --dark-surface: #1F2A36;
  --dark-gray: #2c3545;
  --steel-bg: #E9ECEF;
  --mid-gray: #C9CDD2;
  --gray-600: #555;
  --gray-400: #999;
  --gray-200: #e0e3e7;
  --gray-100: #F3F4F6;
  --white: #ffffff;

  /* Text */
  --text: #1F2A36;
  --text-light: #5a6270;

  /* Layout */
  --max-width: 1140px;
  --nav-height: 72px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-surface);
}
h1 { font-size: 2.8rem; letter-spacing: -0.5px; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 6px; }
p { margin-bottom: 16px; }

/* ─── Layout ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }

/* ─── Activity Court Photo ─── */
.activity-photo {
  margin-bottom: 32px;
}
.activity-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Diagonal texture background (light steel pattern) */
.section-gray,
.section-alt {
  background:
    repeating-linear-gradient(
      -45deg,
      #f3f4f6,
      #f3f4f6 6px,
      #e9ecef 6px,
      #e9ecef 12px
    );
}
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: var(--gray-400); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Accent line — Red / Blue / Green gradient divider */
.section-header .accent-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E23A34, #2EA3F2, #0B7A3B);
  margin: 10px auto 14px;
  border-radius: 4px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 58, 52, 0.3);
}
.btn-secondary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-secondary:hover {
  background: var(--dark-gray);
  border-color: var(--dark-gray);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-highlight);
  border-color: var(--green-highlight);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--dark);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #E23A34, #2EA3F2, #0B7A3B) 1;
  z-index: 1000;
  transition: all var(--transition);
}
.navbar.scrolled {
  height: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img {
  height: 56px;
  width: auto;
  transition: height var(--transition);
}
.navbar.scrolled .nav-logo img { height: 44px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.8);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(226, 58, 52, 0.2);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--dark-surface);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  padding: 6px 0;
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-dropdown a:hover {
  background: rgba(226, 58, 52, 0.15);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 1px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(165deg,
      rgba(9,18,40,0.78) 0%,
      rgba(20,30,60,0.75) 50%,
      rgba(5,10,25,0.80) 100%
    ),
    url('images/PaarlArenaHomePageEntranceBanner.jpg') center/cover no-repeat;
  padding: 120px 24px 80px;
  overflow: hidden;
}
/* Diagonal corner stripes */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 250px;
  background:
    linear-gradient(135deg,
      transparent 40%,
      #E23A34 40%,
      #E23A34 50%,
      #2EA3F2 50%,
      #2EA3F2 60%,
      #0B7A3B 60%,
      #0B7A3B 70%,
      transparent 70%);
  pointer-events: none;
  opacity: 0.7;
}
.hero > .container { position: relative; z-index: 1; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border-radius: 16px; padding: 40px 48px; }
.hero h1 {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 700px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gradient text for hero h1 span (WP template) */
.hero h1 span {
  background: linear-gradient(90deg, var(--red-highlight), var(--blue-highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 32px;
  opacity: 0.92;
  line-height: 1.7;
}

.hero .btn-group { justify-content: center; position: relative; z-index: 1; }

/* Hero bottom stripe bar (WP template) */
.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--green));
  z-index: 2;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 140px 24px 64px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(165deg,
      rgba(9,18,40,0.6) 0%,
      rgba(20,30,60,0.55) 50%,
      rgba(5,10,25,0.65) 100%
    ),
    url('images/sectionsbackgroundsports.jpg') center/cover no-repeat;
  overflow: hidden;
}
/* Page hero stripe accent */
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 180px;
  background:
    linear-gradient(135deg,
      transparent 40%,
      #E23A34 40%,
      #E23A34 50%,
      #2EA3F2 50%,
      #2EA3F2 60%,
      #0B7A3B 60%,
      #0B7A3B 70%,
      transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}
.page-hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

/* ─── Card Grid ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--dark), var(--dark-surface));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: var(--red);
  overflow: hidden;
  position: relative;
}
/* Subtle diagonal stripe on card images */
.card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 80px;
  background:
    linear-gradient(135deg,
      transparent 35%,
      rgba(226,58,52,0.3) 35%,
      rgba(226,58,52,0.3) 50%,
      rgba(46,163,242,0.3) 50%,
      rgba(46,163,242,0.3) 65%,
      rgba(11,122,59,0.3) 65%,
      rgba(11,122,59,0.3) 80%,
      transparent 80%);
  pointer-events: none;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-image img[src$=".svg"] {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.card-body {
  padding: 22px;
}
.card-body h3 { margin-bottom: 8px; font-size: 1.2rem; }
.card-body p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.card-body .btn {
  padding: 8px 20px;
  font-size: 13px;
}

/* ─── Feature Grid ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-item {
  text-align: center;
  padding: 28px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--red);
}
.feature-icon img {
  filter: brightness(0) invert(1);
}
.feature-item h4 { margin-bottom: 6px; font-size: 1rem; }
.feature-item p { font-size: 13px; color: var(--text-light); margin-bottom: 0; line-height: 1.5; }

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  text-align: center;
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}
/* CTA diagonal stripe accent */
.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background:
    linear-gradient(135deg,
      rgba(46,163,242,0.2) 0%,
      transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 8px; }
.cta-section p { opacity: 0.92; margin-bottom: 24px; }
.cta-section .btn-primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.cta-section .btn-primary:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  color: var(--red-dark);
  box-shadow: none;
}
.cta-section .btn-secondary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.cta-section .btn-secondary:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
}
.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

/* ─── Events ─── */
.events-list { max-width: 720px; margin: 0 auto; }
.event-item {
  display: flex;
  gap: 18px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  align-items: center;
  transition: all var(--transition);
}
.event-item:hover { box-shadow: var(--shadow); border-color: transparent; }
.event-date {
  text-align: center;
  min-width: 64px;
  padding: 10px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
}
.event-date .day { font-size: 20px; font-weight: 700; display: block; }
.event-date .month { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.event-info h4 { margin-bottom: 2px; }
.event-info p { font-size: 13px; color: var(--text-light); margin-bottom: 0; }

/* ─── Sport Page Layout ─── */
.sport-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.sport-sidebar {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  color: rgba(255,255,255,0.8);
}
.sport-sidebar h3 {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #E23A34, #2EA3F2, #0B7A3B) 1;
  font-size: 1.1rem;
  color: var(--white);
}
.sport-sidebar ul { margin-bottom: 18px; }
.sport-sidebar li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.sport-sidebar li:last-child { border-bottom: none; }
.sport-sidebar p { color: rgba(255,255,255,0.7); }
.sport-sidebar .btn-primary {
  background: var(--red);
  border-color: var(--red);
}
.sport-sidebar .btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.sport-sidebar .btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* ─── Pricing ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  padding: 3px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
.pricing-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.pricing-card h3 { color: var(--red); font-size: 1.2rem; }
.price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark-surface);
  margin: 10px 0;
}
.price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }
.pricing-card ul { margin: 18px 0; text-align: left; }
.pricing-card li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--text-light);
}
.pricing-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--red);
  flex-shrink: 0;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  transition: all var(--transition);
  background: var(--white);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.map-embed {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--gray-200);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(15,23,42,0.25); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ─── Gravity Forms Overrides ─── */
.gform_wrapper .gform_body .gform_fields .gfield input,
.gform_wrapper .gform_body .gform_fields .gfield select,
.gform_wrapper .gform_body .gform_fields .gfield textarea {
  border: 1.5px solid var(--gray-200) !important;
  border-radius: var(--radius-sm) !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 14px !important;
  padding: 10px 14px !important;
}
.gform_wrapper .gform_body .gform_fields .gfield input:focus,
.gform_wrapper .gform_body .gform_fields .gfield select:focus,
.gform_wrapper .gform_body .gform_fields .gfield textarea:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.15) !important;
}
.gform_wrapper .gform_footer input[type="submit"] {
  background: var(--red) !important;
  color: var(--white) !important;
  border: 2px solid var(--red) !important;
  border-radius: 12px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 14px 26px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
}
.gform_wrapper .gform_footer input[type="submit"]:hover {
  background: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
  transform: translateY(-2px) !important;
}
.sport-sidebar .gform_wrapper .gfield_label,
.sport-sidebar .gform_wrapper .gfield_required,
.sport-sidebar .gform_wrapper .ginput_complex label {
  color: #fff !important;
}
.sport-sidebar .gform_wrapper .gform_fields .gfield select {
  color: #1a1a2e !important;
  height: auto !important;
  line-height: normal !important;
  vertical-align: middle !important;
}

/* ─── Footer ─── */
.footer {
  background: var(--dark);
  color: #bbb;
  padding: 56px 0 20px;
  position: relative;
}
/* Footer top stripe */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E23A34, #2EA3F2, #0B7A3B);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--red);
}
.footer p { font-size: 13px; color: #999; margin-bottom: 6px; }
.footer a { color: #999; font-size: 13px; }
.footer a:hover { color: var(--red-highlight); }
.footer ul li { margin-bottom: 6px; }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: #666;
}
.social-links {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.social-links a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--red);
  color: var(--white);
}
.sister-arenas {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.sister-arenas a {
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  font-size: 12px;
}
.sister-arenas a:hover {
  background: var(--red);
  color: var(--white);
}

/* ─── Responsive ─── */
@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero::after { width: 280px; height: 180px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .sport-content { grid-template-columns: 1fr; }
  .sport-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 16px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-link { padding: 12px 14px; font-size: 15px; }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    display: none;
  }
  .nav-item.dropdown-open .nav-dropdown { display: block; }

  .hero { min-height: 75vh; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 1rem; }
  .hero::after { width: 200px; height: 130px; }
  .page-hero { padding: 110px 24px 48px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero::after { width: 180px; height: 120px; }

  .section { padding: 48px 0; }
  .card-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .btn-group { flex-direction: column; align-items: stretch; text-align: center; }
  .event-item { flex-direction: column; text-align: center; }
  .section-header { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .hero::after { width: 140px; height: 90px; }
  .page-hero::after { width: 120px; height: 80px; }
  .nav-logo img { height: 44px; }
}
