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

:root {
  --green-dark: #14532d;
  --green: #16a34a;
  --green-light: #22c55e;
  --green-subtle: #dcfce7;
  --white: #ffffff;
  --off-white: #f8faf8;
  --grey-light: #e5e7eb;
  --grey: #6b7280;
  --grey-dark: #374151;
  --text: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-dark); }

img { max-width: 100%; display: block; }

.container { max-width: 940px; margin: 0 auto; }

/* ── Icons ── */
.icon { width: 1.1em; height: 1.1em; vertical-align: -0.15em; margin-right: 0.4em; flex-shrink: 0; }
.section-icon { width: 1.2em; height: 1.2em; vertical-align: -0.2em; margin-right: 0.4em; color: var(--green); }

/* ── Header ── */
.site-header {
  background: var(--green-dark);
  color: var(--white);
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-header .brand img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
}

.site-header .brand h1 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-header nav { display: flex; gap: 0.25rem; flex-shrink: 0; }

.site-header .brand { min-width: 0; overflow: hidden; }

.site-header nav a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  opacity: 0.85;
  transition: opacity 0.2s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-header nav a:hover {
  opacity: 1;
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.hero-carousel { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hero-prev:hover, .hero-next:hover {
  background: rgba(255,255,255,0.35);
}

.hero-prev { left: 1.25rem; }
.hero-next { right: 1.25rem; }

.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-dots button.active {
  background: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  z-index: 5;
  padding: 0 1.25rem;
}

.hero-overlay .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge-wrap {
  width: 94px;
  height: 94px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-badge {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.hero-overlay h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  color: var(--white);
}

.hero-overlay .tagline {
  font-size: 1.1rem;
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  text-decoration: none;
}

.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { color: var(--green-dark); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { color: var(--white); }
.btn-pink { background: #e11d48; color: var(--white); }
.btn-pink:hover { background: #be123c; color: var(--white); }
.btn-red { background: #dc2626; color: var(--white); }
.btn-red:hover { background: #b91c1c; color: var(--white); }

.btn-yt {
  background: #ff0000;
  color: var(--white);
}
.btn-yt:hover { background: #cc0000; color: var(--white); }

/* ── Sections ── */
section {
  padding: 4.5rem 1.5rem;
}

section h2 {
  font-size: 1.75rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.hero h2 { color: var(--white); }

section > .container > p {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 680px;
}

section > .container > p strong {
  color: var(--text);
}

/* ── About ── */
.about { background: var(--white); }

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.highlight-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--grey-light);
  transition: transform 0.2s, box-shadow 0.2s;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--green-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.highlight-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.highlight-card h3 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}

/* ── Fixtures ── */
.fixtures { background: var(--off-white); }

.fixtures-filters {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.4rem 1rem;
  border: 2px solid var(--grey-light);
  border-radius: 50px;
  background: var(--white);
  color: var(--grey-dark);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.filter-btn:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.fixtures-container {
  margin-top: 1.5rem;
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  background: var(--white);
}

.fixtures-month {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  background: var(--green-dark);
  padding: 0.5rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 1;
}

.fixture-row {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--grey-light);
  gap: 1rem;
  transition: background 0.15s;
}

.fixture-row:last-child { border-bottom: none; }
.fixture-row:hover { background: var(--off-white); }

.fixture-date-col {
  display: flex;
  flex-direction: column;
  min-width: 90px;
  flex-shrink: 0;
}

.fixture-day {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.fixture-time {
  font-size: 0.8rem;
  color: var(--grey);
}

.fixture-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.fixture-teams {
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fixture-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.fixture-home {
  background: var(--green-subtle);
  color: var(--green-dark);
}

.fixture-away {
  background: #fef3c7;
  color: #92400e;
}

/* Next match callout */
.next-match-callout {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.next-match-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
}

.next-match-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.next-match-info strong { font-size: 1rem; }
.next-match-info span { opacity: 0.9; font-size: 0.9rem; }

.next-match-venue {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  opacity: 0.9;
  font-size: 0.85rem;
}

.next-match-venue:hover { opacity: 1; color: var(--white); }
.next-match-venue .icon { width: 1em; height: 1em; margin-right: 0.3em; }

/* Highlighted next fixture row */
.fixture-next {
  background: var(--green-subtle);
  border-left: 3px solid var(--green);
}

/* Venue map pin */
.fixture-venue {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--grey);
  transition: color 0.2s, background 0.2s;
}

.fixture-venue:hover {
  color: var(--green);
  background: var(--green-subtle);
}

.fixture-venue svg { width: 16px; height: 16px; }

@media (max-width: 480px) {
  .fixture-date-col { min-width: 70px; }
  .fixture-teams { font-size: 0.8rem; }
  .fixture-row { padding: 0.6rem 0.75rem; gap: 0.5rem; }
  .next-match-callout { flex-direction: column; align-items: flex-start; }
}

/* ── Streams ── */
.streams { background: var(--off-white); }

.stream-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  margin-top: 1.75rem;
  border: 1px solid var(--grey-light);
}

.stream-card-icon {
  width: 64px;
  height: 64px;
  background: #fee2e2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stream-card-icon svg {
  width: 32px;
  height: 32px;
  color: #dc2626;
}

.stream-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.stream-card p {
  color: var(--grey);
  margin-bottom: 1.25rem;
}

/* ── Fundraising ── */
.fundraising { background: var(--white); }

.fundraise-card {
  background: linear-gradient(135deg, #fef2f2, #fff7ed);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  margin-top: 1.75rem;
  border: 1px solid #fecaca;
}

.fundraise-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
}

.fundraise-icon svg {
  width: 56px;
  height: 56px;
}

.fundraise-card h3 {
  color: #b91c1c;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.fundraise-card p {
  color: var(--grey);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── News ── */
.news { background: var(--off-white); }

.news-post {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  border: 1px solid var(--grey-light);
  transition: box-shadow 0.2s;
}

.news-post:hover {
  box-shadow: var(--shadow);
}

.news-post h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}

.news-post time {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
  background: var(--green-subtle);
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  font-weight: 500;
  color: var(--green-dark);
}

.news-post p {
  margin-bottom: 0.6rem;
  color: var(--grey-dark);
}

.news-post a { font-weight: 600; }

/* ── Footer ── */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 3rem 1.5rem 2rem;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 36px;
  width: 36px;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.08);
}

.footer-brand span {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  opacity: 0.8;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; color: var(--white); }

.footer-links svg {
  width: 18px;
  height: 18px;
}

.site-footer .copy {
  font-size: 0.78rem;
  opacity: 0.5;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { height: 440px; }
  .hero-overlay h2 { font-size: 1.9rem; }
  .hero-badge-wrap { width: 84px; height: 84px; }
  .highlights { grid-template-columns: 1fr; }
  section { padding: 3rem 1.25rem; }
  .site-header .brand h1 { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .hero { height: 420px; }
  .hero-overlay h2 { font-size: 1.5rem; }
  .hero-overlay .tagline { font-size: 0.95rem; }
  .hero-badge-wrap { width: 76px; height: 76px; }
  .site-header { padding: 0 0.5rem; }
  .site-header .brand h1 { display: none; }
  .site-header .brand img { height: 32px; width: 32px; }
  .site-header .brand { gap: 0; }
  .site-header nav a { font-size: 0.7rem; padding: 0.3rem 0.35rem; letter-spacing: 0; }
  .hero-prev, .hero-next { width: 36px; height: 36px; }
  .hero-prev svg, .hero-next svg { width: 18px; height: 18px; }
  .footer-links { gap: 1rem; }
}
