/* === Farbpalette === */
:root {
  --color-bg:        #0a1628;
  --color-primary:   #1a3a5c;
  --color-secondary: #3a6080;
  --color-accent:    #e86a7a;
  --color-teal:      #2abfbf;
  --color-warm:      #f4a842;
  --color-light:     #f0ece6;
}

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

/* === Basis === */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-light);
  background: var(--color-bg);
}

/* === Typografie === */
h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); }

p {
  margin-bottom: 1em;
}

a {
  color: var(--color-teal);
  text-decoration: none;
}

/* === Layout === */
header {
  padding: 1.5rem clamp(2rem, 6vw, 6rem);
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}


.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-light);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-teal);
}

/* === Rechte Nav-Seite (Social + Sprache) === */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon {
  color: var(--color-light);
  transition: color 0.3s ease;
  display: flex;
}

.social-icon:hover {
  color: var(--color-teal);
}

/* === Sprachauswahl === */
.lang-switch {
  position: relative;
}

.lang-btn {
  background: none;
  border: 1px solid var(--color-secondary);
  color: var(--color-light);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.lang-btn:hover {
  border-color: var(--color-teal);
}

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  padding-top: 0.3rem;
  background: var(--color-primary);
  border: 1px solid var(--color-secondary);
  border-radius: 4px;
  overflow: hidden;
  min-width: 60px;
}

.lang-switch:hover .lang-dropdown {
  display: block;
}

.lang-dropdown a {
  display: block;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--color-light);
  text-decoration: none;
  transition: background 0.2s ease;
}

.lang-dropdown a:hover {
  background: var(--color-bg);
}

.lang-active {
  color: var(--color-teal) !important;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-secondary);
}

footer nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

footer nav a {
  text-decoration: none;
  color: var(--color-secondary);
  font-size: 0.7rem;
  letter-spacing: 1px;
}

/* === Startseite === */
.home {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
}

.home-text {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(3rem, 8vh, 6rem) clamp(2rem, 6vw, 6rem);
  max-width: 55%;
}

.home.home-mobile {
  display: none;
}

.home-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.3rem;
  padding-left: 0.25rem;
}

.home-name {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.85;
  color: var(--color-light);
  text-transform: uppercase;
  margin-bottom: 0;
  text-shadow: 0 2px 40px rgba(10, 22, 40, 0.6);
}

.home-subtitle {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 0.4rem;
  margin-bottom: 0;
  padding-left: 0.25rem;
  white-space: nowrap;
}

.home-text-right {
  margin-left: auto;
  text-align: right;
  padding: 0 clamp(2rem, 6vw, 6rem) clamp(3rem, 8vh, 6rem) 0;
}

.home-b .home {
  background-position: bottom center;
}

.home-b .home .home-text {
  align-self: flex-start;
  padding-top: clamp(5rem, 12vh, 8rem);
  padding-bottom: 0;
}


/* Kein Footer auf Startseite */
.page-home footer {
  display: none;
}

/* Startseite: Header über dem Content */
.page-home header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0) 100%);
  padding-bottom: 2rem;
}

.page-home main {
  max-width: none;
  padding: 0;
}

/* === Inhaltsseiten === */
.content {
  font-size: 1.1rem;
  line-height: 1.7;
  padding-top: 2rem;
}

.page-subtitle {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}

.content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.content h2 {
  color: var(--color-light);
  margin-top: 2.5rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
}

.content p {
  color: var(--color-secondary);
}

.content strong {
  color: var(--color-light);
}

.content-intro {
  font-size: 1.2rem;
  color: var(--color-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* === Timeline (Der Weg) === */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-secondary);
  transform: translateX(-4px);
}

.timeline-highlight::before {
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent);
}

.timeline-date {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--color-teal);
  text-transform: uppercase;
  font-weight: 600;
}

.timeline-card {
  margin-top: 0.5rem;
}

.timeline-card h3 {
  font-size: 1.1rem;
  color: var(--color-light);
  margin-bottom: 0.3rem;
}

.timeline-card p {
  font-size: 0.95rem;
  color: var(--color-secondary);
  margin-bottom: 0;
}

/* === Support Cards (Unterstützen) === */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.support-card {
  background: var(--color-primary);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.support-card:hover {
  border-color: var(--color-secondary);
}

.support-card-highlight {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-primary), #1f2d4a);
}

.support-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.support-card h3 {
  color: var(--color-light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.support-amount {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.support-card p:last-child {
  color: var(--color-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.support-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
}

.support-cta p {
  color: var(--color-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #d45a6a;
  color: white;
}

/* === Gear (Ausrüstung) === */
.gear-section {
  margin-bottom: 2.5rem;
}

.gear-section h2 {
  color: var(--color-teal);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-primary);
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.gear-item {
  background: var(--color-primary);
  border-radius: 8px;
  padding: 1.2rem;
}

.gear-item h3 {
  color: var(--color-light);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.gear-brand {
  color: var(--color-secondary);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.gear-brand a {
  color: var(--color-teal);
}

.gear-note {
  color: var(--color-secondary);
  font-size: 0.75rem;
  margin-top: 0.3rem;
  margin-bottom: 0;
  opacity: 0.7;
}

.gear-item-tbd {
  opacity: 0.5;
  border: 1px dashed var(--color-secondary);
  background: transparent;
}

/* === Stats Grid (Partner-Seite) === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 1.5rem 0 2.5rem;
}

.stat-item {
  background: var(--color-primary);
  border-radius: 10px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.stat-item:hover {
  border-color: var(--color-secondary);
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--color-secondary);
  text-transform: uppercase;
}

/* === Partner Cards === */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.partner-card {
  background: var(--color-primary);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.partner-card:hover {
  border-color: var(--color-secondary);
}

.partner-card h3 {
  color: var(--color-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partner-card p {
  color: var(--color-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* === Current Partners === */
.current-partners {
  margin: 1rem 0 2rem;
}

.current-partners p {
  color: var(--color-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.current-partners strong {
  color: var(--color-light);
}

/* === Story Page (Über Zoe) === */
.page-story header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0) 100%);
  padding-bottom: 2rem;
}

.page-story main {
  max-width: none;
  padding: 0;
}

.story-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.story-hero-text {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 12vh, 10rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 6vh, 5rem) clamp(2rem, 6vw, 6rem);
  align-self: center;
}

.story-hero-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}

.story-hero h1 {
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.85;
  color: var(--color-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 2px 40px rgba(10, 22, 40, 0.6);
}

.story-hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-secondary);
  max-width: 420px;
}

.story-hero-image {
  position: relative;
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.story-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.story-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--color-bg) 0%,
    transparent 20%
  );
}

.story-hero-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  z-index: 1;
  background: linear-gradient(to top, var(--color-bg), transparent);
}

.story-quote {
  padding: clamp(3rem, 6vh, 5rem) 2rem;
  text-align: center;
  background: var(--color-primary);
}

.story-quote blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-light);
  font-style: italic;
  border: none;
  padding: 0;
}

.story-quote-accent {
  background: linear-gradient(135deg, rgba(232, 106, 122, 0.1), rgba(42, 191, 191, 0.08));
}

.story-shout {
  display: block;
  margin-top: 1rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  font-style: normal;
  color: var(--color-accent);
  letter-spacing: 4px;
}

.story-section {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vh, 4rem) 2rem;
}

.story-section h2 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-teal);
  margin-bottom: 1.2rem;
}

.story-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.story-inline-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-light);
  border-left: 2px solid var(--color-accent);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.story-stats {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.story-stat {
  text-align: center;
}

.story-stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.story-stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.story-section-soft {
  padding: clamp(3rem, 6vh, 5rem) 2rem;
  background: linear-gradient(to bottom, transparent, rgba(26, 58, 92, 0.2), transparent);
}

.story-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.story-section-soft blockquote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--color-light);
  border: none;
  padding: 0;
  margin: 0;
}

.story-divider {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin: 2rem auto;
  opacity: 0.6;
}

.story-closing {
  text-align: center;
  padding: clamp(3rem, 6vh, 5rem) 2rem clamp(4rem, 8vh, 6rem);
}

.story-closing-quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--color-light);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.story-closing-shout {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 0 30px rgba(232, 106, 122, 0.3);
}

/* Story Images — Cinematic Fullwidth */
.story-image {
  position: relative;
  width: 100%;
  height: 55vh;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.story-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--color-bg), transparent);
  pointer-events: none;
}

.story-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20%;
  z-index: 1;
  background: linear-gradient(to bottom, var(--color-bg), transparent);
  pointer-events: none;
}

.story-image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240, 236, 230, 0.5);
}

/* Timeline Quote (from Instagram) */
.timeline-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-light);
  margin-top: 0.5rem;
  opacity: 0.85;
}

/* === Coming Soon Badge === */
.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), #d45a6a);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(232, 106, 122, 0.3);
}

/* === Burger Menü === */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 20;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-open .burger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-open .burger span:nth-child(2) {
  opacity: 0;
}

.nav-open .burger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Responsive === */
@media (max-width: 768px) {
  main {
    padding: 1.5rem 1rem;
  }

  .burger {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 15;
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }

  .home.home-desktop {
    display: none;
  }

  .home.home-mobile {
    display: flex;
    background-position: center bottom;
  }

  .home-text {
    max-width: 100%;
    padding: 0 1.5rem clamp(2rem, 4vh, 3rem) 2rem;
  }

  .home-name {
    font-size: clamp(3.45rem, 17.25vw, 5.75rem);
  }

  .home-subtitle {
    font-size: 1.44rem;
    letter-spacing: 4px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .story-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-hero-image {
    min-height: 70vh;
    order: -1;
  }

  .story-hero-image::before {
    background: none;
  }

  .story-hero-image::after {
    height: 40%;
  }

  .story-hero-text {
    max-width: 100%;
    padding: 1.5rem 1.5rem clamp(2rem, 4vh, 3rem) 1.5rem;
    text-align: center;
  }

  .story-hero-sub {
    max-width: 100%;
  }

  .story-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .story-stats {
    gap: 1.5rem;
  }

  .story-closing-shout {
    font-size: clamp(2rem, 12vw, 4rem);
  }

  .story-image {
    height: 40vh;
  }
}
