/* Flag Frenzy Football — MAIN SITE theme (matches logo) */
:root {
  --ff-blue: #002e5f; /* primary brand */
  --ff-blue-700: #003a78; /* hover */
  --ff-blue-900: #001b37; /* deep text */
  --ff-accent: #843c11; /* brick red banner/accent */
  --ff-bg: #f7fafc; /* soft page bg */
}

html,
body {
  height: 100%;
}
body {
  font-family: "Poppins", system-ui, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--ff-bg);
  color: #1f2937;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  transition: 0.2s;
}
.btn-primary {
  background: var(--ff-blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 46, 95, 0.25);
}
.btn-primary:hover {
  background: var(--ff-blue-700);
  transform: translateY(-1px);
}
.btn-outline {
  border: 2px solid #bcd0e9;
  color: var(--ff-blue-900);
  background: #fff;
}
.btn-outline:hover {
  border-color: #90b4e3;
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--ff-accent);
  color: #fff;
}
.btn-accent:hover {
  filter: brightness(1.05);
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.nav-link {
  font-weight: 600;
}
.nav-link.active,
.nav-link:hover {
  color: var(--ff-blue);
}

/* Sections & cards */
.section-title {
  font-weight: 800;
  color: var(--ff-blue-900);
}
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* Form */
.label {
  font-weight: 700;
  margin-bottom: 0.35rem;
  display: block;
}
.input {
  width: 100%;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 1rem;
  padding: 0.8rem 0.9rem;
  outline: none;
}
.input:focus {
  border-color: #bcd0e9;
  box-shadow: 0 0 0 4px rgba(0, 46, 95, 0.15);
}

/* Footer */
.footer {
  background: var(--ff-blue);
  color: #e5e7eb;
}
.footer a {
  color: #e5e7eb;
}
.footer a:hover {
  color: #fff;
}

/* Utilities */
.tick::before {
  content: "✓";
  font-weight: 900;
  color: var(--ff-accent);
  margin-right: 0.5rem;
}
.hero-bg {
  background: radial-gradient(
      60% 80% at 20% 0%,
      rgba(0, 46, 95, 0.18),
      transparent 60%
    ),
    radial-gradient(
      70% 80% at 100% 0%,
      rgba(132, 60, 17, 0.18),
      transparent 60%
    ),
    linear-gradient(#ffffff, #f4f7fb 60%);
}
