/*
Theme Name: Christian Wenzel Recruiting
Theme URI: https://example.com/christian-wenzel-recruiting
Author: Codex
Description: A premium soccer recruiting website theme for Christian Wenzel, central midfielder.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: christian-wenzel-recruiting
*/

:root {
  --navy: #062B55;
  --royal: #0E5AA7;
  --white: #FFFFFF;
  --gold: #D4AF37;
  --gray: #F5F7FA;
  --ink: #122033;
  --muted: #5E6B7C;
  --line: rgba(6, 43, 85, 0.14);
  --shadow: 0 22px 60px rgba(6, 43, 85, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 43, 85, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  font-family: "Montserrat", Arial, sans-serif;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 13px;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font: 600 11px/1.2 "Inter", Arial, sans-serif;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

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

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--white);
  border-radius: 6px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 0;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 43, 85, 0.98) 0%, rgba(6, 43, 85, 0.86) 42%, rgba(6, 43, 85, 0.26) 72%, rgba(6, 43, 85, 0.16) 100%),
    linear-gradient(180deg, rgba(6, 43, 85, 0.12), rgba(6, 43, 85, 0.76));
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 72px 0 120px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(48px, 7vw, 86px);
}

.hero-subtitle {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 800;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 14px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.24);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.quick-stats {
  position: relative;
  z-index: 3;
  width: min(100% - 32px, var(--max));
  margin: -86px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow);
}

.stat-card {
  min-height: 148px;
  padding: 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-value {
  margin-top: 10px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
}

.stat-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

section {
  padding: 96px 0;
}

.section-gray {
  background: var(--gray);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.profile-grid,
.report-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.panel,
.info-card,
.clip-card,
.timeline-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(6, 43, 85, 0.06);
}

.panel {
  padding: 30px;
}

.panel h3,
.info-card h3,
.clip-card h3,
.timeline-item h3 {
  color: var(--navy);
  font-size: 21px;
}

.facts {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.fact {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.fact span:first-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.fact span:last-child {
  color: var(--navy);
  font-weight: 800;
}

.strengths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card {
  padding: 24px;
}

.info-card p,
.clip-card p,
.timeline-item p,
.panel p {
  color: var(--muted);
}

.gold-rule {
  width: 68px;
  height: 3px;
  margin: 18px 0;
  background: var(--gold);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.clips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.video-library {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.video-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(6, 43, 85, 0.06);
}

.video-card .video-frame {
  border-radius: 0;
  box-shadow: none;
}

.video-card-content {
  padding: 18px;
}

.video-card h3 {
  color: var(--navy);
  font-size: 18px;
}

.video-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.social-card {
  min-height: 100%;
  padding: 22px;
  display: grid;
  align-content: space-between;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--royal));
  border-radius: 8px;
  border-top: 3px solid var(--gold);
}

.social-card p {
  color: rgba(255, 255, 255, 0.78);
}

.clip-card {
  padding: 22px;
}

.clip-number {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.report-card {
  padding: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.report-card h3 {
  color: var(--white);
  font-size: 28px;
}

.report-card p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-mark {
  color: var(--gold);
  font-size: 54px;
  line-height: 1;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metric {
  min-height: 162px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--royal));
  border-radius: 8px;
  border-top: 3px solid var(--gold);
}

.metric strong {
  display: block;
  margin-top: 12px;
  font: 900 34px/1 "Montserrat", Arial, sans-serif;
}

.metric span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.future-stats {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 24px;
}

.timeline-date {
  color: var(--royal);
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.gallery-tile {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: end start;
  margin: 0;
  color: var(--white);
  background: var(--royal);
  border-radius: 8px;
  overflow: hidden;
}

.gallery-tile.large {
  grid-row: span 2;
  min-height: 540px;
}

.gallery-stack {
  display: grid;
  gap: 18px;
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 43, 85, 0.04), rgba(6, 43, 85, 0.78));
}

.gallery-tile figcaption {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.gallery-tile h3 {
  font-size: 24px;
}

.contact-panel {
  padding: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.contact-panel h2 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 52px);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 750;
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #041D39;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

@media (max-width: 940px) {
  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    inset: 76px 0 auto 0;
    display: none;
    padding: 18px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--navy);
  }

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

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .quick-stats,
  .metrics,
  .clips,
  .video-library {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .profile-grid,
  .report-grid,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(6, 43, 85, 0.9) 0%, rgba(6, 43, 85, 0.9) 52%, rgba(6, 43, 85, 0.72) 100%);
  }

  .hero img {
    object-position: 61% center;
  }

  .hero-inner {
    padding: 44px 0 64px;
  }

  section {
    padding: 72px 0;
  }

  .quick-stats,
  .metrics,
  .clips,
  .video-library,
  .strengths {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .cta-row .button {
    width: 100%;
  }
}
