/* LOVE-THE-PLANET_light.css */
/* Helles, edles Design in Gold, Schwarz & warmen Neutrals */

/* DESIGN-TOKENS */
:root {
  --background: #f5f2ec;
  --background-alt: #ffffff;
  --background-soft: #f1ebe3;

  --text: #1b1814;
  --muted: #6f675f;

  --accent-gold: #d4a94a;
  --accent-gold-soft: rgba(212, 169, 74, 0.12);

  --silver: #c5ccd7;
  --silver-soft: rgba(197, 204, 215, 0.25);
  --border-soft: rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.12);

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --max-width: 1080px;

  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* RESET / BASE */

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: radial-gradient(circle at top left, #fdfbf8 0, #f5f2ec 40%, #ece6dd 100%);
  color: var(--text);
  line-height: 1.6;
}

/* PAGE LAYOUT */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(245, 242, 236, 0.98),
    rgba(245, 242, 236, 0.93),
    rgba(245, 242, 236, 0.88)
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* NAV */

.main-nav {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  font-size: 0.88rem;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* LANGUAGE SWITCHER */

.lang-switcher {
  display: inline-flex;
  padding: 2px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.05);
}

.lang-btn {
  border: none;
  background: transparent;
  font: inherit;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background: var(--background-alt);
  color: var(--text);
}

/* THEME TOGGLE BUTTON */

.theme-toggle {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: var(--background-alt);
  padding: 0.2rem 0.7rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.theme-toggle:hover {
  background: #efe7dd;
  transform: translateY(-1px);
}

main {
  flex: 1;
}

/* LANGUAGE VISIBILITY – nur aktive Sprache sichtbar */

.lang {
  display: none;
}

.lang.active {
  display: block;
}


/* HERO */

.hero {
  padding: 3rem 1.25rem 2rem;
  display: flex;
  justify-content: center;
}

.hero-content {
  max-width: var(--max-width);
  width: 100%;
  background: radial-gradient(circle at top right, #ffffff 0, #f6f2ec 55%, #ece5dc 100%);
  border-radius: 26px;
  padding: 2.75rem 2rem 2.25rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Goldene Linien im Hero */
.hero-content::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image:
    linear-gradient(120deg, rgba(212, 169, 74, 0.22) 0, transparent 40%),
    linear-gradient(300deg, rgba(212, 169, 74, 0.14) 0, transparent 45%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 169, 74, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.04), transparent 55%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 36rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-highlights li {
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-soft);
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-pill);
  border: none;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent-gold);
  color: #201a12;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.btn.primary:hover {
  background: #c09238;
  transform: translateY(-1px);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border: 1px solid var(--border-soft);
}

.btn.ghost:hover {
  background: #f4ede4;
}

.btn.full-width {
  width: 100%;
}

/* EARLY BIRD BUTTON */

.btn-early-bird {
  margin-top: 0.8rem;
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid rgba(212, 169, 74, 0.7);
  box-shadow: 0 8px 20px rgba(212, 169, 74, 0.24);
  font-size: 0.9rem;
}

.btn-early-bird::before {
  content: "★ ";
  font-size: 0.9rem;
}

.btn-early-bird:hover {
  background: rgba(212, 169, 74, 0.08);
}

/* SECTIONS */

.section {
  padding: 2.75rem 1.25rem;
  display: flex;
  justify-content: center;
}

.section-alt {
  background: radial-gradient(circle at top left, #f1ece4 0, #e9e1d7 100%);
}

/* Gold-Linien im Pricing-Hintergrund */
.section-alt .section-inner {
  position: relative;
}

.section-alt .section-inner::before {
  content: "";
  position: absolute;
  inset: -20px;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(212, 169, 74, 0.12),
    rgba(212, 169, 74, 0.12) 1px,
    transparent 1px,
    transparent 11px
  );
  opacity: 0.2;
  pointer-events: none;
}

.section-alt .section-inner > * {
  position: relative;
  z-index: 1;
}

.section-inner {
  width: 100%;
  max-width: var(--max-width);
}

.section-inner h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.7rem;
}

.section-inner h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.section-intro {
  max-width: 36rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.highlight-text {
  background: var(--accent-gold-soft);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  border: 1px solid rgba(212, 169, 74, 0.25);
}

/* LISTS */

.bullet-list {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
  color: var(--muted);
}

/* INFO CARDS */

.info-cards {
  display: grid;
  gap: 1rem;
}

.info-card {
  background: var(--background-alt);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.info-card ul {
  padding-left: 1.1rem;
  margin: 0;
}

/* PRICING */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  position: relative;
  border-radius: 20px;
  padding: 1.5rem 1.3rem 1.3rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--background-alt);
  overflow: hidden;
}

/* Gold-Linie oben in jeder Karte */
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 169, 74, 0.8),
    transparent
  );
  opacity: 0.7;
}

/* SILBER (Ticket 1) */

.tier-silver {
  background: linear-gradient(145deg, #f7f8fb 0, #eef1f7 40%, #ffffff 100%);
  border-color: rgba(150, 160, 176, 0.5);
}

/* GOLD (Ticket 2) */

.tier-gold {
  background: radial-gradient(circle at top left, rgba(212, 169, 74, 0.22), #fffdf6 55%, #f7f2e8 100%);
  border-color: rgba(212, 169, 74, 0.85);
  box-shadow: 0 22px 52px rgba(212, 169, 74, 0.32);
}

/* SILVER PLUS (Ticket 3: Silber mit Gold-Akzenten) */

.tier-silverplus {
  background: linear-gradient(145deg, #f7f8fb 0, #f1ebe3 40%, #fffaf1 100%);
  border-color: rgba(212, 169, 74, 0.6);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

.pricing-price {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0.2rem 0;
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.pricing-features {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Pricing Note */

.pricing-note {
  margin-top: 1.8rem;
  padding: 1rem 1.1rem 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px dashed rgba(0, 0, 0, 0.18);
  font-size: 0.9rem;
  color: var(--muted);
}

/* FORM WRAPPER */

.apply-form {
  background: var(--background-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1.5rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

/* NOTE BOX */

.note-box {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: #fffdf7;
  border: 1px dashed var(--border-soft);
  font-size: 0.9rem;
  color: var(--muted);
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1rem 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* RESPONSIVE */

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero-content {
    padding: 2.2rem 1.5rem 2rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 2.3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
