/* ============================================================
   JENNY SCHATTE — Brand Design System
   Einbinden: <link rel="stylesheet" href="brand.css">
   Fonts einbinden (einmalig im <head> vor brand.css):
   <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&family=Playfair+Display:ital,wght@0,700;1,400&display=swap" rel="stylesheet">
   ============================================================ */


/* ── RESET & BOX MODEL ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Hintergründe */
  --deep:       #07040D;
  --layer1:     #0F0B1A;
  --layer2:     #16112A;
  --layer3:     #1E183A;

  /* Markenfarben */
  --gold:       #F0C040;
  --gold-soft:  #FFE27A;
  --gold-dim:   rgba(240, 192, 64, 0.18);
  --purple:     #7B4FD4;
  --orange:     #E8620A;
  --red:        #D8543B;

  /* Typografie */
  --text:       #F2EDFF;
  --muted:      rgba(242, 237, 255, 0.55);

  /* Rahmen */
  --border:     rgba(240, 192, 64, 0.18);

  /* Schriften */
  --font-body:    'DM Sans', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
}


/* ── BASE ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--deep);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtiles Film-Grain über die gesamte Seite */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 28px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

section {
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}

/* Trennlinie zwischen Sektionen */
.section-divider::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}


/* ── TYPOGRAFIE ─────────────────────────────────────────── */
.label,
.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}

.big-statement {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 760px;
}

.big-statement .em   { font-style: italic; color: var(--gold); }
.big-statement .strike { position: relative; color: var(--muted); }
.big-statement .strike::after {
  content: "";
  position: absolute; left: -2%; top: 54%;
  width: 104%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s .3s;
}
.big-statement.in .strike::after,
.big-statement.visible .strike::after { transform: scaleX(1); }


/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 40px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s, background .25s;
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--gold-soft);
  box-shadow: 0 14px 40px rgba(240, 192, 64, 0.28);
}

.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(5px); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 2px;
  transition: background .2s, color .2s;
}

.btn-outline:hover { background: var(--gold); color: var(--deep); }

.price-tag { color: var(--muted); font-size: .9rem; }
.price-tag b { color: var(--text); font-size: 1.25rem; font-weight: 500; }


/* ── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(7, 4, 13, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-left { display: flex; align-items: center; gap: 28px; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
}

/* Social-Chips in der Nav */
.nav-social { display: flex; gap: 14px; align-items: center; }

.nav-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  transition: color .2s, border-color .2s;
}

.nav-social a:hover { color: var(--gold); border-color: var(--gold); }
.nav-social a svg { width: 14px; height: 14px; fill: currentColor; }

/* Haupt-Links */
.nav-links { display: flex; gap: 36px; list-style: none; }

.nav-links > li > a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
}

.nav-links > li > a:hover { color: var(--gold); }
.nav-links > li > a:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav-item { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--layer2);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 200px;
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.dropdown a {
  display: block;
  padding: 13px 20px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.dropdown a:hover { background: var(--layer3); color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--layer1);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.mobile-menu a:hover { color: var(--gold); }


/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--layer1);
  border-top: 1px solid var(--border);
  padding: 48px 0 36px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 28px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
}

.footer-social { display: flex; gap: 20px; align-items: center; }

.footer-social a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.footer-social a:hover { color: var(--gold); }

.social-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: border-color .2s;
}

.footer-social a:hover .social-icon { border-color: var(--gold); }

.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.07em;
  transition: color .2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  width: 100%;
  text-align: center;
  color: rgba(242, 237, 255, 0.25);
  font-size: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(240, 192, 64, 0.08);
  letter-spacing: 0.05em;
}


/* ── PREIS-BOX ──────────────────────────────────────────── */
.pricebox {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 44px 64px;
  margin-bottom: 40px;
  background: var(--layer2);
  position: relative;
  overflow: hidden;
}

.pricebox::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 192, 64, 0.08) 0%, transparent 70%);
}

.pricebox .what {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

.pricebox .amt {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(240, 192, 64, 0.2);
  position: relative;
}

.pricebox .includes {
  list-style: none;
  text-align: left;
  margin-top: 20px;
  position: relative;
  width: 100%;
}

.pricebox .includes li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(242, 237, 255, 0.06);
  font-size: 15px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pricebox .includes li:last-child { border-bottom: none; }

.pricebox .includes li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}

.guarantee {
  margin-top: 28px;
  color: var(--muted);
  font-size: .9rem;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.guarantee span { display: flex; align-items: center; gap: 8px; }
.guarantee b { color: var(--gold); font-weight: 500; }


/* ── TESTIMONIAL KARTEN ─────────────────────────────────── */
.testi-card {
  background: var(--layer2);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(240, 192, 64, 0.4);
  padding: 28px 32px;
  border-radius: 2px;
}

.testi-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}

.testi-card span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}


/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* Scroll-Animation (IntersectionObserver fügt .in oder .visible hinzu) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s, transform .8s;
}

.reveal.in,
.reveal.visible { opacity: 1; transform: none; }

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .pricebox { padding: 36px 28px; }
}

@media (max-width: 680px) {
  .testi-grid { grid-template-columns: 1fr; }
}


/* ── NAV JAVASCRIPT-HELFER ──────────────────────────────── */
/*
   Auf jeder Seite dieses Script einbinden:

   <script>
   function toggleMenu() {
     document.getElementById('mobileMenu').classList.toggle('open');
   }
   function toggleDropdown(e) {
     e.preventDefault();
     var dd = document.getElementById('angebote-dropdown');
     dd.style.display = dd.style.display === 'flex' ? 'none' : 'flex';
   }
   document.addEventListener('click', function(e) {
     var nav = document.getElementById('nav-angebote');
     if (nav && !nav.contains(e.target))
       document.getElementById('angebote-dropdown').style.display = 'none';
   });
   // Scroll-Animationen
   const io = new IntersectionObserver((entries) => {
     entries.forEach(e => { if (e.isIntersecting) { e.target.classList.add('in'); io.unobserve(e.target); } });
   }, { threshold: .15 });
   document.querySelectorAll('.reveal, .fade-up').forEach(el => io.observe(el));
   </script>
*/
