/* ============================================
   TOKENS
   ============================================ */
:root {
  --red:        #DC1F00;
  --red-dark:   #b81900;
  --dark:       #1C1B1B;
  --gray:       #AEBAC1;
  --gray-light: #f2f4f5;
  --white:      #ffffff;
  --border:     #dde3e6;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --t-sm:   clamp(0.875rem, 0.82rem + 0.22vw, 1rem);
  --t-base: clamp(1rem,     0.92rem + 0.32vw, 1.125rem);
  --t-md:   clamp(1.125rem, 1rem   + 0.5vw,  1.375rem);
  --t-lg:   clamp(1.5rem,   1.2rem + 1.2vw,  2rem);
  --t-xl:   clamp(2rem,     1.4rem + 2.5vw,  3.25rem);
  --t-2xl:  clamp(2.75rem,  1.8rem + 4vw,    5rem);

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.75rem;
  --sp-lg: 3rem;
  --sp-xl: 5rem;

  --section-py: clamp(3rem, 7vw, 6rem);
  --max-w:      1340px;
  --pad-x:      clamp(1.25rem, 5vw, 3rem);

  --r-sm: 4px;
  --r-md: 10px;

  --shadow-card: 0 2px 12px rgba(0,0,0,.12);
  --ease:        150ms ease;
}


/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img    { display: block; max-width: 100%; height: auto; }
ul     { list-style: none; }
a      { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
mark   { background: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  text-wrap: balance;
}

p { text-wrap: pretty; }


/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}


/* ============================================
   BUTTON
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7em 2.2em;
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(220,31,0,.30);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220,31,0,.38);
}

.btn:active { transform: none; }


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Roter Akzentstreifen oben */
.hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--red);
  z-index: 2;
}

.hero__media {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(28,27,27,.05) 0%,
    rgba(28,27,27,.15) 35%,
    rgba(28,27,27,.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-xl) clamp(3rem, 8vw, 5rem);
  color: var(--white);
}

.hero__heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--sp-md);
}

.hero__heading span {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
}

.hero__tag {
  display: inline-block;
  margin-top: var(--sp-sm);
  font-family: var(--font-body);
  font-size: var(--t-md);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--white);
  background: var(--red);
  padding: .3em .9em;
  border-radius: var(--r-sm);
}

.hero__cta-text {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: var(--sp-sm);
}

/* Desktop: Split-Layout */
@media (min-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 48vh;
    max-height: 55vh;
    align-items: stretch;
    background-color: #f4f1ec;
    background-image: repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 20px,
      rgba(0,0,0,.022) 20px,
      rgba(0,0,0,.022) 21px
    );
  }

  .hero__media {
    position: static;
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
  }

  .hero__image {
    width: 55vh;
    height: 55vh;
    max-width: none;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    flex-shrink: 0;
    transform: translateX(24%);
    box-shadow: 0 8px 48px rgba(0,0,0,.18);
  }

  .hero__overlay { display: none; }

  .hero__content {
    grid-column: 1;
    grid-row: 1;
    max-width: calc(var(--max-w) / 2);
    margin-inline-start: auto;
    margin-inline-end: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: var(--sp-xl);
  }

  .hero__heading span { color: var(--dark); }
  .hero__cta-text     { color: var(--dark); }
}


/* ============================================
   SECTION – shared
   ============================================ */
.section {
  padding-block: var(--section-py);
}

.section--red   { background: var(--red);        color: var(--white); }
.section--light { background: var(--gray-light); }

.section__kicker {
  font-size: var(--t-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: var(--sp-xs);
  opacity: .85;
}

.section__heading {
  font-size: var(--t-xl);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
  color: var(--white);
}

.section__heading--dark { color: var(--dark); }

.section__heading::after {
  content: '';
  display: block;
  width: 4rem;
  height: 5px;
  background: rgba(255,255,255,.4);
  margin-top: .5rem;
  border-radius: 2px;
}

.section__heading--dark::after { background: var(--red); opacity: 1; }

.section__body-text {
  font-size: var(--t-md);
  line-height: 1.75;
  color: rgba(255,255,255,.92);
}

.section__body-text--cols {
  columns: 2;
  column-gap: var(--sp-lg);
}

.section__body-text--cols p { margin-bottom: var(--sp-sm); break-inside: avoid; }

@media (max-width: 899px) {
  .section__body-text--cols { columns: 1; }
}

.section__lead {
  font-size: var(--t-md);
  font-weight: 500;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  border-left: 4px solid var(--red);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-top: var(--sp-sm);
  max-width: 780px;
}


/* ============================================
   CLUB LAYOUT
   ============================================ */
.club-layout {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  align-items: center;
}

.club-layout__logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .club-layout {
    flex-direction: row;
    gap: clamp(var(--sp-lg), 6vw, var(--sp-xl));
  }

  .club-layout__logo { flex: 0 0 260px; }
}


/* ============================================
   FEATURE LIST
   ============================================ */
.feature-list {
  display: grid;
  gap: var(--sp-sm);
}

@media (min-width: 680px)  { .feature-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .feature-list { grid-template-columns: repeat(3, 1fr); } }

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: var(--sp-sm) var(--sp-md);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.feature-list__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0,0,0,.16);
}

.feature-list__chevron {
  flex-shrink: 0;
  margin-top: .2em;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--red);
  clip-path: polygon(0 15%, 55% 15%, 55% 0, 100% 50%, 55% 100%, 55% 85%, 0 85%);
}


/* ============================================
   INFO GRID & CARDS
   ============================================ */
.info-grid {
  display: grid;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

@media (min-width: 640px) { .info-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  box-shadow: var(--shadow-card);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,.13);
}

.info-card__heading {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: var(--sp-sm);
}

.info-card__text {
  font-size: var(--t-md);
  font-weight: 500;
  color: var(--dark);
  opacity: .75;
  line-height: 1.7;
}

.info-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 1.75rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--sp-xs);
}

.info-card__email {
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--dark);
  opacity: .8;
  word-break: break-all;
  transition: color var(--ease), opacity var(--ease);
}

.info-card__email:hover {
  color: var(--red);
  opacity: 1;
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #2a2828;
  border-top: 4px solid var(--red);
  padding-block: var(--sp-md);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
}

.site-footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}

.site-footer__nav {
  display: flex;
  gap: var(--sp-md);
}

.site-footer__nav a {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--gray);
  transition: color var(--ease);
}

.site-footer__nav a:hover { color: var(--white); }

.site-footer small {
  font-size: var(--t-sm);
  color: var(--gray);
}


/* ============================================
   RESPONSIVE – kleine Bildschirme
   ============================================ */
@media (max-width: 479px) {
  .hero__heading span { letter-spacing: 0; }
  .info-grid          { grid-template-columns: 1fr; }
  .site-footer__inner { flex-direction: column; text-align: center; }
  .site-footer__nav   { justify-content: center; }
}
