/* ============================================================
   MAREIKE MAIER — Rainbow Luxe Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Base */
  --cream: #FFFDF5;
  --cream-dark: #F5F0E8;
  --text: #2D1B4E;
  --text-light: #5B4080;
  --text-muted: #9B8BB0;

  /* Brand Colors */
  --gold: #F5C842;
  --gold-dark: #D4A017;
  --purple: #8B5CF6;
  --purple-dark: #4C1D95;
  --pink: #FF1693;
  --pink-light: #FFB3DE;
  --teal: #0D9488;
  --lime: #CCFF00;
  --coral: #F43F5E;
  --indigo: #6366F1;

  /* Offering Colors */
  --farbenwelt: #FF1693;
  --academy: #8B5CF6;
  --ausbildung: #4C1D95;
  --soulreader: #0D9488;
  --auralife: #F43F5E;
  --library: #6366F1;
  --mentoring: #F5C842;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section: 120px;
  --section-sm: 80px;

  /* Radius */
  --radius: 20px;
  --radius-lg: 40px;
  --radius-pill: 100px;

  /* Shadow */
  --shadow: 0 4px 40px rgba(45, 27, 78, 0.08);
  --shadow-lg: 0 8px 60px rgba(45, 27, 78, 0.14);
  --shadow-gold: 0 4px 30px rgba(245, 200, 66, 0.3);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.display {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-sm {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
}

.subheading {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}

.label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.body-lg { font-size: 19px; line-height: 1.7; }
.body-sm { font-size: 15px; line-height: 1.6; }

em, i { font-style: italic; }

/* ============================================================
   LAYOUT
   ============================================================ */

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

.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--section) 0; }
.section-sm { padding: var(--section-sm) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   RAINBOW DIVIDER
   ============================================================ */

.rainbow-bar {
  height: 5px;
  background: linear-gradient(90deg,
    #FF1693 0%,
    #F59E0B 20%,
    #CCFF00 40%,
    #0D9488 60%,
    #8B5CF6 80%,
    #FF1693 100%
  );
}

.rainbow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 27, 78, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-logo span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 3px 3px;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}

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

.nav-links a.active { color: var(--text); font-weight: 600; }

/* Mitgliedschaft — gold outlined pill */
.nav-mitgliedschaft {
  border: 1.5px solid var(--gold) !important;
  color: #8a6800 !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  border-radius: var(--radius-pill) !important;
  transition: background 0.2s !important;
}
.nav-mitgliedschaft:hover { background: rgba(245,200,66,0.12) !important; }
.nav-mitgliedschaft.active { background: rgba(245,200,66,0.15) !important; }

/* Mentoring — purple outlined pill */
.nav-mentoring {
  border: 1.5px solid var(--purple) !important;
  color: var(--purple) !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  border-radius: var(--radius-pill) !important;
  transition: background 0.2s !important;
}
.nav-mentoring:hover { background: rgba(139,92,246,0.08) !important; }
.nav-mentoring.active { background: rgba(139,92,246,0.1) !important; }

/* Challenge — auffällig, pulsierend */
.nav-challenge {
  background: var(--pink) !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-pill) !important;
  animation: nav-pulse 2s ease-in-out infinite !important;
}
.nav-challenge:hover { opacity: 0.85 !important; }

@keyframes nav-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,22,147,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(255,22,147,0); }
}

/* Kontakt — dezent */
.nav-contact {
  color: var(--text-muted) !important;
  font-size: 13px !important;
}
.nav-contact:hover { color: var(--text) !important; }

.nav-cta {
  background: var(--gold);
  color: var(--text) !important;
  font-weight: 600 !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--text);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 40px rgba(245, 200, 66, 0.45);
}

.btn-dark {
  background: var(--text);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--text);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 17px;
}

/* ============================================================
   CARDS
   ============================================================ */

.card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-offering {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 5px solid transparent;
  position: relative;
  overflow: hidden;
}

.card-offering:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-offering::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}

/* Color variants */
.card-farbenwelt::before { background: var(--farbenwelt); }
.card-academy::before { background: linear-gradient(90deg, var(--academy), #EC4899); }
.card-ausbildung::before { background: linear-gradient(90deg, var(--ausbildung), var(--gold)); }
.card-soulreader::before { background: var(--soulreader); }
.card-auralife::before { background: linear-gradient(90deg, var(--auralife), #F59E0B); }
.card-library::before { background: linear-gradient(90deg, var(--library), var(--teal)); }
.card-mentoring::before { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   PHOTO PLACEHOLDER
   ============================================================ */

.photo-placeholder {
  background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(236,72,153,0.12));
  border: 2px dashed rgba(139,92,246,0.3);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 500;
}

.photo-placeholder-circle {
  border-radius: 50%;
}

.photo-placeholder-icon {
  font-size: 36px;
  opacity: 0.5;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */

.testimonial {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 32px;
  opacity: 0.6;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(236,72,153,0.15));
  border: 2px dashed rgba(139,92,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--purple);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   SECTION LABELS
   ============================================================ */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--text);
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}

.footer-social-link:hover {
  background: var(--gold);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-cancel-btn {
  display: flex;
  justify-content: center;
  margin: 0 0 28px;
}
.footer-cancel-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.4);
  color: rgba(139,92,246,0.9) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.footer-cancel-btn a:hover {
  background: rgba(139,92,246,0.25);
  border-color: rgba(139,92,246,0.7);
  color: white !important;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 0;
  margin: 24px auto 0;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  text-align: center;
  max-width: 820px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-legal a:hover { color: white; }

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-purple { color: var(--purple); }
.text-pink { color: var(--pink); }
.text-muted { color: var(--text-muted); }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.italic { font-style: italic; }
.font-serif { font-family: var(--font-serif); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── HAMBURGER MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(255, 253, 245, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45,27,78,0.12);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 199;
  box-shadow: 0 8px 32px rgba(45,27,78,0.12);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(45,27,78,0.07);
  display: block;
}
.nav-mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  :root { --section: 64px; --section-sm: 48px; }
  .container, .container-sm { padding: 0 20px; }
  .nav-inner { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Grids → single column */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .about-teaser { grid-template-columns: 1fr; gap: 32px; }
  .values-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .premium-compare { grid-template-columns: 1fr !important; }
  .kurs-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .kurs-inner.reverse { direction: ltr; }
  .fuerwen-grid { grid-template-columns: 1fr !important; }
  .about-hero { grid-template-columns: 1fr !important; gap: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Hero sections */
  .mentoring-hero,
  .ausbildung-hero,
  .challenge-hero,
  .page-hero { padding-top: 48px !important; }

  /* Hero index */
  .hero { grid-template-columns: 1fr !important; gap: 32px; padding: 48px 0 64px; min-height: auto; }
  .hero-photo { max-width: 100%; aspect-ratio: 4/5; }
  .hero-badge, .hero-badge-2 { display: none; }
  .hero-stats { gap: 24px; }

  /* Ausbildung two-photo hero */
  .ausbildung-hero > .container > div[style*="grid"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Challenge tag rows */
  .tag-row {
    grid-template-columns: 48px 1fr !important;
    padding: 20px 16px !important;
    gap: 12px !important;
  }
  .tag-datum { display: none; }
  .tag-num { font-size: 28px !important; }
  .tag-inhalt-title { font-size: 20px !important; }

  /* Testimonial grids */
  .testimonials-grid,
  .feedback-grid { grid-template-columns: 1fr !important; }

  /* Challenge Gewinne */
  .gewinn-grid { grid-template-columns: 1fr !important; }
  .gewinn-card { padding: 28px 20px !important; }

  /* Academy Pricing */
  .pricing-grid { grid-template-columns: 1fr !important; }
  .pricing-card.featured { transform: none !important; }
  .pricing-card { padding: 28px 20px !important; }

  /* Mentoring premium-compare */
  .premium-compare { grid-template-columns: 1fr !important; }
  .premium-card { margin-bottom: 0; }

  /* Kurse */
  .kurs-section { padding: 48px 0 !important; }

  /* Sonstige */
  .section-title { font-size: clamp(28px, 7vw, 48px); }
  .hero-title { font-size: clamp(36px, 9vw, 56px); }

  /* Allgemeine Karten-Padding-Reduktion */
  .offering-card { padding: 28px 20px !important; }
  [class*="rainbow-cta"] { padding: 36px 20px !important; }
}
