/* ================================================
   FC HANLEY — Fixtures Page Styles (fixtures.css)
   Matches site palette:
     Blues:  #004080 (dark)  #0055a4  #0f76dd (mid)
     Gold:   #ffcc00
     Font:   Poppins
   ================================================ */


/* ── MAIN WRAPPER ───────────────────────────────
   padding-top lets badge overlap naturally
   without covering the heading text             */

.fixtures {
  padding: 80px 16px 48px;
  text-align: center;
}

.fixtures > h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #003366;
  margin-bottom: 0.4em;
  position: relative;
  display: inline-block;
}

/* Gold underline accent */
.fixtures > h1::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffcc00, transparent);
  margin-top: 8px;
  border-radius: 2px;
}

.fixtures > p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #003366;
  margin-bottom: 0;
  opacity: 0.8;
}


/* ── FIXTURE CARDS ──────────────────────────────*/

.fixtures .content-section {
  background: linear-gradient(160deg, #0d6ecf 0%, #004080 100%);
  border-radius: 14px;
  padding: 28px 24px 32px;
  margin: 20px auto;
  max-width: 680px;
  box-shadow: 0 8px 28px rgba(0, 40, 100, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  text-align: center;
}

/* Gold shimmer line along top */
.fixtures .content-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffcc00, transparent);
  border-radius: 14px 14px 0 0;
}

.fixtures .content-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
}

.fixtures .content-section p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}


/* ── FIXTURE IMAGES ─────────────────────────────*/

.fixtures .content-section img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fixtures .content-section img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

/* Tap/click prompt */
.fixtures .content-section a::after {
  content: 'Tap to view fixtures ↗';
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffcc00;
  margin-top: 12px;
  opacity: 0.85;
}


/* ── FOOTER FIX ─────────────────────────────────
   Force footer text to match all other pages     */

.fixtures .site-footer .footer-info p,
.fixtures .site-footer .footer-info a {
  font-size: 0.85rem !important;
}

.fixtures .site-footer {
  margin-left: -16px;
  margin-right: -16px;
  width: calc(100% + 32px);
}

.fixtures .site-footer {
  margin-bottom: 0;
  padding-bottom: 0;
}


/* ── RESPONSIVE ─────────────────────────────────*/

@media (max-width: 600px) {
  .fixtures {
    padding: 70px 12px 0px;
  }

  .fixtures .content-section {
    padding: 22px 16px 26px;
    margin: 14px auto;
  }
}