/* ═══════════════════════════════════════════════
   NOW Aktivreisen – Base Design System
   Waldwoche-Stil: Clean, Modern, Viel Weissraum
   ═══════════════════════════════════════════════ */

:root {
    --now-orange: #F5A623;
    --now-orange-hover: #E6941A;
    --now-orange-light: rgba(245,166,35,0.08);
    --now-green: #2D4A3E;
    --now-green-light: #4a7c59;
    --now-green-soft: rgba(45,74,62,0.06);
    --bg-offwhite: #F8F9F5;
    --bg-creme: #FAF8F0;
    --bg-white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-body: #3d3d3d;
    --text-medium: #666666;
    --text-light: #999999;
    --border-light: #e8e8e8;
    --border-subtle: #f0f0f0;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --transition: 0.25s ease;
    --container: 1120px;
    --container-narrow: 760px;
    --space-section: 120px;
    --space-section-mobile: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-body);
    background: var(--bg-offwhite);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--now-green);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 16px; }
h3 { font-size: clamp(20px, 2.5vw, 24px); }
h4 { font-size: 18px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--now-orange);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--now-orange-hover); }

/* ── Layout ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-label {
    font-family: 'Dancing Script', cursive;
    color: var(--now-orange);
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    margin-bottom: 16px;
}

.section-intro {
    color: var(--text-medium);
    font-size: 18px;
    max-width: 640px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn,
a.btn,
.entry-content a.btn,
.card-body a.btn,
.now-page a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--now-orange);
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none !important;
    line-height: 1.4;
}
.btn:hover {
    background: var(--now-orange-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245,166,35,0.25);
}

.btn-lg {
    font-size: 17px;
    padding: 16px 40px;
}

.btn-white {
    background: #FFFFFF;
    color: var(--now-green);
    border-color: transparent;
}
.btn-white:hover {
    background: #f5f5f5;
    color: var(--now-green);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,0.4);
    color: #FFFFFF;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: #FFFFFF;
}

.btn-outline-dark {
    background: transparent;
    border-color: var(--border-light);
    color: var(--text-body);
}
.btn-outline-dark:hover {
    border-color: var(--now-green);
    color: var(--now-green);
}

/* ── Header ── */
.now-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(45,74,62,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.now-header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.now-header-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity var(--transition);
}
.now-header-logo:hover img { opacity: 0.85; }

.now-header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.now-header-nav a {
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: color var(--transition);
    text-decoration: none;
}
.now-header-nav a:hover { color: #FFFFFF; }

.now-header-nav .nav-cta {
    background: var(--now-orange);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
}
.now-header-nav .nav-cta:hover {
    background: var(--now-orange-hover);
    color: #FFFFFF;
}

.now-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 10001;
    position: relative;
}
.now-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.now-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.now-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.now-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45,74,62,0.55) 0%, rgba(45,74,62,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    max-width: 800px;
}

.hero-logo { margin-bottom: 40px; }
.hero-logo img {
    height: 72px;
    width: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.02em;
}

.hero h1 {
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero .subtitle {
    font-family: 'Dancing Script', cursive;
    color: var(--now-orange);
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 20px;
}

.hero p {
    color: rgba(255,255,255,0.75);
    font-size: 19px;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Trust Bar ── */
.trust-bar {
    background: var(--now-green);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.trust-item .check {
    color: var(--now-orange);
    font-weight: 600;
    font-size: 15px;
}

/* ── Cards ── */
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card:hover .card-img img { transform: scale(1.04); }

.card-body { padding: 28px; }
.card-body h3 { font-size: 20px; margin-bottom: 10px; }
.card-body p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.65;
}

/* ── Info Cards (Icon + Text) ── */
.info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow var(--transition);
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
}
.info-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}
.info-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
}

/* ── Glass Cards (on dark bg) ── */
.glass-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: background var(--transition);
}
.glass-card:hover { background: rgba(255,255,255,0.1); }
.glass-card h3 { color: #FFFFFF; font-size: 20px; margin-bottom: 10px; }
.glass-card p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.6; }

/* ── Highlight Box ── */
.highlight-box {
    background: var(--bg-creme);
    border-left: 3px solid var(--now-orange);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
}
.highlight-box strong { color: var(--now-green); }

/* ── Price Box ── */
.price-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.price-badge {
    display: inline-block;
    background: var(--now-green);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.price-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 48px);
    color: var(--now-green);
    line-height: 1.1;
}

/* ── Steps ── */
.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--now-orange);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
}
.step-content h3 { font-size: 18px; margin-bottom: 4px; }
.step-content p { color: var(--text-medium); font-size: 15px; }

/* ── FAQ ── */
.faq details { border-bottom: 1px solid var(--border-light); }
.faq summary {
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--now-green);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    font-size: 22px;
    color: var(--text-light);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
    transition: var(--transition);
}
.faq details[open] summary::after { content: '\2212'; color: var(--now-orange); }
.faq details div, .faq details p {
    padding-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* ── Steps Grid (4-column) ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; text-align: center; }
.steps .step { padding: 0 8px; display: block; }
.step-number {
    width: 64px; height: 64px; background: var(--now-orange); color: #FFFFFF;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 28px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.steps .step h3 { color: #FFFFFF; font-size: 18px; margin-bottom: 10px; }
.steps .step p { color: #c0d5cb; font-size: 15px; }

/* ── FAQ Accordion (JS-powered) ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--bg-white); border: 1px solid var(--border-light);
    border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-question {
    padding: 20px 24px; font-family: 'Montserrat', sans-serif; font-weight: 600;
    font-size: 17px; color: var(--now-green); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    background: none; border: none; width: 100%; text-align: left;
}
.faq-question:hover { color: var(--now-orange); }
.faq-arrow { font-size: 20px; transition: transform 0.3s ease; color: var(--now-orange); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-medium); font-size: 16px; line-height: 1.7; }

/* ── Checklist ── */
.checklist {
    list-style: none;
    padding-left: 0;
}
.checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-body);
}
.checklist li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--now-orange);
    font-weight: 700;
}

/* ── Footer ── */
.now-footer {
    background: var(--now-green);
    padding: 64px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 13px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.footer-col p, .footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.8;
}
.footer-col a:hover { color: var(--now-orange); }

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
}

/* ── CTA Section ── */
.cta-section {
    position: relative;
    padding: var(--space-section) 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45,74,62,0.7) 0%, rgba(45,74,62,0.85) 100%);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-content h2 {
    color: #FFFFFF;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}
.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 32px;
}

/* ── Section Backgrounds ── */
.bg-offwhite { background: var(--bg-offwhite); }
.bg-creme { background: var(--bg-creme); }
.bg-white { background: var(--bg-white); }
.bg-green {
    background: var(--now-green);
    color: rgba(255,255,255,0.8);
}
.bg-green h2, .bg-green h3 { color: #FFFFFF; }
.bg-green p { color: rgba(255,255,255,0.65); }
.bg-green .section-label { color: var(--now-orange); }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Split (Image + Text) ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split-img { border-radius: var(--radius); overflow: hidden; }
.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Image Strip ── */
.img-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    line-height: 0;
}
.img-strip img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    filter: sepia(0.25) saturate(0.8) contrast(1.05) brightness(0.95);
}

/* ── GP Elements hide ── */
.site-header, #masthead, .main-navigation, .top-bar,
.mobile-menu-control-wrapper, .navigation-branding,
.gen-sidebar-nav, .page-header, .entry-meta,
.site-footer, #colophon, .footer-bar, .site-info,
.inside-site-info, .footer-widgets, .skip-link,
.generate-back-to-top, .entry-header, .post-image {
    display: none !important;
}

/* ══════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --space-section: 72px;
        --space-section-mobile: 56px;
    }

    body { font-size: 16px; }

    .now-menu-toggle { display: flex; }
    .now-header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: var(--now-green);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 9999;
    }
    .now-header-nav.open { display: flex; }
    .now-header-nav a { font-size: 20px; color: rgba(255,255,255,0.85); font-weight: 500; }
    .now-header-nav a:hover { color: #FFFFFF; }
    .now-header-nav .btn { margin-top: 12px; font-size: 18px; padding: 16px 48px; }

    .hero { min-height: 75vh; }
    .hero h1 { font-size: 30px; }
    .hero .subtitle { font-size: 22px; }
    .hero p { font-size: 17px; }
    .hero-logo img { height: 56px; }

    .trust-items { gap: 16px; }
    .trust-item { font-size: 13px; }

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

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

    .split { grid-template-columns: 1fr; gap: 32px; }

    .img-strip { grid-template-columns: repeat(2, 1fr); }
    .img-strip img { height: 120px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .cta-content h2 { font-size: 26px; }

    .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .img-strip { grid-template-columns: 1fr; }
    .img-strip img { height: 180px; }

    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
}

/* ── Quellen-Popup (Kassen-Unterseiten) ── */
.now-source-trigger{display:inline-flex;align-items:center;gap:6px;font-family:"Montserrat",sans-serif;font-size:13px;font-weight:600;color:var(--now-green,#2D4A3E);cursor:pointer;border:1.5px solid rgba(45,74,62,.25);border-radius:8px;padding:8px 16px;background:rgba(45,74,62,.04);transition:all .2s;text-decoration:none}
.now-source-trigger:hover{background:rgba(45,74,62,.1);border-color:rgba(45,74,62,.4)}
.now-source-trigger svg{width:16px;height:16px;flex-shrink:0}
.now-source-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:99999;justify-content:center;align-items:center;padding:24px}
.now-source-overlay.active{display:flex}
.now-source-modal{background:#fff;border-radius:16px;max-width:560px;width:100%;padding:36px;position:relative;box-shadow:0 20px 60px rgba(0,0,0,.2);max-height:85vh;overflow-y:auto}
.now-source-close{position:absolute;top:16px;right:16px;background:none;border:none;font-size:22px;cursor:pointer;color:#999;width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:background .2s}
.now-source-close:hover{background:#f0f0f0;color:#333}
.now-source-label{font-family:"Montserrat",sans-serif;font-size:11px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--now-orange,#F5A623);margin-bottom:8px}
.now-source-title{font-family:"Montserrat",sans-serif;font-weight:800;font-size:20px;color:var(--now-green,#2D4A3E);margin-bottom:20px;line-height:1.3}
.now-source-quote{background:#FAF8F0;border-left:4px solid var(--now-orange,#F5A623);padding:20px 24px;border-radius:0 12px 12px 0;margin-bottom:20px;font-size:15px;line-height:1.7;color:#444;font-style:italic}
.now-source-meta{font-size:13px;color:#888;margin-bottom:20px;line-height:1.5}
.now-source-link{display:inline-flex;align-items:center;gap:6px;font-family:"Montserrat",sans-serif;font-size:14px;font-weight:600;color:var(--now-green,#2D4A3E);text-decoration:none;border-bottom:2px solid var(--now-orange,#F5A623);padding-bottom:2px;transition:color .2s}
.now-source-link:hover{color:var(--now-orange,#F5A623)}
