/* ═══════════════════════════════════════════════
   INDEX.CSS — Page-spezifische Styles für Startseite
   (Reset/Tokens/Webfonts: siehe shared.css)
   ═══════════════════════════════════════════════ */

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }

/* ── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--green-light);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-cta {
  background: var(--green-main);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.burger-btn, .burger-menu {
  display: none;
}
.burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.burger-line {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  transition: all .3s ease;
  border-radius: 2px;
}
.burger-menu {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--green-light);
  border-left: 1px solid var(--green-light);
  border-radius: 0 0 0 8px;
  min-width: 200px;
  flex-direction: column;
  z-index: 99;
}
.burger-link {
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--green-pale);
  transition: background .2s, color .2s;
}
.burger-link:hover {
  background: var(--primary-pale);
  color: var(--primary-dark);
}
.burger-link:last-child {
  border-bottom: none;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background-image: url('../images/nug-hero-background.webp');
  background-size: cover;
  background-position: center 40%;
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 94, 26, 0.72) 0%,
    rgba(26, 94, 26, 0.55) 50%,
    rgba(26, 94, 26, 0.35) 100%
  );
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.20);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: "🌿"; }
.hero h1 {
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  font-size: clamp(1.4rem, 2.6vw, 2.0rem);
  line-height: 1.3;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1.5px solid var(--green-mid);
}
.btn-primary {
  display: inline-block;
  background: var(--green-main);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(45,122,45,0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,122,45,0.4);
}
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: var(--green-light);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
}
.hero-cover {
  position: relative;
  z-index: 1;
  width: 300px;
  height: auto;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  transform: rotate(2deg);
  transition: transform .3s;
}
.hero-cover:hover { transform: rotate(0deg) scale(1.02); }

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--green-main);
  padding: 40px 5%;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  list-style: none;
  padding: 0;
}
.trust-item { color: #fff; }
.trust-icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.trust-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  opacity: 0.8;
  display: block;
  margin-bottom: 4px;
}
.trust-value {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0.88;
  display: block;
}

/* ── THEMENFELDER ───────────────────────────────────────── */
.themen { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 560px; margin: 14px auto 0; font-size: 1.05rem; }
.themen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.themen-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid var(--green-light);
  transition: all .25s;
}
.themen-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.themen-icon {
  width: 56px; height: 56px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.themen-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.themen-card p  { font-size: 0.92rem; }

/* ── AKTUELLE AUSGABE ───────────────────────────────────── */
.ausgabe { background: var(--white); }
.ausgabe-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
}
.ausgabe-cover-wrap {
  position: relative;
  flex-shrink: 0;
}
.ausgabe-cover {
  width: 260px;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}
.ausgabe-badge {
  position: absolute;
  top: -12px; right: -12px;
  background: var(--pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ausgabe-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-mid);
  margin-bottom: 12px;
  display: block;
}
.ausgabe h2 { margin-bottom: 28px; }
.artikel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.artikel-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-mid);
}
.artikel-list li .art-rubrik {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--green-main);
  display: block;
  margin-bottom: 3px;
}
.artikel-list li .art-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}
.artikel-list li .art-sub {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: block;
}
.btn-flipbook {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--green-main);
  border: 2px solid var(--green-main);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-flipbook:hover {
  background: var(--green-main);
  color: var(--white);
}

/* ── WARUM NUG ──────────────────────────────────────────── */
.warum { background: var(--green-pale); }
.warum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.warum-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  text-align: center;
}
.warum-icon {
  width: 70px; height: 70px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 22px;
}
.warum-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.warum-card p  { font-size: 0.93rem; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.testi-stars {
  color: #B5841C;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-quote {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-main);
}
.testi-location {
  font-size: 0.82rem;
  color: var(--text-mid);
}

/* ── SO BEKOMMEN SIE NUG ────────────────────────────────── */
.so-geht {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  padding: 100px 0;
}
.so-geht .section-header h2 { color: #fff; }
.so-geht .section-header p  { color: rgba(255,255,255,0.85); }
.schritte {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  list-style: none;
  padding: 0;
}
.schritt {
  text-align: center;
  position: relative;
}
.schritt:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 30px;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.4);
}
.schritt h3 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.schritt p  { color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.so-geht-hinweis {
  text-align: center;
  margin: 52px auto 0;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  padding: 20px 32px;
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* ── VERLAGSFAMILIE ──────────────────────────────────────── */
.vf2-section { background: #f0f8f0; padding: 72px 24px; }
.vf2-inner   { max-width: 980px; margin: 0 auto; text-align: center; }
.vf2-title   { font-size: 1.75rem; font-weight: 700; color: var(--green-dark); margin: 0 0 10px; letter-spacing: -.02em; }
.vf2-sub     { color: #3a5a3a; font-size: .95rem; margin: 0 0 44px; line-height: 1.7; }
.vf2-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vf2-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(26,94,26,.09);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.vf2-card:not(.vf2-dim):hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(26,94,26,.16);
}
.vf2-dim { opacity: .75; }
.vf2-cover-wrap { width: 100%; aspect-ratio: 1/1; overflow: hidden; position: relative; }
.vf2-cover-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center; display: block; transition: transform .3s;
}
.vf2-card:not(.vf2-dim):hover .vf2-cover-wrap img { transform: scale(1.03); }
.vf2-dim .vf2-cover-wrap img { filter: grayscale(25%); }
.vf2-badge-soon {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.92); color: #5a8a5a;
  border-radius: 20px; padding: 5px 14px;
  font-size: .78rem; font-weight: 700; letter-spacing: .3px;
}
.vf2-info { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.vf2-mname { font-weight: 700; font-size: 1rem; margin: 0; line-height: 1.3; }
.vf2-mname.vf-kf  { color: #1A5DAE; }
.vf2-mname.vf-ra  { color: #8B0000; }
.vf2-mname.vf-sud { color: #0070A8; }
.vf2-text { color: #4a6a4a; font-size: .86rem; line-height: 1.6; margin: 0; flex: 1; }
.vf2-btn {
  display: inline-block; padding: 11px 22px;
  border-radius: 6px; font-size: .86rem; font-weight: 700;
  text-decoration: none; color: #fff;
  transition: opacity .2s; text-align: center; margin-top: 10px;
}
.vf2-btn.vf-kf { background: #1A5DAE; }
.vf2-btn.vf-ra { background: #8B0000; }
.vf2-btn.vf-sud { background: #0070A8; }
.vf2-btn:hover { opacity: .88; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: #0d3a0d;
  color: rgba(255,255,255,0.85);
  padding: 52px 5% 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-brand .footer-logo-img {
  height: 52px;
  filter: brightness(0) invert(1) opacity(0.92);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.80);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  color: #8ab88a;
  padding: 0 14px;
  height: 38px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: #fff; }
footer h4 { color: #ffffff; font-size: 0.88rem; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.5px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: rgba(255,255,255,0.60); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
footer ul li a:hover { color: #ffffff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(255,255,255,0.65);
}

/* ── FLIPBOOK MODAL ─────────────────────────────────────── */
#fbOverlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,20,0,.82); z-index: 9000;
  align-items: center; justify-content: center;
}
#fbOverlay.is-open { display: flex; }
.fb-inner {
  position: relative;
  background: var(--green-dark);
  border-radius: 12px;
  padding: 16px 16px 12px;
  max-width: 96vw; max-height: 96vh;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
#fb-close-btn {
  position: absolute; top: 8px; right: 12px;
  background: none; border: none; color: #fff;
  font-size: 1.6rem; cursor: pointer; line-height: 1;
  z-index: 1;
  font-family: inherit;
}
#fb-frame {
  border: none; border-radius: 8px;
  background: var(--green-dark); display: block;
  width: 780px; max-width: calc(96vw - 32px);
  height: 560px; max-height: calc(96vh - 80px);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-badges { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-cover { width: 220px; }
  .hero-image-wrap::before { width: 260px; height: 260px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .themen-grid { grid-template-columns: repeat(2, 1fr); }
  .ausgabe-inner { grid-template-columns: 1fr; }
  .ausgabe-cover { width: 200px; margin: 0 auto 32px; display: block; }
  .ausgabe-cover-wrap { text-align: center; }
  .warum-grid { grid-template-columns: 1fr; gap: 20px; }
  .testi-grid { grid-template-columns: 1fr; }
  .schritte { grid-template-columns: 1fr; gap: 24px; }
  .schritt:not(:last-child)::after {
    content: '↓'; right: auto; top: auto;
    bottom: -20px; left: 50%; transform: translateX(-50%);
  }
}
@media (max-width: 720px) {
  .vf2-grid { grid-template-columns: 1fr; gap: 18px; }
  .vf2-title { font-size: 1.4rem; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  section { padding: 56px 0; }
  .hero { padding: 60px 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .themen-grid { grid-template-columns: 1fr; }
  nav { position: relative; }
  .nav-inner { gap: 8px; }
  .nav-logo { height: 56px; }
  .nav-cta { display: none; }
  .burger-btn { display: flex; }
  .burger-menu:not([hidden]) { display: flex; }
}

.no-wrap {
  white-space: nowrap;
}
