/* =============================================
   SOSO — Alpine Editorial Dark
   Fonts: Bebas Neue + Crimson Pro + Space Mono
   ============================================= */

:root {
  --navy:       #08091a;
  --navy-mid:   #0f1328;
  --navy-light: #1a2040;
  --ice:        #00d4ff;
  --snow:       #f0f6ff;
  --white:      #ffffff;
  --gold:       #ffd200;
  --silver:     #c0d0e0;
  --green:      #00e88a;
  --text-dim:   #8899bb;
  --text-body:  #c8d8f0;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--navy);
  color: var(--snow);
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
}

.nav.scrolled {
  background: rgba(8, 9, 26, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.9rem 3rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--ice);
  letter-spacing: 0.15em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--ice) !important;
  color: var(--navy) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--white) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ice);
  transition: all 0.3s;
}
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(0, 212, 255, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 45%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: -5%; right: -5%;
  height: 160px;
  background: var(--navy);
  clip-path: polygon(0 65%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(14rem, 30vw, 28rem);
  color: rgba(0, 212, 255, 0.025);
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.snow-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -24px;
  color: rgba(200, 225, 255, 0.75);
  animation: snowfall linear infinite;
  pointer-events: none;
}

@keyframes snowfall {
  0%   { transform: translateY(-24px) rotate(0deg); }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero-badges {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: var(--ice);
  border: 1px solid rgba(0, 212, 255, 0.28);
  padding: 0.38rem 0.85rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  background: rgba(0, 212, 255, 0.05);
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 18vw, 16rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: center;
  gap: 0.08em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.name-so  { color: var(--white); display: inline-block; }
.name-so2 {
  color: var(--ice);
  display: inline-block;
  text-shadow: 0 0 70px rgba(0, 212, 255, 0.45);
}

.hero-tagline {
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.btn-primary {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
  background: var(--ice);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 212, 255, 0.28);
}

.btn-insta {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--ice);
  border: 1px solid rgba(0, 212, 255, 0.38);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: all 0.3s var(--ease);
}
.btn-insta:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--ice);
  transform: translateY(-2px);
}
.insta-icon { width: 17px; height: 17px; flex-shrink: 0; }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeUp 1s var(--ease) 0.9s both;
}
.scroll-indicator span {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--ice), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ---- SHARED SECTION ---- */
.section { padding: 7rem 0; position: relative; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: var(--ice);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  opacity: 0.75;
}
.section-label.light { color: rgba(255, 255, 255, 0.45); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
  color: var(--white);
}
.section-title em { color: var(--ice); font-style: normal; }
.section-title.light em { color: rgba(255,255,255,0.55); }

/* ---- ÜBER MICH ---- */
.ueber { background: var(--navy); }

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.ueber-text .lead {
  font-size: 1.38rem;
  font-weight: 400;
  font-style: italic;
  color: var(--snow);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.ueber-text p {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.85;
}
.ueber-text strong { color: var(--ice); font-weight: 600; }

.ueber-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.stat-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.8rem 1.4rem;
  border-radius: 3px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.stat-card.visible   { opacity: 1; transform: translateY(0); }
.stat-card:nth-child(2) { transition-delay: 0.1s; }
.stat-card:nth-child(3) { transition-delay: 0.2s; }
.stat-card:nth-child(4) { transition-delay: 0.3s; }

.stat-card.accent {
  background: rgba(0, 212, 255, 0.07);
  border-color: rgba(0, 212, 255, 0.2);
}
.stat-card.dark { background: var(--navy-light); }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  color: var(--ice);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.stat-card.accent .stat-num { color: var(--gold); }

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- NACHHILFE ---- */
.nachhilfe {
  background: var(--navy-light);
  overflow: hidden;
}

.nachhilfe-bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(0, 212, 255, 0.025);
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}

.nachhilfe-intro {
  max-width: 580px;
  margin-bottom: 2.8rem;
}
.nachhilfe-intro p {
  font-size: 1.22rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.75;
}
.nachhilfe-intro strong { color: var(--ice); font-style: normal; }

.nachhilfe-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.4rem;
}

.n-card {
  background: rgba(8, 9, 26, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 1.75rem;
  border-radius: 3px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.n-card.visible { opacity: 1; transform: translateY(0); }
.n-card:nth-child(2) { transition-delay: 0.1s; }
.n-card:nth-child(3) { transition-delay: 0.2s; }

.n-card.featured {
  border-color: rgba(0, 212, 255, 0.22);
  background: rgba(0, 212, 255, 0.055);
}
.n-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.n-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.7rem;
}
.n-card p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
}

.nachhilfe-badge {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.nachhilfe-badge span {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--ice);
  opacity: 0.65;
  letter-spacing: 0.06em;
}

/* ---- SNOWBOARD ---- */
.snowboard {
  background: var(--navy);
  overflow: hidden;
  text-align: center;
}

.snow-container-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.35;
}

.snow-title em { color: var(--ice); font-style: normal; }

.medals-display {
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.medal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.medal.visible { opacity: 1; transform: translateY(0); }
.silver-medal { transition-delay: 0.15s; }

.medal-circle {
  font-size: 5.5rem;
  filter: drop-shadow(0 0 22px rgba(255, 210, 0, 0.38));
  animation: medalFloat 4.5s ease-in-out infinite;
}
.silver-medal .medal-circle {
  filter: drop-shadow(0 0 22px rgba(192, 208, 224, 0.38));
  animation-delay: -2.2s;
}
@keyframes medalFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.medal-info { text-align: center; }

.medal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.85rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.silver-medal .medal-title { color: var(--silver); }

.medal-sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.snowboard-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.sb-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.sb-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
}
.sb-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.sb-divider {
  font-size: 2.5rem;
  color: var(--ice);
  opacity: 0.25;
  line-height: 1;
}

.snowboard-quote {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-dim);
  max-width: 380px;
  margin: 0 auto;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.snow-deco {
  position: absolute;
  font-size: 8rem;
  color: rgba(0, 212, 255, 0.04);
  user-select: none;
  pointer-events: none;
  animation: snowRot 22s linear infinite;
}
.snow-deco        { top: 10%;    left: 4%;  }
.snow-deco-2      { top: 48%;    right: 5%; animation-delay: -8s;  font-size: 5rem; }
.snow-deco-3      { bottom: 10%; left: 32%; animation-delay: -15s; font-size: 6rem; }
@keyframes snowRot {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---- EHRENAMT ---- */
.ehrenamt { background: var(--navy-mid); }

.ehrenamt-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
}

.ehrenamt-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: rgba(0, 232, 138, 0.04);
  border: 1px solid rgba(0, 232, 138, 0.14);
  padding: 2.5rem;
  border-radius: 3px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.ehrenamt-card.visible { opacity: 1; transform: translateX(0); }

.ehrenamt-icon { font-size: 3rem; flex-shrink: 0; }

.ehrenamt-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.ehrenamt-years {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.ehrenamt-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
}

.ehrenamt-values {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.value-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--green);
  border: 1px solid rgba(0, 232, 138, 0.2);
  padding: 0.6rem 1.1rem;
  border-radius: 2px;
  white-space: nowrap;
  background: rgba(0, 232, 138, 0.04);
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.value-tag.visible       { opacity: 1; transform: translateX(0); }
.value-tag:nth-child(2)  { transition-delay: 0.08s; }
.value-tag:nth-child(3)  { transition-delay: 0.16s; }
.value-tag:nth-child(4)  { transition-delay: 0.24s; }

/* ---- KONTAKT ---- */
.kontakt {
  background: linear-gradient(158deg, var(--navy-light) 0%, var(--navy) 100%);
  text-align: center;
  padding-bottom: 0;
}

.kontakt-lead {
  font-size: 1.22rem;
  font-style: italic;
  color: var(--text-body);
  max-width: 460px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.kontakt-insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 1.05rem 2.4rem;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: all 0.3s var(--ease);
  margin-bottom: 2.5rem;
}
.kontakt-insta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 42px rgba(220, 39, 67, 0.38);
}

.kontakt-tags {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.kontakt-tags span {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-dim);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.38rem 0.85rem;
  border-radius: 2px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.8rem;
}
.footer p {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
}

/* ---- KEYFRAMES ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav         { padding: 1.1rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(8, 9, 26, 0.97);
    padding: 1.5rem 2rem 2rem;
    gap: 1.4rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }

  .container { padding: 0 1.5rem; }
  .section    { padding: 5rem 0; }

  .ueber-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .nachhilfe-cards   { grid-template-columns: 1fr; }
  .ehrenamt-content  { grid-template-columns: 1fr; gap: 2rem; }
  .ehrenamt-values   { flex-direction: row; flex-wrap: wrap; }
  .value-tag         { transform: translateY(12px) !important; }
  .value-tag.visible { transform: translateY(0) !important; }
}

@media (max-width: 600px) {
  .section     { padding: 4rem 0; }
  .hero-name   { font-size: clamp(5rem, 24vw, 7rem); }
  .ueber-stats { grid-template-columns: 1fr 1fr; }
  .medals-display    { gap: 2.5rem; flex-direction: column; align-items: center; }
  .snowboard-stats   { gap: 1.5rem; }
  .ehrenamt-card     { flex-direction: column; gap: 1rem; }
  .kontakt-tags      { gap: 0.6rem; }
}
