/* ==========================================================================
   Argjend Racaj — Spielerprofil
   Design-Sprache: abgeleitet vom echten Iron-Scorps-Trikot (Schwarz + Gold→
   Orange-Verlauf) und der Hallen-Bestuhlung im Foto (Court-Blau). Die
   Zahlen-/Stat-Elemente sind bewusst wie eine Hallen-Anzeigetafel gesetzt.
   ========================================================================== */

@import url('fonts.css');

:root {
  --ink: #0d0d0f;
  --ink-soft: #17181c;
  --ink-line: rgba(245, 241, 232, 0.14);
  --gold: #f2b441;
  --ember: #e2661f;
  --court-blue: #2c517e;
  --court-blue-bright: #4d84c4;
  --chalk: #f5f1e8;
  --chalk-dim: #565149;
  --chalk-line: rgba(13, 13, 15, 0.12);

  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --wrap: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 3px solid var(--court-blue-bright);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.gradient-text {
  background: linear-gradient(180deg, #ffffff 0%, var(--gold) 55%, var(--ember) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--ink-line);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.nav-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--chalk);
}

.nav-mark span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--chalk);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--ember));
  color: var(--ink) !important;
  padding: 9px 18px;
  border-radius: 3px;
  font-weight: 800 !important;
  opacity: 1 !important;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--chalk);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 640px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0 64px 28px;
  max-width: 620px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--ember);
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 9vw, 104px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.hero-position {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--chalk);
  opacity: 0.85;
  margin: 0 0 30px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.badge {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  border: 1px solid var(--ink-line);
  padding: 7px 13px;
  border-radius: 3px;
  color: var(--chalk);
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--ember));
  color: var(--ink);
}

.btn-primary:hover { filter: brightness(1.06); }

.btn-outline {
  border-color: rgba(245, 241, 232, 0.4);
  color: var(--chalk);
}

.btn-outline:hover { border-color: var(--chalk); }

.hero-photo {
  position: relative;
}

.hero-photo picture,
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(13,13,15,0.15) 28%, rgba(13,13,15,0) 55%);
  z-index: 1;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,13,15,0.55) 0%, rgba(13,13,15,0) 30%);
  z-index: 1;
}

/* ---------- Scoreboard strip ---------- */
.scoreboard {
  background: var(--ink-soft);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}

.scoreboard .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.score-cell {
  padding: 34px 20px;
  text-align: center;
  border-left: 1px solid var(--ink-line);
}

.score-cell:first-child { border-left: none; }

.score-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 42px);
  color: var(--gold);
  text-shadow: 0 0 18px rgba(242, 180, 65, 0.35);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.score-label {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chalk);
  opacity: 0.65;
}

/* ---------- Bio ---------- */
.bio {
  padding: 88px 0;
}

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

.section-tag {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
  display: block;
}

.bio h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 46px);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.bio-text p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 16.5px;
}

.bio-text p:last-child { margin-bottom: 0; }

.tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tag-chip {
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 8px 14px;
  border-radius: 3px;
  background: var(--ink);
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ---------- Timeout / Contact ---------- */
.timeout {
  background: var(--ink);
  color: var(--chalk);
  padding: 96px 0;
  position: relative;
}

.timeout::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 26px, transparent 26px 40px);
  opacity: 0.7;
}

.timeout-inner {
  max-width: 640px;
}

.timeout h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 0.98;
  margin: 0 0 20px;
}

.timeout p {
  opacity: 0.82;
  font-size: 16.5px;
  margin: 0 0 34px;
  max-width: 480px;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--ink-line);
  padding: 16px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  min-width: 260px;
}

.contact-item .ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink);
  font-size: 15px;
}

.contact-item small {
  display: block;
  font-weight: 500;
  opacity: 0.6;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

#email-link {
  cursor: pointer;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--chalk);
  border-top: 3px dashed var(--chalk-line);
  padding: 40px 0 30px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.03em;
}

.footer-mark span { color: var(--ember); }

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--chalk-dim);
}

.footer-links a:hover { color: var(--ink); }

.footer-fine {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--chalk-dim);
}

/* ---------- Cookie consent banner ---------- */
#cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 620px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--chalk);
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  padding: 22px 24px;
  z-index: 100;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  font-size: 14px;
}

#cookie-consent.hidden { display: none; }

#cookie-consent p {
  margin: 0 0 16px;
  opacity: 0.9;
}

#cookie-consent a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 18px;
  font-size: 13px;
}

/* ---------- Simple legal pages ---------- */
.legal {
  padding: 64px 0 96px;
  max-width: 760px;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 48px);
  text-transform: uppercase;
  margin: 0 0 34px;
}

.legal h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 19px;
  margin: 38px 0 12px;
}

.legal p, .legal li { color: var(--ink); font-size: 15.5px; }
.legal a { color: var(--court-blue); text-decoration: underline; }
.legal .back-link { display: inline-block; margin-bottom: 30px; font-weight: 700; color: var(--ember); }

.reveal-link {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed var(--court-blue);
  padding-bottom: 1px;
}

.reveal-link.revealed {
  border-bottom-style: solid;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { height: 380px; order: -1; }
  .hero-copy { padding: 44px 0 48px; max-width: none; }
  .hero-photo::before { background: linear-gradient(180deg, rgba(13,13,15,0) 55%, var(--ink) 100%); }
  .bio-grid { grid-template-columns: 1fr; gap: 30px; }
  .scoreboard .wrap { grid-template-columns: 1fr; }
  .score-cell { border-left: none; border-top: 1px solid var(--ink-line); }
  .score-cell:first-child { border-top: none; }
  .nav-links a:not(.nav-cta) { display: none; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero-copy { padding-left: 0; }
  .contact-item { min-width: 100%; }
}
