/* =============================================
   GROS MORNE FC — STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Lato:wght@300;400;700;900&display=swap');

:root {
  --green:       #022608;
  --blue:        #1B70A6;
  --gold:        #F2C230;
  --white:       #FFFFFF;
  --bg-alt:      #F9F9F9;
  --text:        #333333;
  --text-light:  #666666;
  --border:      #E5E5E5;
  --shadow:      0 4px 24px rgba(2,38,8,0.12);
  --shadow-lg:   0 12px 48px rgba(2,38,8,0.18);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

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

/* ---- SECTION TITLES ---- */
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin-top: 8px;
  border-radius: 2px;
}
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .subtitle {
  color: var(--text-light);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

section { padding: 5rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: transparent;
  color: var(--green);
}

/* =============================================
   HEADER / NAV
   ============================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--blue);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text span:first-child {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-logo-text span:last-child {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  left: 0.85rem;
  right: 0.85rem;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero_bg.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,38,8,0.85) 0%, rgba(27,112,166,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(242,194,48,0.15);
  border: 1px solid rgba(242,194,48,0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}
/* hero-badge icon is inline SVG */
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-style: italic;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::before {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}

/* =============================================
   PROCHAIN MATCH / COUNTDOWN
   ============================================= */
#prochain-match {
  background: var(--green);
  padding: 4rem 1.5rem;
  color: var(--white);
}
.match-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.match-info-left .section-title { color: var(--white); }
.match-info-left .section-title::after { background: var(--gold); }
.match-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.match-teams {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.team-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.team-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green);
  overflow: hidden;
  flex-shrink: 0;
}
.team-badge img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}
.vs-divider {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
}
.match-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.match-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.match-meta-item svg { flex-shrink: 0; }

/* Countdown */
.countdown-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(242,194,48,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.countdown-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.countdown-unit {
  background: rgba(2,38,8,0.5);
  border: 1px solid rgba(242,194,48,0.2);
  border-radius: var(--radius);
  padding: 1rem 0.5rem;
}
.countdown-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.countdown-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  display: block;
}
.countdown-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  line-height: 1.5;
}

/* =============================================
   UPCOMING MATCHES (CARDS)
   ============================================= */
#upcoming {
  background: var(--bg-alt);
  padding: 5rem 1.5rem;
}
.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.match-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.match-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.match-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.match-competition {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(27,112,166,0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}
.match-status {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.match-card-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 1rem 0;
}
.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}
.match-team-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  overflow: hidden;
}
.match-team-badge img { width: 100%; height: 100%; object-fit: cover; }
.match-team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
.match-vs {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  background: var(--green);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.match-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.match-card-footer .info-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-light);
}
.match-card-footer .info-row svg { color: var(--blue); flex-shrink: 0; }
.loading-state {
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
  font-style: italic;
}

/* =============================================
   PLAYERS CAROUSEL
   ============================================= */
#players {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.players-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.players-left .section-title { text-align: left; }
.players-desc {
  color: var(--text-light);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}
.players-thumbnails {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.player-thumb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
  position: relative;
  flex-shrink: 0;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.player-thumb .thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,38,8,0.45);
  transition: var(--transition);
}
.player-thumb.active {
  border-color: var(--gold);
}
.player-thumb.active .thumb-overlay {
  background: transparent;
}
.player-thumb:hover .thumb-overlay {
  background: rgba(2,38,8,0.2);
}
.player-thumb .thumb-initials {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.players-right {
  position: relative;
  min-height: 480px;
}
.player-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.player-slide.active {
  opacity: 1;
  position: relative;
}
.player-photo {
  width: 100%;
  max-width: 380px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--green), var(--blue));
  margin: 0 auto;
}
.player-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.player-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
}
.player-photo-placeholder svg { width: 80px; height: 80px; }
.player-number-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--green);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-info {
  text-align: center;
  margin-top: 1.25rem;
}
.player-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
}
.player-position {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* =============================================
   LE JOURNAL
   ============================================= */
#journal {
  background: var(--bg-alt);
  padding: 5rem 1.5rem;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.news-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--green), var(--blue));
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-img img { transform: scale(1.05); }
.news-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}
.news-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.news-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--green);
}
.news-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}
.section-cta {
  text-align: center;
  margin-top: 1rem;
}

/* =============================================
   GALERIE
   ============================================= */
#galerie {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--green);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:first-child img { min-height: 380px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,38,8,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-overlay svg {
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(2,38,8,0.5); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.gallery-placeholder svg { width: 36px; height: 36px; }

/* =============================================
   PARTENAIRES
   ============================================= */
#partenaires {
  background: var(--bg-alt);
  padding: 4rem 1.5rem;
}
.partners-track {
  overflow: hidden;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.partners-inner {
  display: flex;
  gap: 2rem;
  animation: scrollX 20s linear infinite;
  width: max-content;
}
.partner-logo {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.partner-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--green);
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.footer-brand img {
  height: 70px;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.footer-brand-tagline {
  color: var(--gold);
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-link:hover {
  background: var(--gold);
  color: var(--green);
}
.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   PAGE HEADERS (INNER PAGES)
   ============================================= */
.page-header {
  background: linear-gradient(135deg, var(--blue), var(--green));
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/anons_1.jpeg') center/cover no-repeat;
  opacity: 0.1;
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.page-header .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}
.page-header .breadcrumb a { color: var(--gold); }

/* =============================================
   MATCHS PAGE
   ============================================= */
.tabs-bar {
  display: flex;
  gap: 0;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 4px;
  width: fit-content;
  margin: 2rem auto;
  box-shadow: var(--shadow);
}
.tab-btn {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--text-light);
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(2,38,8,0.3);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.results-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.result-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.result-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.result-team {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.result-team.away { flex-direction: row-reverse; text-align: right; }
.result-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}
.result-badge img { width: 100%; height: 100%; object-fit: cover; }
.result-team-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
}
.score-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.score {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
}
.score-label {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Standings Table */
.standings-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.standings-table table {
  width: 100%;
  border-collapse: collapse;
}
.standings-table th {
  background: var(--green);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 0.75rem;
  text-align: center;
}
.standings-table th:first-child,
.standings-table th:nth-child(2) { text-align: left; }
.standings-table td {
  padding: 0.85rem 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.standings-table td:first-child,
.standings-table td:nth-child(2) { text-align: left; }
.standings-table tr.highlight { background: rgba(242,194,48,0.15); font-weight: 700; }
.standings-table tr:hover { background: var(--bg-alt); }
.pos-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.pos-num.top { background: var(--gold); color: var(--green); }

/* =============================================
   LA SÉLECTION PAGE
   ============================================= */
.position-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0 3rem;
}
.filter-btn {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.player-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.player-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.player-card-photo {
  height: 260px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  position: relative;
  overflow: hidden;
}
.player-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.player-card-num {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--green);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(2,38,8,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  gap: 0.75rem;
}
.player-card:hover .player-card-hover { opacity: 1; }
.player-card-hover .player-full-name {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 0 1rem;
}
.player-card-body {
  padding: 1rem 1.25rem;
}
.player-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}
.player-card-pos {
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* Staff */
.staff-section {
  padding: 4rem 1.5rem;
  background: var(--bg-alt);
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.staff-card {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.staff-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.staff-avatar svg { color: rgba(255,255,255,0.6); }
.staff-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.staff-role {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text);
  z-index: 1;
}
.modal-photo {
  height: 300px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  overflow: hidden;
}
.modal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.modal-body { padding: 2rem; }
.modal-name {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.modal-pos {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.modal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.stat-box {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.modal-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================
   LE JOURNAL PAGE
   ============================================= */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.journal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.journal-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--green), var(--blue));
}
.journal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.journal-card:hover .journal-card-img img { transform: scale(1.05); }
.journal-card-body { padding: 1.5rem; }
.journal-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.news-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.news-badge.club { background: rgba(2,38,8,0.1); color: var(--green); }
.news-badge.competition { background: rgba(27,112,166,0.1); color: var(--blue); }
.news-badge.communaute { background: rgba(242,194,48,0.2); color: #a07b00; }
.journal-date {
  font-size: 0.75rem;
  color: var(--text-light);
}
.journal-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.journal-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Article page */
.article-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.article-header { margin-bottom: 2rem; }
.article-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin: 0.75rem 0;
}
.article-img {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.article-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.article-body p { margin-bottom: 1.5rem; }
.article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.share-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.share-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.share-btn.fb { background: #1877f2; color: white; }
.share-btn.tw { background: #000; color: white; }
.share-btn.wa { background: #25d366; color: white; }

/* =============================================
   GROS MORNE PAGE
   ============================================= */
.commune-hero {
  background: linear-gradient(135deg, var(--green), #0a4a1a);
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.commune-hero::after {
  content: '';
  position: absolute;
  right: 5%;
  bottom: -20px;
  font-size: 10rem;
  opacity: 0.05;
}
.commune-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.commune-subtitle {
  color: var(--gold);
  font-size: 1.1rem;
  font-style: italic;
}
.commune-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}
.commune-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.commune-stat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.commune-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.commune-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}
.commune-section {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.commune-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.commune-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.commune-block-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.commune-block-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.commune-block p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.vision-section {
  background: var(--green);
  color: var(--white);
  padding: 5rem 1.5rem;
}
.vision-inner {
  max-width: 900px;
  margin: 0 auto;
}
.vision-inner .section-title { color: var(--white); }
.vision-inner .section-title::after { background: var(--gold); }
.vision-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.vision-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.vision-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 40px;
}
.vision-text p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 0.25rem; }
.vision-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--white);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes scrollX {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fade-in { animation: fadeInUp 0.7s ease both; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .match-layout { grid-template-columns: 1fr; }
  .players-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}
@media (max-width: 640px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--blue); padding: 1rem 1.5rem; gap: 0.25rem; }
  .nav-menu.open { display: flex; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .result-card { grid-template-columns: 1fr; gap: 0.5rem; }
  .countdown-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-stats { grid-template-columns: 1fr 1fr; }
}
