/* ============================================================
   ERBIL SPORT CLUB — Premium Website
   Dark theme · Yellow (#f5c518) accent · Oswald + Inter
   ============================================================ */

:root {
  --yellow:       #f5c518;
  --yellow-glow:  rgba(245, 197, 24, 0.35);
  --yellow-dim:   rgba(245, 197, 24, 0.15);
  --black:        #080808;
  --dark:         #101010;
  --dark-2:       #181818;
  --dark-3:       #202020;
  --text:         #f0ede8;
  --text-mid:     #8a8a8a;
  --text-low:     #555555;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ============================================================
   NAV
   ============================================================ */

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 0 5vw;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--yellow-dim);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo-link { display: flex; align-items: center; gap: 11px; }

.nav-logo-img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--yellow-glow));
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }

.nav-club-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-club-sub {
  font-size: 0.68rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
}

.nav-links { display: flex; gap: 2.5rem; }

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* ============================================================
   HERO  — cinematic full-bleed
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* Video — anchored to the right */
.hero-video-bg {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 75%;
  height: auto;
  object-fit: contain;
  z-index: 0;
}

/* Cinematic overlay — solid dark left, transparent centre, vignette right */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.80) 35%,
      rgba(0,0,0,0.25) 62%,
      rgba(0,0,0,0.55) 100%
    );
}

/* Top & bottom edge vignette */
.hero-vignette-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 18%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-vignette-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Inner layout row */
.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  gap: 4rem;
}

/* ---- Left: club text ---- */
.hero-content { flex: 0 0 auto; max-width: 600px; }

.hero-pre {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.hero-pre-line {
  width: 40px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}
.hero-pre-text {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(5rem, 10vw, 11rem);
  line-height: 0.87;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.ht-line       { display: block; }
.ht-yellow     { color: var(--yellow); }

/* Per-line entrance animations */
.ht-anim-1, .ht-anim-2, .ht-anim-3,
.hero-anim-4, .hero-anim-5 {
  opacity: 0;
  transform: translateY(40px);
  animation: heroSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ht-anim-1  { animation-delay: 0.15s; }
.ht-anim-2  { animation-delay: 0.28s; }
.ht-anim-3  { animation-delay: 0.41s; }
.hero-anim-4 { animation-delay: 0.56s; }
.hero-anim-5 { animation-delay: 0.70s; }

@keyframes heroSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(240,237,232,0.6);
  letter-spacing: 0.08em;
  margin-bottom: 2.6rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--yellow); }

.btn-ghost {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: transparent;
  color: rgba(240,237,232,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  transition: border-color 0.25s, color 0.25s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

/* ---- Right: glowing emblem ---- */
.hero-emblem {
  position: relative;
  flex-shrink: 0;
}
.hero-emblem img {
  width: clamp(130px, 14vw, 200px);
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(245,197,24,0.5))
          drop-shadow(0 0 80px rgba(245,197,24,0.25));
}
.hero-emblem-ring {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 65%);
  animation: emblemPulse 3.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes emblemPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* ---- Bottom ticker bar ---- */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 6;
  display: flex;
  align-items: stretch;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(245,197,24,0.2);
}
.ticker-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  gap: 0.2rem;
}
.ticker-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  line-height: 1;
}
.ticker-lbl {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.ticker-sep {
  width: 1px;
  background: rgba(245,197,24,0.2);
  margin: 0.6rem 0;
  align-self: stretch;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 5.5rem;
  left: 6vw;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-head);
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-cue svg { color: var(--yellow); }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ============================================================
   VIDEO SHOWCASE  — second video clip
   ============================================================ */

/* ============================================================
   VIDEO SHOWCASE — full-width cinematic
   ============================================================ */

.section-showcase {
  background: var(--black);
  padding: 6rem 0 8rem;
  position: relative;
  overflow: hidden;
}

/* Subtle yellow ambient glow behind the video */
.section-showcase::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%;
  height: 40%;
  background: radial-gradient(ellipse at 50% 100%, rgba(245,197,24,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Header row: title left, description right */
.showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding: 0 5vw;
  margin-bottom: 3rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.showcase-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}

.showcase-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 38ch;
  flex-shrink: 0;
  margin: 0;
}

/* Full-width video container */
.showcase-video-wrap {
  position: relative;
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(245,197,24,0.12),
    0 40px 120px rgba(0,0,0,0.8),
    0 0 80px rgba(245,197,24,0.06);
}

.showcase-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

/* Corner decorations — scaled up for larger frame */
.frame-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  z-index: 2;
  pointer-events: none;
}
.fc-tl { top: -1px;    left: -1px;  border-top: 2px solid var(--yellow); border-left: 2px solid var(--yellow); }
.fc-tr { top: -1px;    right: -1px; border-top: 2px solid var(--yellow); border-right: 2px solid var(--yellow); }
.fc-bl { bottom: -1px; left: -1px;  border-bottom: 2px solid var(--yellow); border-left: 2px solid var(--yellow); }
.fc-br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--yellow); border-right: 2px solid var(--yellow); }

/* Live badge overlaid on video (bottom-left) */
.showcase-live-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(245,197,24,0.25);
  z-index: 3;
}

.showcase-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  animation: dotPulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

.section {
  padding: 9rem 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* Thin yellow accent line between sections */
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 5vw; right: 5vw;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--yellow-dim), transparent);
}

.tag {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.1rem;
}
.tag-light { color: rgba(245,197,24,0.85); }

.heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.heading-light { color: #fff; }

.body-text {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 54ch;
  margin-bottom: 1.2rem;
}

/* Scroll reveal */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: 0.1s; }
.fd2 { transition-delay: 0.2s; }
.fd3 { transition-delay: 0.3s; }
.fd4 { transition-delay: 0.4s; }

/* ============================================================
   ABOUT
   ============================================================ */

.section-about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}

.astat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1;
}
.astat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-low);
  margin-top: 0.4rem;
}

.about-visual { position: relative; }

.about-img {
  width: 100%;
  border-radius: 3px;
  filter: brightness(0.88) saturate(1.1);
  transition: filter 0.4s;
}
.about-img:hover { filter: brightness(1) saturate(1.2); }

.about-year-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 10px 18px;
  text-transform: uppercase;
}

/* ============================================================
   SQUAD
   ============================================================ */

.section-squad { background: var(--black); }

.squad-header { margin-bottom: 3.5rem; }

.squad-sub {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.squad-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.4rem;
}

.squad-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
}
.squad-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.squad-main { height: 540px; }
.squad-grid .squad-card:last-child { height: 540px; }

.squad-card:hover img { transform: scale(1.04); }

.squad-card-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.6rem 1.4rem 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.squad-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.squad-season {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--yellow);
}

/* ============================================================
   PLAYERS
   ============================================================ */

.section-players { background: var(--dark); }
.section-players .heading { margin-bottom: 3.5rem; }

.players-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.player-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 0.3s;
}
.player-card:hover { border-color: rgba(245,197,24,0.28); }

.player-img { height: 360px; overflow: hidden; }
.player-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.player-card:hover .player-img img { transform: scale(1.05); }

.player-body { padding: 2rem; }

.player-pos {
  display: block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}
.player-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
  color: var(--text);
}
.player-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.75;
}

/* ============================================================
   TRANSFERS
   ============================================================ */

.section-transfers {
  position: relative;
  padding: 9rem 0;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.section-transfers::before { display: none; } /* no top line here */

.transfers-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.transfers-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.transfers-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.94) 0%,
    rgba(8,8,8,0.78) 45%,
    rgba(8,8,8,0.90) 100%
  );
}

.transfers-content {
  position: relative;
  z-index: 2;
}

.transfers-desc {
  font-size: 0.97rem;
  color: rgba(240,237,232,0.75);
  font-weight: 300;
  line-height: 1.85;
  max-width: 52ch;
  margin-bottom: 3.5rem;
}

.transfers-list {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.transfer-player { display: flex; flex-direction: column; gap: 0.2rem; }

.t-num {
  font-family: var(--font-head);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.t-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.t-divider {
  width: 1px;
  height: 65px;
  background: rgba(245,197,24,0.28);
}

/* ============================================================
   STADIUM
   ============================================================ */

.section-stadium { background: var(--black); }

.stadium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.stadium-facts {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.sfact-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
}
.sfact-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-low);
  margin-top: 0.4rem;
}

.stadium-photos { display: flex; flex-direction: column; gap: 1.2rem; }

.stadium-photo {
  position: relative;
  overflow: hidden;
}
.stadium-photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.stadium-photo:hover img { transform: scale(1.04); }

.stadium-cap {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
}

/* ============================================================
   HISTORY
   ============================================================ */

.section-history { background: var(--dark); }

.history-header { margin-bottom: 5rem; }

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.history-img-wrap { position: relative; }
.history-img-wrap img { width: 100%; border-radius: 2px; }

.history-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  padding: 10px 18px;
}

.history-recognition {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.fifa-img {
  width: 100%;
  max-width: 300px;
  border-radius: 2px;
  filter: brightness(0.88);
  margin-top: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #050505;
  border-top: 1px solid rgba(245,197,24,0.14);
  padding: 5rem 5vw 2.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1340px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 1.1rem; }

.footer-logo { width: 52px; height: auto; }

.footer-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.3;
}
.footer-arabic {
  color: var(--yellow);
  font-size: 0.9rem;
  line-height: 1.3;
}
.footer-info {
  font-size: 0.72rem;
  color: var(--text-low);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.footer-nav a {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: 1340px;
  margin: 0 auto;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-low);
  letter-spacing: 0.05em;
}

/* ============================================================
   SOCIAL SIDEBAR (fixed left)
   ============================================================ */

.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 0 0 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--text-low);
  transition: color 0.25s, transform 0.25s;
}
.social-link svg { width: 17px; height: 17px; }
.social-link:hover {
  color: var(--yellow);
  transform: translateX(3px);
}

.social-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(245,197,24,0.3), transparent);
  margin-top: 4px;
}

/* ============================================================
   MAPS BUTTON (stadium section)
   ============================================================ */

.maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2.5rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(245,197,24,0.35);
  padding: 11px 22px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.maps-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.maps-btn svg { flex-shrink: 0; }

/* Phone link — stadium section */
.stadium-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.2s;
}
.stadium-phone:hover { color: var(--yellow); }
.stadium-phone svg { color: var(--yellow); flex-shrink: 0; }

/* Phone link — footer */
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  color: var(--text-mid);
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--yellow); }
.footer-phone svg { color: var(--yellow); flex-shrink: 0; }

/* ============================================================
   FOOTER SOCIAL ROW
   ============================================================ */

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.fsocial-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.22s;
}
.fsocial-link:hover { color: var(--yellow); }
.fsocial-link svg   { flex-shrink: 0; }
.fsocial-link span  { display: none; } /* icon-only by default; shown on wider screens */

@media (min-width: 900px) {
  .fsocial-link span { display: inline; }
}

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

@media (max-width: 1100px) {
  .about-grid,
  .stadium-grid,
  .history-grid { grid-template-columns: 1fr; gap: 3.5rem; }

  .squad-grid { grid-template-columns: 1fr; }
  .squad-main, .squad-grid .squad-card:last-child { height: 400px; }

  .history-badge { bottom: 1rem; right: 1rem; }
}

@media (max-width: 768px) {
  /* Hide nav links, show hamburger */
  .nav-links   { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero mobile adjustments */
  .hero-inner {
    padding: 0 5vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .hero-emblem { display: none; }
  .hero-title  { font-size: clamp(4rem, 14vw, 6.5rem); }
  .hero-ticker { display: none; }
  .scroll-cue  { bottom: 2rem; }

  .players-grid { grid-template-columns: 1fr; }
  .social-sidebar { display: none; }
  .showcase-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
  .showcase-video-wrap { width: 95%; }
  .transfers-list { gap: 1.5rem; }
  .t-num { font-size: 2.8rem; }

  .section { padding: 6rem 0; }
  .about-stats { gap: 2rem; }
  .footer-top { flex-direction: column; }
  .footer-right { align-items: flex-start; }
  .footer-social { justify-content: flex-start; }
}
