/* ============================================================
   Hamburg Junior Tigers — Design-Prototyp
   Look: „Flutlicht" — Tiefschwarz, Gold, Kreideweiß
   Typo: Barlow Condensed (Display, Versalien) + Barlow (Text)
   ============================================================ */

:root {
  --black: #0c0b09;
  --coal: #161410;
  --night: #1f1c16;
  --gold: #c79a3b;          /* Logo-Gold */
  --gold-bright: #f0b428;   /* Akzent */
  --chalk: #f5f1e6;         /* Offwhite */
  --paper: #fbf9f3;
  --ink: #211e18;
  --line: rgba(199, 154, 59, .35);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --cut: 64px;              /* diagonale Sektionskante */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--chalk);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
}
h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .85rem;
  color: var(--gold-bright);
  margin-bottom: .9rem;
}
.tag::before { content: "— "; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: .85rem 1.9rem;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold-bright); color: var(--black); }
.btn--gold:hover { background: var(--chalk); }
.btn--ghost { background: transparent; color: var(--chalk); box-shadow: inset 0 0 0 2px var(--chalk); }
.btn--ghost:hover { background: var(--chalk); color: var(--black); }
.btn--dark { background: var(--black); color: var(--gold-bright); }
.btn--ghost-dark { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: var(--gold-bright); }

/* Platzhalter-Kennzeichnung */
.placeholder-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px dashed var(--gold);
  padding: .1rem .5rem;
  margin-right: .4rem;
  vertical-align: middle;
}
.placeholder-box {
  border: 1px dashed var(--line);
  padding: 1rem 1.2rem;
  font-size: .92rem;
  color: rgba(245, 241, 230, .75);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .6rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(12,11,9,.96), rgba(12,11,9,.88));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav__brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.nav__brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 6px; }
.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  font-size: .95rem;
  letter-spacing: .06em;
}
.nav__menu { display: flex; gap: clamp(.8rem, 2vw, 1.8rem); margin-left: auto; }
.nav__menu a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 1rem;
  text-decoration: none;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav__menu a:hover, .nav__menu a.active { color: var(--gold-bright); border-color: var(--gold-bright); }
.nav__cta {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  background: var(--gold-bright);
  color: var(--black);
  padding: .6rem 1.4rem;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background .18s;
}
.nav__cta:hover { background: var(--chalk); }
.nav__burger { display: none; background: none; border: none; cursor: pointer; }
.nav__burger span { display: block; width: 26px; height: 3px; background: var(--gold-bright); margin: 5px 0; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
  padding: 7rem 1.5rem 5rem;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(199,154,59,.18), transparent 55%),
    linear-gradient(180deg, rgba(12,11,9,.72) 0%, rgba(12,11,9,.45) 45%, rgba(12,11,9,.94) 100%);
}
.hero__logo {
  width: clamp(110px, 16vw, 170px);
  margin: 0 auto 1.2rem;
  border-radius: 14px;
  box-shadow: 0 0 60px rgba(240,180,40,.35);
  animation: heroPop .9s cubic-bezier(.2,.9,.3,1.2) both;
}
.hero__kicker {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: clamp(.8rem, 1.6vw, 1rem);
  color: var(--gold-bright);
  animation: heroUp .7s .15s ease both;
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  font-weight: 800;
  margin: .6rem 0 .8rem;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
  animation: heroUp .7s .25s ease both;
}
.hero h1 span { color: var(--gold-bright); }
.hero__claim {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 2rem;
  animation: heroUp .7s .35s ease both;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: heroUp .7s .45s ease both; }
.hero__scroll {
  position: absolute; bottom: 1.4rem; left: 50%;
  translate: -50% 0;
  color: var(--gold-bright);
  animation: bounce 1.6s infinite;
  font-size: .9rem;
}
@keyframes heroPop { from { opacity: 0; scale: .7; } to { opacity: 1; scale: 1; } }
@keyframes heroUp { from { opacity: 0; translate: 0 24px; } to { opacity: 1; translate: 0 0; } }
@keyframes bounce { 0%,100% { translate: -50% 0; } 50% { translate: -50% 8px; } }

/* ============ COUNTDOWN ============ */
.countdown {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--gold-bright);
  color: var(--black);
  padding: 2.2rem clamp(1.5rem, 6vw, 5rem) calc(2.2rem + var(--cut) / 2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), 0 100%);
  margin-top: calc(-1 * var(--cut) / 2);
}
.countdown .tag { color: var(--black); opacity: .65; margin-bottom: .3rem; }
.countdown h2 { font-size: clamp(1.6rem, 3.6vw, 2.6rem); }
.countdown p { font-weight: 600; }
.countdown__clock { display: flex; gap: .7rem; }
.countdown__clock div {
  background: var(--black);
  color: var(--gold-bright);
  min-width: 86px;
  padding: .8rem .6rem .6rem;
  text-align: center;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.countdown__clock b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__clock small {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .68rem;
  color: var(--chalk);
}

/* ============ INTRO ============ */
.intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
  background:
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(245,241,230,.03) 119px 120px),
    var(--black);
}
.intro__text p { margin-bottom: 1rem; color: rgba(245,241,230,.85); max-width: 56ch; }
.intro__text strong { color: var(--gold-bright); }
.intro__media { position: relative; }
.intro__media img:first-child { clip-path: polygon(0 0, 100% 24px, 100% 100%, 0 calc(100% - 24px)); }
.intro__media-small {
  position: absolute;
  width: 46%;
  bottom: -2.4rem;
  left: -2.4rem;
  border: 4px solid var(--gold);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
}

/* ============ SEKTIONS-KOPF ============ */
.section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem 3rem;
}
.section-head p { color: rgba(245,241,230,.78); margin-top: 1rem; }
.section-head--light p { color: rgba(33,30,24,.78); }

/* ============ MANNSCHAFTEN ============ */
.teams { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem); background: var(--coal); }
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.team--flip .team__media { order: 2; }
.team__media { position: relative; }
.team__media img { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), 0 100%); }
.team--flip .team__media img { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 34px)); }
.team__badge {
  position: absolute;
  top: -1.1rem; left: -1.1rem;
  background: var(--gold-bright);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  padding: .4rem 1.1rem;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.team--flip .team__badge { left: auto; right: -1.1rem; }
.team__text h3 { color: var(--gold-bright); margin-bottom: 1rem; }
.team__text p { color: rgba(245,241,230,.85); margin-bottom: 1rem; }
.team__info { display: grid; gap: .6rem; margin-top: 1.4rem; }
.team__info div {
  border-left: 3px solid var(--gold);
  padding: .35rem 0 .35rem 1rem;
  font-size: .95rem;
  color: rgba(245,241,230,.8);
}
.team__info b {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-bright);
  font-size: .85rem;
}
.teams__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.teams__values div {
  background: var(--night);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem;
  font-size: 1.6rem;
  text-align: center;
}
.teams__values b {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--gold-bright);
  margin: .5rem 0 .2rem;
}
.teams__values div { color: rgba(245,241,230,.7); }
.teams__values div > b + * { font-size: 1rem; }
.teams__values div { font-size: 1.05rem; }

/* ============ SPIELPLAN ============ */
.schedule {
  background:
    repeating-linear-gradient(0deg, transparent 0 89px, rgba(33,30,24,.05) 89px 90px),
    var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem) calc(clamp(4rem, 8vw, 7rem) + var(--cut));
  clip-path: polygon(0 var(--cut), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--cut));
}
.schedule .tag { color: #a07c2c; }
.schedule__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1240px;
  margin: 0 auto;
}
.schedule__list { list-style: none; display: grid; gap: .9rem; }
.match {
  display: grid;
  grid-template-columns: 84px 56px 1fr auto;
  gap: 1.1rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(33,30,24,.1);
  border-left: 4px solid var(--gold);
  padding: .9rem 1.1rem;
  box-shadow: 0 6px 18px rgba(33,30,24,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.match:hover { transform: translateX(4px); box-shadow: 0 10px 26px rgba(33,30,24,.12); }
.match__date {
  text-align: center;
  background: var(--black);
  color: var(--gold-bright);
  padding: .45rem .3rem .35rem;
  font-family: var(--font-display);
  line-height: 1;
}
.match__date b { display: block; font-size: 1.6rem; font-weight: 800; }
.match__date small { text-transform: uppercase; letter-spacing: .1em; font-size: .65rem; color: var(--chalk); }
.match__logo { width: 56px; height: 56px; object-fit: contain; }
.match__body small {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: #a07c2c;
}
.match__body h3 { font-size: 1.25rem; }
.match__body p { font-size: .88rem; color: rgba(33,30,24,.65); }
.match__result {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .95rem;
  padding: .4rem .8rem;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.match__result--win { background: #1f7a33; color: #fff; }
.match__result--lose { background: #9c2121; color: #fff; }
.match__result--open { background: rgba(33,30,24,.08); color: rgba(33,30,24,.6); }
.match--home { border-left-color: var(--gold-bright); }
.schedule__side { display: grid; gap: 1.2rem; align-content: start; }
.schedule__side video { width: 100%; box-shadow: 0 14px 40px rgba(33,30,24,.18); }
.schedule .placeholder-box { color: rgba(33,30,24,.7); border-color: rgba(160,124,44,.5); }

/* ============ VEREIN ============ */
.club { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem); background: var(--black); }
.club__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto 3.5rem;
}
.club__text p { color: rgba(245,241,230,.85); margin-bottom: 1.4rem; max-width: 56ch; }
.club__links { display: grid; gap: .5rem; }
.club__links a {
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  border-bottom: 1px solid transparent;
}
.club__links a:hover { border-color: var(--gold-bright); }
.club__media img { clip-path: polygon(24px 0, 100% 0, calc(100% - 24px) 100%, 0 100%); }
.club__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.card { background: var(--night); border: 1px solid var(--line); padding: 2rem; }
.card h3 { color: var(--gold-bright); margin-bottom: 1.2rem; }
.fees { list-style: none; display: grid; gap: .7rem; margin-bottom: 1rem; }
.fees li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: .5rem; }
.fees b { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-bright); }
.small { font-size: .85rem; color: rgba(245,241,230,.6); }
.downloads { list-style: none; display: grid; gap: .7rem; }
.downloads a { color: var(--chalk); text-decoration: none; }
.downloads a:hover { color: var(--gold-bright); }
.downloads .pending { color: rgba(245,241,230,.55); font-size: .9rem; }

/* ============ NEWS ============ */
.news {
  background:
    repeating-linear-gradient(0deg, transparent 0 89px, rgba(33,30,24,.05) 89px 90px),
    var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem) calc(clamp(4rem, 8vw, 7rem) + var(--cut));
  clip-path: polygon(0 0, 100% var(--cut), 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--cut));
}
.news .tag { color: #a07c2c; }
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1240px;
  margin: 0 auto 3rem;
}
.news-card {
  background: #fff;
  border: 1px solid rgba(33,30,24,.1);
  box-shadow: 0 8px 24px rgba(33,30,24,.07);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(33,30,24,.14); }
.news-card img { aspect-ratio: 3/2; object-fit: cover; }
.news-card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.news-card time {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  color: #a07c2c;
}
.news-card h3 { font-size: 1.3rem; }
.news-card p { font-size: .92rem; color: rgba(33,30,24,.72); flex: 1; }
.news-card__src { font-size: .78rem; font-style: italic; color: rgba(33,30,24,.55); }
.news__social { text-align: center; max-width: 760px; margin: 0 auto; }
.news__social p { margin-bottom: 1rem; font-weight: 600; }
.news__social div { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============ KONTAKT ============ */
.contact { padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem); background: var(--coal); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1240px;
  margin: 0 auto 4rem;
}
.contact__text p { color: rgba(245,241,230,.85); margin-bottom: 1rem; max-width: 52ch; }
.contact__text strong { color: var(--gold-bright); }
.contact__text video { margin-top: 1.5rem; clip-path: polygon(0 12px, 100% 0, 100% calc(100% - 12px), 0 100%); }
.contact__form { display: grid; gap: 1rem; align-content: start; }
.contact__form label {
  display: grid;
  gap: .35rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .85rem;
  color: var(--gold-bright);
}
.contact__form input, .contact__form select, .contact__form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--chalk);
  background: var(--night);
  border: 1px solid var(--line);
  padding: .8rem 1rem;
  outline: none;
  transition: border-color .15s;
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { border-color: var(--gold-bright); }
.form-note { margin-top: .2rem; }
.sponsors { max-width: 1240px; margin: 0 auto; text-align: center; }
.sponsors h3 { color: var(--gold-bright); margin-bottom: 1.4rem; }
.sponsors__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.sponsor-slot {
  border: 1px dashed var(--line);
  padding: 2.4rem 1rem;
  color: rgba(245,241,230,.5);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .15em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 3.5rem clamp(1.5rem, 6vw, 5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto 2.5rem;
}
.footer__logo { width: 72px; border-radius: 8px; margin-bottom: 1rem; }
.footer p { font-size: .9rem; color: rgba(245,241,230,.65); }
.footer h4 { color: var(--gold-bright); margin-bottom: .8rem; letter-spacing: .12em; }
.footer a {
  display: block;
  text-decoration: none;
  color: rgba(245,241,230,.75);
  font-size: .95rem;
  padding: .2rem 0;
}
.footer a:hover { color: var(--gold-bright); }
.footer__claim {
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 1rem;
  color: rgba(245,241,230,.5);
}
.footer__claim span { color: var(--gold-bright); }

/* ============ SCROLL-REVEAL ============ */
.reveal { opacity: 0; translate: 0 36px; transition: opacity .7s ease, translate .7s ease; }
.reveal.is-visible { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; translate: none; transition: none; }
  .hero__logo, .hero__kicker, .hero h1, .hero__claim, .hero__actions { animation: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .intro, .team, .team--flip,
  .schedule__grid, .club__inner, .contact__grid { grid-template-columns: 1fr; }
  .team--flip .team__media { order: 0; }
  .news__grid, .teams__values, .sponsors__row { grid-template-columns: 1fr; max-width: 560px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .intro__media-small { left: auto; right: -.6rem; bottom: -1.6rem; }
  .countdown { justify-content: center; text-align: center; }
}
@media (max-width: 820px) {
  .nav__menu {
    position: fixed;
    top: 62px; right: 0;
    flex-direction: column;
    background: var(--coal);
    border: 1px solid var(--line);
    padding: 1.4rem 2rem;
    translate: 110% 0;
    transition: translate .25s ease;
  }
  .nav__menu.open { translate: 0 0; }
  .nav__burger { display: block; margin-left: auto; }
  .nav__cta { display: none; }
  .match { grid-template-columns: 70px 1fr auto; }
  .match__logo { display: none; }
}
