/* ===== FONTS & ROOT ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  /* Hauptfarben */
  --gold: #c9a04e;
  --gold-light: #e8c87a;
  --gold-dark: #e2c04a;

  /* Dunkel (für Hero & Nav) */
  --purple-deep: #150d25;
  --purple-mid: #2e1f4a;
  --purple-accent: #6b4f8c;

  /* Hell Taupe (für alle Sektionen unter dem Hero) */
  --taupe-bg: #f4ede4;          /* Haupt-Hintergrund */
  --taupe-mid: #ebe2d8;         /* Abwechselnde Sektionen */
  --taupe-dark: #d9cec3;        /* Karten-Border */

  /* Text auf hellem Hintergrund */
  --text-dark: #2c2118;         /* Haupttext */
  --text-muted-dark: #7a6b5a;   /* Sekundärtext */

  /* Legacy (für Hero-Bereich) */
  --text-light: #f5f0ff;
  --text-muted: #c4b8d8;

  --card-bg: #ffffff;
  --border: rgba(201, 160, 78, 0.25);
  --rose: #b89090;
  --navy: #3d4f6b;
  --teal: #7b6fa8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--taupe-bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 10, 46, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 4rem;
  position: relative;
  z-index: 1;
}

.hero-inner { max-width: 800px; }

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--purple-accent));
  color: white;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  margin-left: 1rem;
}

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

/* ===== SECTIONS ===== */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}

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

.section-label {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.section-text {
  color: var(--text-muted-dark);
  font-size: 1.05rem;
  max-width: 680px;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple-accent));
  margin: 1.5rem 0 2.5rem;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: #ffffff;
  border: 1px solid var(--taupe-dark);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(44, 33, 24, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(201, 160, 78, 0.18);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.card .btn {
  font-size: 0.8rem;
  padding: 0.6rem 1.5rem;
}

/* ===== NETWORK SECTION ===== */
.network-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.badge-doterra { background: rgba(15, 163, 177, 0.2); color: var(--teal); border: 1px solid var(--teal); }
.badge-monat { background: rgba(212, 84, 122, 0.2); color: var(--rose); border: 1px solid var(--rose); }
.badge-diamond { background: rgba(201, 168, 76, 0.2); color: var(--gold); border: 1px solid var(--gold); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  z-index: 1;
  background: var(--purple-deep);
  border-top: 1px solid rgba(201,160,78,0.2);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 2rem 5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ===== STARS (nur im Hero-Bereich sichtbar) ===== */
.stars {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px; height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: var(--max-op, 0.6); }
}

/* ===== ANCHOR SCROLL FIX (fixe Nav 70px) ===== */
section[id] {
  scroll-margin-top: 80px;
}

/* ===== MINI KONTAKTFORMULAR (in Sektionen) ===== */
.section-form {
  margin-top: 3rem;
  background: var(--card-bg);
  border: 1px solid var(--taupe-dark);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(44,33,24,0.07);
}

.section-form h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.section-form p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.section-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.section-form .form-full {
  grid-column: 1 / -1;
}

.section-form label {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-bottom: 0.3rem;
  display: block;
}

.section-form input,
.section-form textarea {
  width: 100%;
  background: var(--taupe-bg);
  border: 1px solid var(--taupe-dark);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text-dark);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.section-form input:focus,
.section-form textarea:focus {
  border-color: var(--gold);
}

.section-form textarea {
  resize: vertical;
  min-height: 110px;
}

@media (max-width: 600px) {
  .section-form form {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(26, 10, 46, 0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image { aspect-ratio: 1/1; }

  .btn-outline { margin-left: 0; margin-top: 0.75rem; }
}
