:root {
  --blue: #2596be;
  --blue-dark: #1b7592;
  --blue-light: #e8f6fb;
  --orange: #ff6f00;
  --orange-dark: #e05f00;
  --orange-light: #fff1e0;
  --ink: #1b2733;
  --grey: #5c6b78;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(27, 39, 51, 0.12);
  --font: "Poppins", "Segoe UI", Verdana, Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--blue-dark);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  background: var(--orange);
  border-radius: 4px;
  margin-top: 8px;
}

a {
  color: var(--blue-dark);
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--blue-dark);
}

.brand-text strong {
  color: var(--orange);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  position: relative;
  padding: 6px 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--blue-dark);
  border-radius: 3px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 24px 120px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hero-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 10px;
}

.hero .highlight {
  color: var(--orange);
}

.hero-tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 111, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.hero-shape {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scale(1.5);
  z-index: 1;
}

/* Sections */
.section {
  padding: 70px 0;
}

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

.fixtures-section {
  background: var(--blue-light);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.fixtures-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.fixtures-table thead {
  background: var(--blue-dark);
  color: var(--white);
}

.fixtures-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fixtures-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #e3edf2;
  font-size: 0.98rem;
}

.fixtures-table tbody tr:last-child td {
  border-bottom: none;
}

.fixtures-table tbody tr:hover {
  background: var(--orange-light);
}

.vs {
  color: var(--orange);
  font-weight: 700;
  margin: 0 6px;
}

.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-home {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.badge-away {
  background: var(--blue-light);
  color: var(--blue-dark);
  border: 1px solid var(--blue);
}

.fixtures-note {
  margin-top: 18px;
  color: var(--grey);
  font-style: italic;
}

.training-section {
  background: var(--white);
}

.training-card {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  background: linear-gradient(135deg, var(--orange-light), var(--white));
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.training-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1 1 260px;
}

.training-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.training-detail h3 {
  margin-bottom: 4px;
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.training-detail p {
  margin: 0 0 6px;
  color: var(--ink);
}

.map-link {
  display: inline-block;
  font-weight: 700;
  color: var(--orange-dark);
  text-decoration: none;
}

.map-link:hover {
  text-decoration: underline;
}

.contact-section {
  background: var(--blue-light);
}

.contact-intro {
  max-width: 640px;
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-3px);
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.contact-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 30px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-content p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Responsive nav */
@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    max-height: 300px;
  }

  .nav-links li {
    border-top: 1px solid #eef2f5;
  }

  .nav-links a {
    display: block;
    padding: 16px 24px;
  }

  .nav-links a::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .fixtures-table td,
  .fixtures-table th {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}
