/* Slough Jets Theme Styles */

    :root {
      --jets-red: #C8102E;
      --jets-red-dark: #a00d24;
      --jets-navy: #1A3A8F;
      --jets-navy-dark: #0D1F5C;
      --jets-dark: #09122a;
      --jets-white: #ffffff;
      --jets-light: #f4f6fb;
    }

    * { box-sizing: border-box; }
    body { font-family: 'Montserrat', sans-serif; font-weight: 400; text-transform: uppercase; background: #fff; color: #222; }

    /* ── NAVBAR ── */
    .navbar {
      background: #ffffff;
      padding: 0;
      border-bottom: 3px solid var(--jets-red);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
    }
    .navbar-brand img.jets-text-logo {
      height: 44px;
      width: auto;
    }
    .navbar-brand .brand-sub {
      font-family: prohibition, sans-serif;
      color: var(--jets-navy-dark);
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      line-height: 1.2;
    }
    .navbar-brand .brand-sub span {
      display: block;
      color: var(--jets-navy);
      font-size: 0.6rem;
      letter-spacing: 4px;
    }
    .navbar-toggler { border-color: rgba(0,0,0,0.3); }
    .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
    .navbar-nav .nav-link {
      font-family: prohibition, sans-serif;
      font-size: 0.9rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--jets-red) !important;
      padding: 1.4rem 1rem !important;
      border-bottom: 3px solid transparent;
      transition: all 0.2s;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--jets-red-dark) !important;
      border-bottom-color: var(--jets-red);
    }
    .nav-tickets .nav-link {
      background: var(--jets-red);
      color: #fff !important;
      padding: 0.5rem 1.2rem !important;
      margin: 0.7rem 0 0.7rem 0.5rem;
      border-radius: 3px;
      border-bottom: none !important;
    }
    .nav-tickets .nav-link:hover { background: var(--jets-red-dark) !important; }

    /* ── HERO ── */
    .hero {
      position: relative;
      background: linear-gradient(135deg, var(--jets-dark) 0%, var(--jets-navy-dark) 40%, #1a2870 100%);
      min-height: 92vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-emblem {
      position: absolute;
      right: -2%;
      bottom: -5%;
      width: 62%;
      max-width: 750px;
      opacity: 0.18;
      pointer-events: none;
      filter: drop-shadow(0 0 60px rgba(200,16,46,0.3));
    }
    .hero-emblem-glow {
      position: absolute;
      right: 10%;
      top: 50%;
      transform: translateY(-50%);
      width: 50%;
      max-width: 680px;
      opacity: 0.85;
      pointer-events: none;
      filter: drop-shadow(0 0 40px rgba(200,16,46,0.5)) drop-shadow(0 0 80px rgba(26,58,143,0.4));
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 4rem 0;
    }
    .hero-eyebrow {
      font-family: prohibition, sans-serif;
      font-size: 0.9rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--jets-red);
      margin-bottom: 1rem;
    }
    .hero-title {
      font-family: prohibition, sans-serif;
      font-weight: 700;
      font-size: clamp(2.8rem, 6vw, 5rem);
      color: #fff;
      line-height: 1.05;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .hero-title span {
      color: var(--jets-red);
      display: block;
    }
    .hero-desc {
      color: var(--jets-white);
      font-size: 1.05rem;
      max-width: 450px;
      margin-bottom: 2rem;
      line-height: 1.7;
    }
    .btn-jets-primary {
      background: var(--jets-red);
      color: #fff;
      font-family: prohibition, sans-serif;
      font-size: 0.95rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 3px;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-jets-primary:hover { background: var(--jets-red-dark); color: #fff; transform: translateY(-1px); }
    .btn-jets-outline {
      background: transparent;
      color: #fff;
      font-family: prohibition, sans-serif;
      font-size: 0.95rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.8rem 2rem;
      border: 2px solid rgba(255,255,255,0.4);
      border-radius: 3px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s;
      margin-left: 0.75rem;
    }
    .btn-jets-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }

    /* hero scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: rgba(255,255,255,0.4);
      font-size: 1.5rem;
      animation: bounce 2s infinite;
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ── SECTION HEADERS ── */
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .section-header .eyebrow {
      font-family: prohibition, sans-serif;
      font-size: 0.8rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--jets-red);
      margin-bottom: 0.5rem;
    }
    .section-header h2 {
      font-family: prohibition, sans-serif;
      font-weight: 700;
      font-size: 2.4rem;
      text-transform: uppercase;
      color: var(--jets-navy-dark);
      position: relative;
      display: inline-block;
      padding-bottom: 0.75rem;
    }
    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: var(--jets-red);
      border-radius: 2px;
    }

    /* ── NEWS ── */
    .news-section { padding: 5rem 0; background: var(--jets-light); }
    .news-card {
      background: #fff;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(13,31,92,0.08);
      transition: transform 0.2s, box-shadow 0.2s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(13,31,92,0.15); }
    .news-card-img {
      height: 200px;
      background: linear-gradient(135deg, var(--jets-navy-dark), var(--jets-navy));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .news-card-img .placeholder-icon {
      font-size: 3rem;
      color: rgba(255,255,255,0.2);
    }
    .news-card-img .news-category {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--jets-red);
      color: #fff;
      font-family: prohibition, sans-serif;
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 2px;
    }
    .news-card-body {
      padding: 1.25rem 1.5rem 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .news-date {
      font-size: 0.78rem;
      color: #888;
      margin-bottom: 0.5rem;
    }
    .news-card-body h5 {
      font-family: prohibition, sans-serif;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--jets-navy-dark);
      margin-bottom: 0.6rem;
      line-height: 1.3;
    }
    .news-card-body p { font-size: 0.9rem; color: #555; line-height: 1.6; flex: 1; }
    .news-read-more {
      font-family: prohibition, sans-serif;
      font-size: 0.85rem;
      letter-spacing: 1px;
      color: var(--jets-red);
      text-decoration: none;
      text-transform: uppercase;
      margin-top: 1rem;
      display: inline-block;
    }
    .news-read-more:hover { color: var(--jets-red-dark); }
    .news-read-more i { margin-left: 4px; font-size: 0.75rem; }
    .btn-view-all {
      font-family: prohibition, sans-serif;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border: 2px solid var(--jets-navy-dark);
      color: var(--jets-navy-dark);
      padding: 0.7rem 2rem;
      border-radius: 3px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s;
      font-size: 0.9rem;
    }
    .btn-view-all:hover { background: var(--jets-navy-dark); color: #fff; }

    /* ── SHOP BANNER ── */
    .shop-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, var(--jets-dark) 0%, var(--jets-navy-dark) 60%, #1a2870 100%);
      position: relative;
      overflow: hidden;
    }
    .shop-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .shop-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .shop-text { color: #fff; text-align: center; }
    .shop-text .eyebrow {
      font-family: prohibition, sans-serif;
      font-size: 0.8rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--jets-red);
      margin-bottom: 0.5rem;
    }
    .shop-text h2 {
      font-family: prohibition, sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .shop-text p { color: var(--jets-white); max-width: 480px; line-height: 1.7; font-size: 0.95rem; }
    .shop-items {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .shop-item-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 6px;
      padding: 1.5rem;
      text-align: center;
      width: 140px;
      transition: background 0.2s;
    }
    .shop-item-card:hover { background: rgba(255,255,255,0.12); }
    .shop-item-card i { font-size: 2rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; display: flex; align-items: center; justify-content: center; width: 100%; height: 2.5rem; }
    .shop-item-card span { font-family: prohibition, sans-serif; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.7); }

    /* ── SPONSORS ── */
    .sponsors-section { padding: 5rem 0; background: #fff; }
    .sponsor-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      align-items: center;
    }

    .sponsor-tier-label {
      font-family: prohibition, sans-serif;
      font-size: 0.75rem;
      letter-spacing: 4px;
      color: var(--jets-red);
      margin-bottom: 1rem;
    }
    .sponsor-main-card {
      display: inline-block;
      background: #fff;
      border: 2px solid var(--jets-red);
      border-radius: 8px;
      padding: 1.5rem 3rem;
      margin-bottom: 0.5rem;
    }
    .sponsor-main-img {
      height: 80px;
      width: auto;
      object-fit: contain;
    }
    .sponsor-logo-img {
      max-height: 60px;
      max-width: 130px;
      width: auto;
      object-fit: contain;
      filter: grayscale(20%);
      transition: filter 0.2s;
    }
    .sponsor-logo-img:hover { filter: grayscale(0%); }
    .sponsor-item {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .sponsor-cta {
      text-align: center;
      margin-top: 3rem;
      padding: 2.5rem;
      background: var(--jets-light);
      border-radius: 8px;
      border: 1px solid #e2e8f0;
    }
    .sponsor-cta h4 {
      font-family: prohibition, sans-serif;
      font-size: 1.3rem;
      color: var(--jets-navy-dark);
      margin-bottom: 0.5rem;
    }
    .sponsor-cta p { color: #666; font-size: 0.9rem; margin-bottom: 1.25rem; }

    /* ── NEXT GAME TICKER ── */
    .ticker-bar {
      background: var(--jets-red);
      padding: 0.6rem 0;
      overflow: hidden;
    }
    .ticker-content {
      display: flex;
      align-items: center;
      gap: 0;
      white-space: nowrap;
    }
    .ticker-label {
      background: var(--jets-dark);
      font-family: prohibition, sans-serif;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #fff;
      padding: 0 1.5rem;
      margin-right: 1.5rem;
      height: 100%;
      display: flex;
      align-items: center;
      flex-shrink: 0;
      position: relative;
      z-index: 9;
    }
    .ticker-items {
      display: flex;
      gap: 3rem;
      animation: ticker 30s linear infinite;
    }
    .ticker-item {
      font-family: prohibition, sans-serif;
      font-size: 0.85rem;
      letter-spacing: 1px;
      color: #fff;
      text-transform: uppercase;
    }
    .ticker-item i { margin-right: 6px; opacity: 0.8; }
    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ── FOOTER ── */
    footer {
      background: var(--jets-dark);
      border-top: 3px solid var(--jets-red);
    }
    .footer-main { padding: 3.5rem 0 2rem; }
    .footer-logo-col img { height: 80px; width: auto; margin-bottom: 1rem; display: block; margin-left: auto; margin-right: auto; }
    .footer-about { color: #8896b0; font-size: 0.88rem; line-height: 1.7; max-width: 240px; text-align: center; }
    .footer-social { margin-top: 1.25rem; display: flex; gap: 0.6rem; justify-content: center; }
    .footer-social a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.08);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.2s;
    }
    .footer-social a:hover { background: var(--jets-red); color: #fff; }
    .footer-heading {
      font-family: prohibition, sans-serif;
      font-size: 0.8rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 1rem;
    }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 0.45rem; }
    .footer-links a {
      color: #8896b0; font-size: 0.88rem; text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 1.25rem 0;
    }
    .footer-bottom p { color: #4a5568; font-size: 0.8rem; margin: 0; }
        .footer-bottom a {
      color: #8896b0; font-size: 0.8rem; text-decoration: none; transition: color 0.2s;
    }
    .footer-bottom a:hover { color: #fff; }
    .footer-arena {
      color: #8896b0;
      font-size: 0.85rem;
    }
    .footer-arena i { color: var(--jets-red); margin-right: 5px; }

    /* ── MOBILE FIXES ── */
    @media (max-width: 991px) {

      .footer-about { max-width: 100%; }

      /* 0. Shrink brand so toggler stays on same row */
      .navbar-brand img.jets-text-logo {
        height: 28px;
      }
      .navbar-brand .brand-sub {
        font-size: 0.65rem;
      }
      .navbar-toggler {
        margin-left: auto;
      }

      /* 1. Centre the dropdown nav items */
      .navbar-collapse {
        text-align: center;
        background: #fff;
        padding: 0.5rem 0 1rem;
        border-top: 1px solid rgba(0,0,0,0.08);
      }
      .navbar-nav .nav-link {
        padding: 0.6rem 1rem !important;
        border-bottom: none;
      }
      .nav-tickets {
        display: flex;
        justify-content: center;
      }
      .nav-tickets .nav-link {
        margin: 0.5rem auto 0 !important;
        display: inline-block;
      }

      /* 2. Reduce hero top padding so content sits higher */
      .hero {
        min-height: 100svh;
        align-items: flex-start;
      }
      .hero-content {
        padding: 1.5rem 0 2rem;
      }

      /* 3. Logo fills the whole hero area */
      .hero-emblem {
        width: 100%;
        max-width: 100%;
        right: 0;
        bottom: 0;
        top: 0;
        height: 100%;
        object-fit: cover;
        opacity: 0.12;
      }
    }
    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }

    .dropdown-menu .dropdown-item {
      font-family: prohibition, sans-serif;
      font-size: 0.9rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--jets-red);
    }
    .dropdown-menu .dropdown-item:hover {
      background: var(--jets-light);
      color: var(--jets-red-dark);
    }
  
/* ── Inner page hero ───────────────────────────────────────────────── */
.page-hero-sm {
  background: linear-gradient(135deg, var(--jets-dark) 0%, var(--jets-navy-dark) 100%);
  padding: 5rem 0 3rem;
  text-align: center;
  color: #fff;
}
.page-hero-sm h1 {
  font-family: prohibition, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.page-hero-sm .eyebrow {
  font-family: prohibition, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--jets-red);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.page-hero-sm .post-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
}

/* ── Post / page content ───────────────────────────────────────────── */
.post-content {
  color: #222;
  line-height: 1.8;
  font-size: 1rem;
}
.post-content h2, .post-content h3, .post-content h4 {
  font-family: prohibition, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--jets-navy-dark);
  margin-top: 2rem;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
}
.post-content a { color: var(--jets-red); }
.post-content a:hover { color: var(--jets-red-dark); }

.post-featured-img img { border-radius: 8px; }

.post-nav a {
  font-family: prohibition, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--jets-red);
  text-decoration: none;
}
.post-nav a:hover { color: var(--jets-red-dark); }

/* ── Pagination ────────────────────────────────────────────────────── */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 4px;
  margin: 0 2px;
  font-family: prohibition, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
  background: var(--jets-light);
  color: var(--jets-navy-dark);
  border: 1px solid #dde3f0;
  transition: background 0.2s;
}
.page-numbers.current,
.page-numbers:hover {
  background: var(--jets-red);
  color: #fff;
  border-color: var(--jets-red);
}

/* ── Sponsor display ───────────────────────────────────────────────── */
.sponsor-tier-label {
  font-family: prohibition, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.sponsor-main-card {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 3rem;
  max-width: 400px;
}
.sponsor-main-img {
  max-height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.sponsor-logo-img {
  max-height: 60px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: filter 0.2s;
}
.sponsor-item:hover .sponsor-logo-img {
  filter: none;
}
