/* ═══════════════════════════════════════════════
   FOTOBOX — Page & Promo Styles
   Verwendet zusammen mit styles.css, navbar.css
   ═══════════════════════════════════════════════ */

/* ══════════════════════════════════════
   STARTSEITE — Promo-Section (dark)
   ══════════════════════════════════════ */
.fb-promo-section {
    padding: 96px 20px;
    background-color: var(--bg-dark, #1a1018);
    text-align: center;
}

.fb-promo-inner {
    max-width: 860px;
    margin: 0 auto;
}

.fb-promo-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.fb-promo-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.028em;
}

.fb-promo-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.fb-promo-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

/* ── Pill-Buttons (geteilt zwischen Promo & Hero & CTA) ── */
.fb-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    background: var(--purple-primary, #6c4f70);
    color: #ffffff;
    border: 2px solid var(--purple-primary, #6c4f70);
    border-radius: var(--radius-pill, 980px);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: background 0.25s, border-color 0.25s, transform 0.15s;
}

.fb-btn-primary:hover {
    background: var(--purple-hover, #8c658f);
    border-color: var(--purple-hover, #8c658f);
    transform: translateY(-1px);
}

.fb-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-pill, 980px);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.15s;
}

.fb-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.9);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
}

.fb-promo-placeholder {
    max-width: 840px;
    margin: 0 auto;
    height: 200px;
    border: 2px dashed rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   FOTOBOX-SEITE — Hero (dark)
   ══════════════════════════════════════ */
.fb-hero {
    background-color: var(--bg-dark, #1a1018);
    color: #ffffff;
    padding: 140px 20px 96px;
    text-align: center;
}

.fb-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.fb-hero .fb-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.fb-hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    line-height: 1.07;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.fb-hero p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 600px;
    margin: 0 auto 36px;
}

.fb-hero-placeholder {
    margin: 56px auto 0;
    max-width: 900px;
    height: 260px;
    border: 2px dashed rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   FOTOBOX-SEITE — Vorteile-Grid (hell)
   ══════════════════════════════════════ */
.fb-features {
    padding: 96px 20px;
    background-color: var(--purple-light-bg, #f8f5fa);
}

.fb-features-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.fb-features h2 {
    text-align: center;
    margin-bottom: 52px;
}

.fb-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fb-feature-card {
    background: #ffffff;
    border-radius: var(--radius-card, 12px);
    padding: 34px 28px 30px;
    text-align: left;
    box-shadow: 0 2px 20px rgba(58, 42, 62, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fb-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(58, 42, 62, 0.12);
}

.fb-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--purple-primary, #6c4f70) 10%, transparent);
    margin-bottom: 18px;
}

.fb-feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--purple-primary, #6c4f70);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fb-feature-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
    color: var(--purple-dark, #3a2a3e);
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.fb-feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted, #757081);
    margin: 0;
    line-height: 1.6;
}

/* ══════════════════════════════════════
   FOTOBOX-SEITE — CTA (dark)
   ══════════════════════════════════════ */
.fb-cta {
    padding: 96px 20px;
    background-color: var(--bg-dark, #1a1018);
    text-align: center;
}

.fb-cta-inner {
    max-width: 620px;
    margin: 0 auto;
}

.fb-cta h2 {
    color: #ffffff;
    font-size: clamp(1.6rem, 3.8vw, 2.5rem);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.fb-cta p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.1rem;
    margin-bottom: 36px;
    line-height: 1.65;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
    .fb-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .fb-hero {
        padding: 120px 20px 72px;
    }

    .fb-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .fb-promo-actions {
        flex-direction: column;
        align-items: center;
    }

    .fb-promo-actions .fb-btn-primary,
    .fb-promo-actions .fb-btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .fb-hero-placeholder,
    .fb-promo-placeholder {
        height: 140px;
    }
}
