/* =============================================
   FOOTBALL PLAYERS OFFER PAGE
============================================= */

/* PAGE BASE */
body {
  overflow-x: hidden;
}

/* =============================================
   HERO SECTION
============================================= */
.football-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.football-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.football-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at center, rgba(245, 166, 35, 0.14), transparent 60%);
}

.football-hero h1 {
  position: relative;
  z-index: 3;
  max-width: 950px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  text-align: center;
  padding: 0 10px;
}

.football-hero h1 span {
  color: var(--orange);
  font-style: italic;
}

/* =============================================
   REELS SECTION
============================================= */
.football-reels {
  padding: 110px 24px;
  background: linear-gradient(
    135deg,
    #4f2600 0%,
    #2a130070 40%,
    #3d1b00 100%
  );
;
  text-align: center;
}

.football-reels h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 54px;
}

.reels-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.reel-card {
  background: rgba(41, 26, 0, 0.048);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.reel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 165, 35, 0.665);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
}

.reel-video {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.reel-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

/* =============================================
   MOBILE MENU FIX FOR THIS PAGE
============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  padding: 28px 24px 32px;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white-dim);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--orange);
}

/* =============================================
   LIGHT MODE
============================================= */
body.light-mode .football-hero {
  background: #f7f2ea4d;
}

body.light-mode .football-hero::before {
  background:
    linear-gradient(to bottom, rgba(73, 61, 46, 0.273), rgba(143, 138, 132, 0.361)),
    radial-gradient(circle at center, rgba(124, 123, 121, 0.192), transparent 80%);
}

body.light-mode .football-hero h1 {
  color: #3d2000;
}

body.light-mode .football-reels {
  background: #faf6f0;
}

body.light-mode .football-reels h2 {
  color: #201000;
}

body.light-mode .reel-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

body.light-mode .reel-card:hover {
  border-color: rgba(34, 21, 1, 0.34);
}

body.light-mode .reel-video {
  border-color: rgba(255, 255, 255, 0.802);
}

body.light-mode .mobile-menu {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .mobile-menu a {
  color: #111111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .mobile-menu a:hover {
  color: #cf8c21;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .football-hero {
    padding: 130px 24px 70px;
  }

  .reels-grid {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .reels-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .football-hero {
    min-height: 88vh;
    padding: 120px 20px 64px;
  }

  .football-hero h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .football-reels {
    padding: 90px 20px;
  }

  .football-reels h2 {
    margin-bottom: 36px;
  }

  .reel-card {
    padding: 16px;
    border-radius: 18px;
  }

  .reel-video {
    max-width: 100%;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .football-hero {
    padding: 110px 16px 54px;
  }

  .football-reels {
    padding: 76px 16px;
  }

  .football-reels h2 {
    font-size: 2.1rem;
  }

  .reel-card {
    padding: 14px;
  }
}