/* ============================================================
   1001nanna® — Gemeinsames Stylesheet
   Gilt für: index.html, team.html, formazione.html,
             genitori.html, contatto.html, collaborazioni.html,
             impressum.html
   ============================================================ */

/* ── Design-Tokens ── */
:root {
  --white:       #ffffff;
  --bg:          #f5faf9;
  --bg-alt:      #edf6f4;
  --mint:        #2a8a7f;
  --mint-light:  #3aafa9;
  --mint-pale:   #e4f4f2;
  --mint-border: #bde4e0;
  --teal-dark:   #1e6b63;
  --teal-nav:    #1a5e57;
  --text:        #1a2e2c;
  --text-mid:    #3d5c58;
  --text-soft:   #7a9e9a;
  --shadow-sm:   0 1px 4px rgba(42,138,127,0.08);
  --shadow-md:   0 4px 24px rgba(42,138,127,0.12);
  --shadow-lg:   0 12px 48px rgba(42,138,127,0.15);
  --rose:        #c9909a;
  --rose-pale:   #f7edf0;
  --rose-border: #e8c8cf;
  --rose-dark:   #9e6070;
  --lav:         #b8a4cc;
  --lav-pale:    #f0eaf7;
  --lav-border:  #d9cce8;
  --lav-dark:    #7a5a9a;
  --gold:        #c9a87c;
  --gold-pale:   #fdf3e7;
  --gold-border: #e8d5b0;
  --gold-dark:   #8a6020;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'DM Sans', sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.6;
}

/* ── Google Fonts (importiert in jeder HTML-Datei) ── */
/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap'); */

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position:sticky; top:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 56px; height:76px;
  background:var(--teal-nav);
  box-shadow:0 2px 20px rgba(26,94,87,0.25);
}
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.nav-logo-img { height:44px; width:auto; }
.nav-logo-text { display:flex; flex-direction:column; }
.nav-logo-name {
  font-family:'Cormorant Garamond', serif;
  font-size:20px; font-weight:600; color:#fff; letter-spacing:0.04em; line-height:1.1;
}
.nav-logo-name sup { font-size:10px; font-weight:400; vertical-align:super; color:rgba(255,255,255,0.6); }
.nav-logo-sub {
  font-size:10px; font-weight:300; color:rgba(255,255,255,0.45);
  letter-spacing:0.1em; text-transform:uppercase;
}
.nav-links { display:flex; align-items:center; gap:2px; list-style:none; }
.nav-links a {
  font-size:13px; font-weight:400;
  color:rgba(255,255,255,0.88);
  text-decoration:none; padding:7px 13px; border-radius:var(--radius-sm);
  transition:all 0.2s; white-space:nowrap;
}
.nav-links a:hover { color:#fff; background:rgba(255,255,255,0.1); }
.nav-links a.active { color:#fff; background:rgba(255,255,255,0.12); font-weight:500; }
.nav-links a.cta-nav {
  background:rgba(201,144,154,0.3); color:#fff; font-weight:500;
  border:1px solid rgba(201,144,154,0.5);
}
.nav-links a.cta-nav:hover { background:rgba(201,144,154,0.5); }

/* Hamburger (mobile) */
.nav-hamburger {
  display:none; flex-direction:column; gap:5px; cursor:pointer;
  background:none; border:none; padding:8px;
}
.nav-hamburger span {
  display:block; width:22px; height:2px;
  background:rgba(255,255,255,0.9); border-radius:2px; transition:all 0.3s;
}
.nav-mobile {
  display:none; position:absolute; top:76px; left:0; right:0;
  background:var(--teal-nav); padding:16px 24px 24px;
  border-top:1px solid rgba(255,255,255,0.1);
  box-shadow:0 8px 24px rgba(0,0,0,0.2);
}
.nav-mobile.open { display:block; }
.nav-mobile a {
  display:block; padding:11px 0; font-size:15px; font-weight:400;
  color:rgba(255,255,255,0.88); text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:last-child { border-bottom:none; }
.nav-mobile a.cta-nav {
  margin-top:12px; background:var(--rose); color:#fff; border-radius:var(--radius-sm);
  padding:12px 16px; border-bottom:none; text-align:center; font-weight:500;
}

/* ============================================================
   SEITENHEADER (für Unterseiten)
   ============================================================ */
.page-header {
  background:linear-gradient(160deg, var(--teal-nav) 0%, var(--mint) 100%);
  padding:72px 56px 64px;
  text-align:center;
}
.page-header-inner { max-width:760px; margin:0 auto; }
.page-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-size:10px; font-weight:500; letter-spacing:0.2em; text-transform:uppercase;
  color:rgba(255,255,255,0.6); margin-bottom:16px;
}
.page-eyebrow::before, .page-eyebrow::after {
  content:''; display:block; width:20px; height:1px; background:rgba(255,255,255,0.4);
}
.page-title {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(34px,4vw,56px); font-weight:300; line-height:1.1;
  color:#fff; margin-bottom:16px;
}
.page-title em { font-style:italic; color:rgba(255,255,255,0.75); }
.page-sub {
  font-size:16px; font-weight:300; color:rgba(255,255,255,0.72); line-height:1.8;
}

/* ============================================================
   TYPOGRAFIE & LAYOUT-HELFER
   ============================================================ */
section { padding:80px 56px; }
.section-inner { max-width:1100px; margin:0 auto; }

.section-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:10px; font-weight:500; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--mint); margin-bottom:14px;
}
.section-label::before { content:''; display:block; width:20px; height:1.5px; background:var(--mint); }
.section-title {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(28px,3.5vw,46px); font-weight:300; line-height:1.15;
  color:var(--text); margin-bottom:14px;
}
.section-title em { font-style:italic; color:var(--mint); }
.section-sub {
  font-size:16px; font-weight:300; color:var(--text-mid); line-height:1.8; max-width:600px;
}

.eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-size:11px; font-weight:500; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--mint); margin-bottom:22px;
}
.eyebrow::before, .eyebrow::after { content:''; display:block; width:22px; height:1.5px; background:var(--mint); }

hr.mint-divider {
  height:4px; background:linear-gradient(90deg,transparent,var(--mint-light),transparent);
  border:none;
}
hr.aurora-divider {
  height:3px; background:linear-gradient(90deg,transparent,var(--rose),var(--lav),var(--mint-light),transparent);
  border:none; opacity:0.5;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--mint); color:#fff;
  font-family:'DM Sans', sans-serif; font-size:15px; font-weight:500; letter-spacing:0.04em;
  padding:16px 36px; border-radius:50px; border:none; cursor:pointer;
  text-decoration:none; box-shadow:0 4px 20px rgba(42,138,127,0.35);
  transition:all 0.2s;
}
.btn-primary:hover { background:var(--teal-dark); transform:translateY(-2px); }
.btn-rose {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--rose); color:#fff;
  font-family:'DM Sans', sans-serif; font-size:15px; font-weight:500;
  padding:16px 36px; border-radius:50px; border:none; cursor:pointer;
  text-decoration:none; box-shadow:0 4px 16px rgba(201,144,154,0.35);
  transition:all 0.2s;
}
.btn-rose:hover { background:var(--rose-dark); transform:translateY(-2px); }
.btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:400; color:var(--mint); text-decoration:none;
  border-bottom:1.5px solid var(--mint-border); padding-bottom:3px; transition:all 0.2s;
}
.btn-ghost:hover { color:var(--teal-dark); border-color:var(--mint); }

/* ============================================================
   KARTEN & KOMPONENTEN
   ============================================================ */
/* Goal/Ziel-Karten (2-Spalten-Grid) */
.goals-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:40px; }
.goal-card {
  background:var(--white); border-radius:var(--radius-md); padding:28px;
  border:1px solid var(--mint-border); box-shadow:var(--shadow-sm);
  display:flex; gap:16px; align-items:flex-start; transition:all 0.25s;
}
.goal-card:hover { box-shadow:var(--shadow-md); border-color:var(--mint); transform:translateY(-2px); }
.goal-icon {
  width:44px; height:44px; border-radius:12px; background:var(--mint-pale);
  display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0;
}
.goal-text strong { display:block; font-size:15px; font-weight:500; color:var(--text); margin-bottom:6px; }
.goal-text span { font-size:13px; font-weight:300; color:var(--text-mid); line-height:1.6; }

/* Trust Pills */
.trust-pills { display:flex; gap:10px; flex-wrap:wrap; }
.pill {
  display:flex; align-items:center; gap:7px;
  background:var(--white); border:1px solid var(--mint-border); border-radius:50px;
  padding:7px 14px; font-size:12px; font-weight:400; color:var(--text-mid);
  box-shadow:var(--shadow-sm);
}
.pill-dot { width:7px; height:7px; border-radius:50%; background:var(--mint-light); flex-shrink:0; }

/* Team-Karten */
.team-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; margin-top:48px; }
.team-card {
  background:var(--white); border-radius:var(--radius-lg); padding:36px 32px;
  border:1px solid var(--mint-border); box-shadow:var(--shadow-sm);
  transition:all 0.25s; display:flex; flex-direction:column; gap:20px;
}
.team-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.team-photo {
  width:100px; height:100px; border-radius:50%; object-fit:cover;
  border:3px solid var(--mint-pale); box-shadow:0 4px 16px rgba(42,138,127,0.15);
}
.team-photo-placeholder {
  width:100px; height:100px; border-radius:50%;
  background:linear-gradient(135deg,var(--mint-pale),var(--mint-border));
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond', serif; font-size:32px; font-weight:300; color:var(--mint);
  border:3px solid var(--mint-pale);
}
.team-name {
  font-family:'Cormorant Garamond', serif;
  font-size:24px; font-weight:400; color:var(--text); margin-bottom:4px;
}
.team-role { font-size:13px; font-weight:300; color:var(--mint); margin-bottom:12px; }
.team-tags { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:12px; }
.tag {
  background:var(--mint-pale); border:1px solid var(--mint-border); border-radius:50px;
  padding:4px 11px; font-size:11px; font-weight:400; color:var(--text-mid);
}
.tag.rose { background:var(--rose-pale); border-color:var(--rose-border); color:var(--rose-dark); }
.team-contact { font-size:13px; font-weight:300; color:var(--text-soft); }
.team-contact a { color:var(--mint); text-decoration:none; }
.team-contact a:hover { text-decoration:underline; }

/* Kurs-Karten */
.course-card {
  background:var(--white); border-radius:18px; padding:28px 26px;
  border:1px solid var(--mint-border); box-shadow:var(--shadow-sm); transition:all 0.25s;
}
.course-card:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.course-card.rose { border-color:var(--rose-border); }
.course-card.lav  { border-color:var(--lav-border); }
.cc-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.cc-badge {
  font-size:10px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase;
  border-radius:50px; padding:4px 11px;
}
.cc-badge.mint  { background:var(--mint-pale); color:var(--mint); }
.cc-badge.rose  { background:var(--rose-pale); color:var(--rose-dark); }
.cc-badge.lav   { background:var(--lav-pale); color:var(--lav-dark); }
.cc-price { font-family:'Cormorant Garamond', serif; font-size:28px; font-weight:600; color:var(--teal-dark); }
.cc-title { font-family:'Cormorant Garamond', serif; font-size:20px; font-weight:400; color:var(--text); margin-bottom:3px; }
.cc-sub { font-size:12px; font-weight:300; color:var(--text-soft); margin-bottom:14px; }
.cc-features { list-style:none; display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
.cc-features li { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:300; color:var(--text-mid); }
.cc-dot { width:6px; height:6px; border-radius:50%; flex-shrink:0; }
.cc-dot.mint { background:var(--mint-light); }
.cc-dot.rose { background:var(--rose); }
.cc-dot.lav  { background:var(--lav); }
.btn-cc {
  display:block; width:100%; text-align:center;
  font-family:'DM Sans', sans-serif; font-size:14px; font-weight:500;
  padding:13px; border-radius:10px; text-decoration:none; transition:all 0.2s;
}
.btn-cc.mint { background:var(--mint); color:#fff; }
.btn-cc.mint:hover { background:var(--teal-dark); }
.btn-cc.rose { background:var(--rose); color:#fff; }
.btn-cc.rose:hover { background:var(--rose-dark); }

/* Testimonials */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:44px; }
.testi-card {
  background:var(--bg); border:1px solid var(--mint-border); border-radius:18px; padding:26px 24px;
  transition:all 0.25s;
}
.testi-card:hover { border-color:var(--mint); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.testi-stars { display:flex; gap:2px; margin-bottom:12px; }
.star { color:var(--gold); font-size:13px; }
.testi-qm { font-family:'Cormorant Garamond', serif; font-size:48px; font-weight:300; line-height:0.7; margin-bottom:14px; color:var(--mint-border); }
.testi-text { font-size:14px; font-weight:300; color:var(--text-mid); line-height:1.8; margin-bottom:16px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:10px; }
.testi-av {
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond', serif; font-size:14px; font-weight:400; flex-shrink:0;
}
.testi-name { font-size:13px; font-weight:500; color:var(--text); }
.testi-role { font-size:11px; font-weight:300; color:var(--text-soft); }

/* FAQ */
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:40px; }
.faq-item {
  background:var(--white); border:1px solid var(--mint-border); border-radius:14px;
  padding:22px 24px; cursor:pointer; transition:all 0.2s;
}
.faq-item:hover { border-color:var(--mint); background:var(--mint-pale); }
.faq-q { display:flex; align-items:center; gap:12px; font-size:14px; font-weight:500; color:var(--text); line-height:1.5; }
.faq-icon {
  width:28px; height:28px; border-radius:50%; background:var(--white); color:var(--mint);
  display:flex; align-items:center; justify-content:center; font-size:16px;
  flex-shrink:0; border:1px solid var(--mint-border); transition:all 0.2s;
}
.faq-a {
  display:none; margin-top:14px; padding-top:14px;
  border-top:1px solid var(--mint-border);
  font-size:13px; font-weight:300; color:var(--text-mid); line-height:1.7;
}
.faq-item.open .faq-a { display:block; }
.faq-item.open .faq-icon { background:var(--mint); color:#fff; border-color:var(--mint); transform:rotate(90deg); }

/* Kontakt-Box */
.contact-box {
  background:var(--white); border-radius:var(--radius-lg); padding:48px 44px;
  border:1px solid var(--mint-border); box-shadow:var(--shadow-md); max-width:560px;
}
.contact-row { display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.contact-icon {
  width:44px; height:44px; border-radius:12px; background:var(--mint-pale);
  display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0;
}
.contact-label { font-size:11px; font-weight:300; color:var(--text-soft); text-transform:uppercase; letter-spacing:0.1em; }
.contact-value { font-size:15px; font-weight:400; color:var(--text); }
.contact-value a { color:var(--mint); text-decoration:none; }
.contact-value a:hover { text-decoration:underline; }

/* Social Icons */
.social-row { display:flex; gap:12px; margin-top:8px; }
.social-link {
  width:40px; height:40px; border-radius:10px; background:var(--mint-pale);
  border:1px solid var(--mint-border); display:flex; align-items:center; justify-content:center;
  font-size:18px; text-decoration:none; transition:all 0.2s;
}
.social-link:hover { background:var(--mint); transform:translateY(-2px); }

/* ============================================================
   GRÜNE CTA-SEKTION (dunkler Hintergrund)
   ============================================================ */
.cta-section {
  background:linear-gradient(160deg, var(--teal-nav) 0%, var(--mint) 100%);
  padding:80px 56px;
}
.cta-inner { max-width:960px; margin:0 auto; display:grid; grid-template-columns:1fr 400px; gap:60px; align-items:center; }
.cta-label {
  font-size:10px; font-weight:500; letter-spacing:0.2em; text-transform:uppercase;
  color:rgba(255,255,255,0.55); margin-bottom:14px;
  display:flex; align-items:center; gap:8px;
}
.cta-label::before { content:''; display:block; width:20px; height:1.5px; background:rgba(255,255,255,0.4); }
.cta-title {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(28px,3vw,42px); font-weight:300; line-height:1.2;
  color:#fff; margin-bottom:18px;
}
.cta-title em { font-style:italic; color:rgba(255,255,255,0.75); }
.cta-desc { font-size:15px; font-weight:300; color:rgba(255,255,255,0.72); line-height:1.8; }
.cta-card {
  background:var(--white); border-radius:var(--radius-lg); padding:36px 32px;
  box-shadow:0 8px 40px rgba(0,0,0,0.18);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background:var(--teal-nav); padding:40px 56px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
}
.footer-brand {
  font-family:'Cormorant Garamond', serif; font-size:20px; font-weight:600;
  color:#fff; letter-spacing:0.04em;
}
.footer-brand sup { font-size:11px; vertical-align:super; font-weight:400; opacity:0.7; }
.footer-sub { font-size:12px; font-weight:300; color:rgba(255,255,255,0.45); margin-top:3px; }
.footer-links { display:flex; gap:20px; flex-wrap:wrap; }
.footer-links a { font-size:13px; color:rgba(255,255,255,0.6); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:#fff; }
.footer-copy { font-size:11px; color:rgba(255,255,255,0.3); margin-top:6px; }

/* ============================================================
   SCROLL-REVEAL ANIMATION
   ============================================================ */
.reveal { opacity:0; transform:translateY(22px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay:0.1s; } .d2 { transition-delay:0.2s; } .d3 { transition-delay:0.3s; } .d4 { transition-delay:0.4s; }

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px) & Tablet (≤ 980px)
   ============================================================ */
@media (max-width:980px) {
  nav { padding:0 24px; }
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }

  section { padding:64px 24px; }
  .cta-section, .page-header { padding:64px 24px; }

  .goals-grid, .faq-grid, .testi-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
  .cta-inner { grid-template-columns:1fr; }

  footer { padding:32px 24px; flex-direction:column; align-items:flex-start; }
}

@media (max-width:600px) {
  .page-title { font-size:32px; }
  .section-title { font-size:26px; }
  .trust-pills { flex-direction:column; }
  .contact-box { padding:32px 24px; }
  nav { height:64px; }
  .nav-mobile { top:64px; }
}

/* ── Dropdown Navigation ── */
.nav-links li.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  cursor: pointer;
  display: flex; align-items: center; gap: 4px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-nav);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 8px;
  list-style: none;
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 200;
  white-space: nowrap;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.nav-links li.nav-dropdown:hover .nav-dropdown-menu,
.nav-links li.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

/* kleine Pfeil-Animation */
.nav-links li.nav-dropdown:hover .nav-dropdown-toggle,
.nav-links li.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
