/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #D4A017;
  --gold-dark: #A67C00;
  --black: #0a0a0a;
  --card: #111111;
  --border: #222222;
  --white: #ffffff;
  --muted: #888888;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
}

.gold { color: var(--gold); }
.muted { color: var(--muted); }

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

section { padding: 80px 0; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 60%, var(--black) 100%),
    url('images/elite_performance_coaching.jpg') center/cover no-repeat;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  margin-bottom: 20px;
  max-width: 800px;
}

.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header .lead {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ── Services Cards ── */
.services { background: var(--black); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--gold-dark);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 20px;
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── About Preview (home) ── */
.about-preview {
  background: #0d0d0d;
}

.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-preview-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--gold);
  margin-bottom: 16px;
}

.about-preview-inner .subtitle {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.about-preview-inner p {
  color: var(--muted);
  margin-bottom: 32px;
}

.about-img {
  border-radius: 4px;
  border: 2px solid var(--border);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ── Stats ── */
.stats {
  background: var(--gold);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
}

/* ── CTA Band ── */
.cta-band {
  background: #0d0d0d;
  text-align: center;
  padding: 80px 24px;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--gold);
  margin-bottom: 12px;
}

.cta-band .subtitle {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.cta-band p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 24px 60px;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.8), var(--black)),
    url('https://images.unsplash.com/photo-1529900748604-07564a03e7a6?w=1600&q=80') center/cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
}

/* ── About Page ── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gold);
  margin-bottom: 12px;
}

.about-content .subtitle {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.about-photos img {
  border-radius: 4px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--border);
}

/* ── Coach Quote ── */
.coach-section {
  background: #0d0d0d;
  padding: 80px 0;
}

.coach-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}

.coach-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto;
}

.coach-quotes { display: flex; flex-direction: column; gap: 28px; }

blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
}

.coach-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-top: 20px;
}

/* ── Contact Page ── */
.contact-section { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--muted);
}

.contact-detail .icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail a:hover { color: var(--gold); }

/* ── Form ── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

input, select, textarea {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 0.2s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea { resize: vertical; min-height: 120px; }

select option { background: var(--card); }

.checkboxes { display: flex; flex-direction: column; gap: 10px; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.gdpr-label {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  width: 100%;
}

.gdpr-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

/* ── Football Camps / Testimonials Placeholder ── */
.coming-soon {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 16px;
  padding: 80px 24px;
}

.coming-soon .icon { font-size: 4rem; }
.coming-soon h2 { font-size: 2rem; color: var(--gold); }
.coming-soon p { color: var(--muted); max-width: 500px; }

/* ── Privacy ── */
.privacy-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.privacy-content h2 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.privacy-content p { margin-bottom: 20px; }

/* ── Footer ── */
footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 240px;
}

.footer-brand .nav-logo-text { font-size: 1.1rem; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-col address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col address a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--muted);
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 768px) {
  section { padding: 56px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .about-preview-inner,
  .about-content,
  .coach-inner,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .coach-inner { text-align: center; }

  .stats-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .form-row { grid-template-columns: 1fr; }

  .about-photos img:first-child { height: 200px; }
}
