/* ============================================
   74 Soccer — Global Styles
   Brand: Deep Royal Blue #012583 | Ocean Blue #0550B9
          Aqua Blue #07AFE9 | Tropical Green #40C800
          Palm Green #7CEE09
   Type:  Montserrat (primary), Poppins (alt)
   ============================================ */

:root {
  --deep-blue: #012583;
  --ocean-blue: #0550B9;
  --aqua: #07AFE9;
  --tropical-green: #40C800;
  --palm-green: #7CEE09;
  --black: #000000;
  --white: #ffffff;
  --off-white: #f4f8fc;
  --ink: #0b1230;
  --gray: #5a6478;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(1, 37, 131, 0.12);
  --font-head: 'Montserrat', 'Poppins', sans-serif;
  --font-body: 'Poppins', 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: var(--ocean-blue); text-decoration: none; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }

.btn-green {
  background: linear-gradient(135deg, var(--tropical-green), var(--palm-green));
  color: var(--deep-blue);
}
.btn-blue {
  background: linear-gradient(135deg, var(--ocean-blue), var(--aqua));
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border-color: var(--deep-blue);
  color: var(--deep-blue);
}
.btn-outline:hover { background: rgba(1,37,131,0.06); }

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

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.brand img { height: 54px; width: auto; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--deep-blue);
  letter-spacing: 0.02em;
}
.brand-name span { color: var(--tropical-green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.3rem 0;
  border-bottom: 3px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover { color: var(--ocean-blue); }
.nav-links a.active {
  color: var(--ocean-blue);
  border-bottom-color: var(--tropical-green);
}
.nav-links .btn { padding: 0.6rem 1.5rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--deep-blue);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (home) — banner theme: white with soft swooshes ---------- */
.hero {
  position: relative;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}
.hero::before,
.hero::after,
.page-banner::before,
.page-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 1100px;
  height: 1100px;
  border: 70px solid rgba(1, 37, 131, 0.04);
  top: -55%;
  left: -340px;
}
.hero::after {
  width: 900px;
  height: 900px;
  border: 55px solid rgba(64, 200, 0, 0.05);
  bottom: -55%;
  right: -280px;
}
.hero .container { position: relative; z-index: 1; }

.hero-logo {
  width: min(280px, 58vw);
  margin: 0 auto 1.6rem;
}

.hero .kicker {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ocean-blue);
  margin-bottom: 0.9rem;
}
.hero .kicker span { color: var(--tropical-green); }

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-blue);
}
.hero h1 .aqua { color: var(--aqua); }
.hero h1 .accent { color: var(--tropical-green); }

.hero p.lead {
  max-width: 640px;
  margin: 1.2rem auto 2.2rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--gray);
}

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

/* ---------- Page banner (interior pages) — light theme ---------- */
.page-banner {
  position: relative;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  padding: 3.8rem 0 3.4rem;
  overflow: hidden;
  border-bottom: 1px solid #eaeff6;
}
.page-banner::before {
  width: 800px;
  height: 800px;
  border: 55px solid rgba(1, 37, 131, 0.04);
  top: -170%;
  left: -260px;
}
.page-banner::after {
  width: 700px;
  height: 700px;
  border: 45px solid rgba(64, 200, 0, 0.05);
  bottom: -175%;
  right: -220px;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--deep-blue);
}
.page-banner p {
  max-width: 620px;
  margin: 0.8rem auto 0;
  color: var(--gray);
}
.page-photo {
  width: 100%;
  max-width: 920px;
  margin: 1.8rem auto 0;
}
.page-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Sections ---------- */
section.block { padding: 4.5rem 0; }
section.block.alt { background: var(--off-white); }

.section-head { text-align: center; margin-bottom: 2.8rem; }
.section-head .kicker {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tropical-green);
}
.section-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  text-transform: uppercase;
  color: var(--deep-blue);
  margin-top: 0.3rem;
}
.section-head p {
  max-width: 640px;
  margin: 0.8rem auto 0;
  color: var(--gray);
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-top: 5px solid var(--aqua);
}
.card.green-top { border-top-color: var(--tropical-green); }
.card .icon { font-size: 2.2rem; line-height: 1; }
.card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--deep-blue);
}
.card p { color: var(--gray); font-size: 0.95rem; }
.card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Split feature rows ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split + .split { margin-top: 4rem; }
.split.reverse .split-media { order: 2; }

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: var(--white);
}
.split-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.split-media:has(> img) {
  font-size: 0;
  color: transparent;
}
.split-media.field {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 60px, transparent 60px 120px),
    linear-gradient(135deg, var(--tropical-green), #2ea000);
}
.split-media.party {
  background:
    radial-gradient(300px 200px at 20% 20%, rgba(124,238,9,0.5), transparent 60%),
    linear-gradient(135deg, var(--aqua), var(--ocean-blue));
}
.split-media.pickup {
  background:
    radial-gradient(300px 200px at 80% 15%, rgba(7,175,233,0.55), transparent 60%),
    linear-gradient(135deg, var(--ocean-blue), var(--deep-blue));
}

.split-copy h2, .split-copy h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--deep-blue);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.split-copy p { color: var(--gray); margin-bottom: 1rem; }
.split-copy ul {
  list-style: none;
  margin: 0 0 1.4rem;
}
.split-copy ul li {
  padding-left: 1.7rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.split-copy ul li::before {
  content: "⚽";
  position: absolute;
  left: 0;
  font-size: 0.85rem;
  top: 0.15rem;
}

/* ---------- Stats strip ---------- */
.stats-strip {
  background: linear-gradient(120deg, var(--deep-blue), var(--ocean-blue));
  color: var(--white);
  padding: 2.6rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--palm-green);
}
.stat .label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Tables (pricing / schedule) ---------- */
.table-wrap { overflow-x: auto; }
table.brand-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 480px;
}
.brand-table th {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  background: var(--deep-blue);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  text-align: left;
}
.brand-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid #e6ecf5;
  color: var(--ink);
  font-size: 0.95rem;
}
.brand-table tr:last-child td { border-bottom: none; }
.brand-table tr:nth-child(even) td { background: var(--off-white); }
.brand-table .price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ocean-blue);
  white-space: nowrap;
}

/* ---------- Booking calendar embed ---------- */
.calendar-embed {
  display: block;
  width: 100%;
  max-width: 800px;
  max-height: 600px;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.calendar-embed [data-component] {
  width: 100%;
}
.calendar-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
}

/* ---------- Pricing cards (birthdays) ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.price-card.featured {
  border-color: var(--tropical-green);
  position: relative;
}
.price-card .ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--tropical-green), var(--palm-green));
  color: var(--deep-blue);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: 999px;
}
.price-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--deep-blue);
  font-size: 1.25rem;
  text-transform: uppercase;
}
.price-card .amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--ocean-blue);
  margin: 0.4rem 0 0.2rem;
}
.price-card .amount small {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 600;
}
.price-card .tagline { color: var(--gray); font-size: 0.9rem; margin-bottom: 1.1rem; }
.price-card ul { list-style: none; margin-bottom: 1.6rem; }
.price-card ul li {
  padding: 0.4rem 0 0.4rem 1.8rem;
  position: relative;
  font-size: 0.93rem;
  border-bottom: 1px dashed #e2e8f2;
}
.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0.2rem;
  color: var(--tropical-green);
  font-weight: 700;
}
.price-card .btn { margin-top: auto; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.4rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--deep-blue);
}
.form-field label .req { color: var(--tropical-green); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 2px solid #dbe4f0;
  border-radius: 10px;
  background: var(--off-white);
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--aqua);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-actions { margin-top: 1.6rem; text-align: center; }
.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 1rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success.show { display: block; }
.form-success .icon { font-size: 3rem; }
.form-success h3 {
  font-family: var(--font-head);
  color: var(--deep-blue);
  font-size: 1.4rem;
  margin: 0.6rem 0 0.4rem;
}
.form-success p { color: var(--gray); }
.form-error {
  display: none;
  margin-top: 1.2rem;
  padding: 0.95rem 1.1rem;
  border-radius: 10px;
  background: #fff4f4;
  border: 2px solid #f3c0c0;
  color: #8a1c1c;
  font-size: 0.92rem;
  text-align: center;
}
.form-error.show { display: block; }
.form-error strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--deep-blue);
  margin-bottom: 0.45rem;
}
.form-error p + p { margin-top: 0.55rem; }
.form-error a { color: var(--ocean-blue); font-weight: 600; }
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Contact info cards ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-top: 5px solid var(--tropical-green);
}
.info-card .icon { font-size: 1.9rem; margin-bottom: 0.5rem; }
.info-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--deep-blue);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.info-card p, .info-card a { font-size: 0.93rem; color: var(--gray); }
.info-card a { color: var(--ocean-blue); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(600px 300px at 15% 120%, rgba(124,238,9,0.35), transparent 60%),
    linear-gradient(120deg, var(--ocean-blue), var(--aqua));
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-transform: uppercase;
}
.cta-band p { margin: 0.8rem auto 1.8rem; max-width: 560px; color: rgba(255,255,255,0.92); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--deep-blue);
  padding: 1.1rem 1.4rem;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  color: var(--tropical-green);
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.4rem 1.2rem; color: var(--gray); font-size: 0.95rem; }

/* ---------- Footer — light banner theme ---------- */
.site-footer {
  background: var(--off-white);
  color: var(--gray);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid #e4ebf4;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e4ebf4;
}
.footer-brand img { height: 90px; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; }
.site-footer h4 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--deep-blue);
  margin-bottom: 0.9rem;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--gray); font-size: 0.92rem; }
.site-footer a:hover { color: var(--ocean-blue); }
.footer-contact li { font-size: 0.92rem; }
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: #97a2b5;
}
.footer-bottom a { color: #7b8698; }
.footer-bottom a:hover { color: var(--ocean-blue); }

/* ---------- Privacy / legal ---------- */
.policy {
  max-width: 720px;
  margin: 0 auto;
}
.policy h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--deep-blue);
  margin: 2rem 0 0.6rem;
}
.policy p,
.policy li {
  color: var(--gray);
  margin-bottom: 0.75rem;
}
.policy ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.policy a { font-weight: 600; }

/* ---------- Custom 404 ---------- */
.error-page {
  text-align: center;
  padding: 2.5rem 0 1rem;
}
.error-page .hero-logo {
  width: min(220px, 48vw);
  margin: 0 auto 1.4rem;
}
.error-code {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tropical-green);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.error-links {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1.2rem;
    box-shadow: 0 12px 20px rgba(1,37,131,0.12);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: inline-block; padding: 0.8rem 0; border-bottom: none; }
  .nav-links .btn { margin-top: 0.5rem; }

  .split { grid-template-columns: 1fr; gap: 1.8rem; }
  .split.reverse .split-media { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .calendar-embed { max-height: 480px; }
}
