﻿/* =========================
        Farbkonzept PocketOwner
        ========================= */
:root {
    --po-navy: #122032;
    --po-navy-soft: #1c3146;
    --po-accent: #2b8cff;
    --po-accent-soft: #e6f1ff;
    --po-bg: #f5f7fb;
    --po-surface: #ffffff;
    --po-border: #d1d5db;
    --po-text: #ffffff;
    --po-text-muted: #6b7280;
    --po-radius-lg: 12px;
    --po-shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--po-bg);
    color: var(--po-text);
    line-height: 1.5;
}

a {
    color: var(--po-accent);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* ============ Buttons ============ */
.btn-po-primary {
    background-color: var(--po-accent);
    border-color: var(--po-accent);
    color: #ffffff;
    border-radius: 999px;
    padding: 0.7rem 1.0rem;
    box-shadow: var(--po-shadow-soft);
    font-weight: 500;
}

    .btn-po-primary:hover {
        background-color: #1f74dd;
        border-color: #1f74dd;
    }

.btn-po-outline-light {
    border-radius: 999px;
    padding: 0.6rem 1.3rem;
    border: 1px solid rgba(229, 231, 235, 0.7);
    color: #e5e7eb;
    background-color: transparent;
}

    .btn-po-outline-light:hover {
        background-color: var(--po-navy-soft);
        border-color: var(--po-accent);
        color: #ffffff;
    }

/* ============ Hero ============ */
.section-hero {
    background: linear-gradient(135deg, rgba(18, 32, 50, 0.98), rgba(18, 32, 50, 0.9));
    color: #ffffff;
    padding: 4rem 0 3.5rem;
}

/* Hero auf grösseren Screens höher machen */
@@media (min-width: 992px) {
    .section-hero {
        padding-top: 3rem;
        padding-bottom: 5rem;
        min-height: 100vh;
    }
}

.section-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.4rem;
}

.section-hero h1 {
    font-size: clamp(2.3rem, 3vw, 2.9rem);
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.section-hero p.lead {
    color: #e5e7eb;
    font-size: 1rem;
    margin-bottom: 1.4rem;
}

.section-hero ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.7rem;
    font-size: 0.95rem;
}

.section-hero li {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

    .section-hero li::before {
        content: "•";
        color: var(--po-accent);
        font-weight: 700;
    }

.hero-logo-img {
    max-width: 100%; /* Bild bleibt innerhalb der Spalte */
    height: auto; /* Proportionen bleiben korrekt */
    display: block; /* verhindert seltsame Inline-Abstände */
}

/* auf sehr kleinen Screens etwas kleiner */
@@media (max-width: 575.98px) {
    .hero-logo-img {
        max-width: 350px;
    }
}


.hero-card {
    background-color: rgba(15, 23, 42, 0.8);
    border-radius: var(--po-radius-lg);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--po-shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

    .hero-card h5 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

.hero-meta {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ============ Standard Sections ============ */
section.section {
    padding: 3.5rem 0;
    min-height: 100vh;
}

.section-title {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

.section-lead {
    color: var(--po-text-muted);
    max-width: 620px;
    margin-bottom: 1.8rem;
}

.text-muted-po {
    color: var(--po-text-muted) !important;
}

.card-po {
    background-color: var(--po-surface);
    border-radius: var(--po-radius-lg);
    border: 1px solid var(--po-border);
    box-shadow: var(--po-shadow-soft);
}

    .card-po .card-title {
        font-weight: 600;
    }

/* ============ Parallax Sections ============ */
/* =========================
           Parallax Sections – Vollbreite Background Images
           ========================= */

.parallax-section {
    position: relative;
    width: 100%;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Höhe: Desktop ~60% der Bildschirmhöhe (deutlich höher als vorher) */
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #ffffff;
}

/* Overlay bleibt wie gehabt, aber etwas mehr Luft nach oben/unten */
.parallax-overlay {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 1%);
    width: 100%;
    height: 100%;
    padding: 4rem 0; /* vorher 2.5rem */
}

/* Mobile-Fix: Parallax-Effekt deaktivieren + geringere Höhe */
@@media (max-width: 767.98px) {
    .parallax-section {
        background-attachment: scroll;
        background-position: center top;
        min-height: 35vh; /* auf Handy nicht ganz so riesig */
    }
}


/* ============ CTA ============ */
.section-cta {
    background: linear-gradient(135deg, var(--po-navy), #111827);
    color: #ffffff;
    text-align: center;
    padding-top: 12rem;
    padding-bottom: 5rem;
    min-height: 100vh;
}

    .section-cta p {
        max-width: 520px;
        margin: 0 auto 1.6rem;
    }

@@media (max-width: 767.98px) {
    .section-hero {
        padding-top: 3.2rem;
    }

    .hero-card {
        margin-top: 2rem;
    }

    .parallax-section {
        background-attachment: scroll; /* Mobile-Fix für Parallax */
    }
}

.parallax-1 {
    background-image: url('/images/parallax-1.png');
}

.parallax-2 {
    background-image: url('/images/parallax-2.png');
}

.parallax-3 {
    background-image: url('/images/parallax-3.png');
}
