/* ============================================================
   Simon Rose – Website Styles
   Schwarz + Rot, modern. Open Sans / Sora.
   ============================================================ */

:root {
  --black: #050505;
  --ink: #111014;
  --red: #e3000f;
  --red-dark: #b8000c;
  --red-glow: rgba(227, 0, 15, 0.45);
  --paper: #f7f5f2;
  --muted: #6b6a70;
  --line: rgba(17, 16, 20, 0.1);
  --white: #ffffff;
  --radius: 18px;
  --maxw: 1200px;
  --font-body: 'Open Sans', sans-serif;
  --font-display: 'Sora', 'Open Sans', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
body.menu-open { overflow: hidden; }

section[id] { scroll-margin-top: 5.5rem; }

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

/* Hintergrund-Glow */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 85% -10%, var(--red-glow), transparent 60%),
    radial-gradient(40rem 30rem at -10% 40%, rgba(227,0,15,0.08), transparent 60%);
}

main, header, footer { position: relative; z-index: 1; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(12px);
  padding: 0.7rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: env(safe-area-inset-top);
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.brand-dot { color: var(--red); }

.main-nav { display: flex; gap: 2rem; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  padding: .3rem 0;
  transition: color .25s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--red);
  transition: width .3s var(--ease);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle .bar {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.open .bar:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2){ opacity: 0; }
.nav-toggle.open .bar:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(140deg, var(--black) 0%, var(--ink) 55%, #2a0206 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60rem; height: 60rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow), transparent 60%);
  filter: blur(10px);
  animation: float 10s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(227,0,15,0.5);
  padding: .35rem .9rem;
  border-radius: 100px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.accent {
  color: var(--red);
  text-shadow: 0 0 30px var(--red-glow);
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  max-width: 34rem;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: .85rem 1.7rem;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 8px 24px var(--red-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px var(--red-glow); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  background: rgba(255,255,255,0.03);
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-3px); }

/* Porträt-Karte */
.hero-visual { display: flex; justify-content: center; }
.portrait-card {
  position: relative;
  width: min(20rem, 70vw);
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #2a2a30, #0c0c0e);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 60px rgba(227,0,15,0.15);
}
.portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(227,0,15,0.35), transparent 45%);
}
.portrait-placeholder {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.04em;
}
.portrait-badge {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: .9rem 1.1rem;
  display: flex;
  flex-direction: column;
}
.badge-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,0.6); }
.badge-value { font-weight: 800; font-size: 1rem; color: var(--red); }

/* Wellen-Übergang */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5.5rem;
  background: var(--paper);
  border-radius: 100% 100% 0 0;
  z-index: 2;
}

/* ---------- SECTION ALLGEMEIN ---------- */
.section { padding: 6.5rem 0; }
.section-eyebrow {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .85rem;
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 2.2rem;
}

/* Über mich */
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.ueber-grid p {
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  font-size: 1.05rem;
}
.ueber-grid strong { color: var(--red); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stat {
  background: linear-gradient(160deg, var(--black), var(--ink));
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--red);
  display: block;
}
.stat-label { color: rgba(255,255,255,0.8); font-size: .95rem; }

/* Timeline */
.section-timeline { background: linear-gradient(180deg, var(--paper), #f0ece8); }
.timeline { position: relative; padding-left: 2.2rem; max-width: 48rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem; top: 0.4rem; bottom: 0.4rem;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--red-dark), transparent);
  border-radius: 3px;
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-dot {
  position: absolute;
  left: -2.2rem; top: 0.5rem;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 3px var(--red-glow), 0 0 18px var(--red-glow);
}
.timeline-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(227,0,15,0.12); }
.timeline-meta {
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.timeline-title { font-family: var(--font-display); font-size: 1.3rem; margin: .3rem 0 .4rem; }
.timeline-text { color: var(--muted); }

/* Themen */
.themen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.thema {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.thema:hover { transform: translateY(-6px); border-color: var(--red-glow); box-shadow: 0 20px 50px rgba(227,0,15,0.12); }
.thema-icon { font-size: 2rem; margin-bottom: 1rem; }
.thema-title { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .4rem; }
.thema-text { color: var(--muted); font-size: .95rem; }

/* Kontakt */
.section-contact {
  background: linear-gradient(160deg, var(--black), var(--ink));
  color: var(--white);
  text-align: center;
}
.section-contact .section-eyebrow { margin-bottom: .6rem; }
.section-contact .section-title { color: var(--white); }
.contact-intro { max-width: 34rem; margin: 0 auto 2rem; color: rgba(255,255,255,0.8); }
.contact-box .btn { font-size: 1.05rem; }

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.8rem;
}
.social-link {
  width: 3.1rem; height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s, color .25s;
}
.social-link:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(227,0,15,0.18);
  transform: translateY(-3px);
}

/* Rechtliches (Impressum / Datenschutz) */
.legal-card {
  max-width: 52rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}
.legal-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 1.7rem 0 .5rem;
}
.legal-card h3:first-child { margin-top: 0; }
.legal-card p, .legal-card address {
  color: var(--muted);
  font-size: .95rem;
  font-style: normal;
}
.legal-card address { margin-bottom: .6rem; }
.legal-card strong { color: var(--ink); }
.legal-card a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.legal-card a:hover { text-decoration-thickness: 2px; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 2.5rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--white); }
.footer-brand::after { content: "."; color: var(--red); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: .9rem; transition: color .25s; }
.footer-links a:hover { color: var(--red); }
.footer-note { font-size: .85rem; }

/* ---------- REVEAL-ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 7rem; }
  .hero-visual { order: -1; }
  .portrait-card { width: min(16rem, 60vw); }
  .ueber-grid, .themen-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    gap: .25rem;
    background: linear-gradient(170deg, rgba(5,5,5,0.98), rgba(17,16,20,0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5rem 2.5rem 3rem;
    text-align: center;
    z-index: 99;
  }
  .main-nav.open a {
    font-size: 1.6rem;
    padding: .9rem 0;
    font-weight: 800;
    letter-spacing: -0.02em;
    border-bottom: none;
  }
  .main-nav.open a:hover { color: var(--red); }
  .main-nav.open a:active { opacity: .7; }
  .main-nav.open a::after { left: 50%; transform: translateX(-50%); }
  .nav-toggle { z-index: 101; position: relative; }
  .ueber-grid, .themen-grid, .stats { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }

  .hero-inner { padding-top: 7rem; padding-bottom: 4.5rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-actions .btn { text-align: center; width: 100%; }
  .hero-wave { height: 3.5rem; }

  .stat { padding: 1.4rem; }
  .stat-num { font-size: 2.2rem; }
  .contact-box .btn { font-size: .95rem; padding: .9rem 1.2rem; word-break: break-word; }
  .footer-links { gap: 1rem 1.2rem; }
  .legal-card { padding: 1.6rem 1.3rem; }
  .legal-card h3 { margin-top: 1.4rem; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.6rem; }
  .hero-subtitle { font-size: 1rem; }
  .timeline-card { padding: 1.3rem 1.2rem; }
}
