/* ============================================================
   PENGUINLIFE.NL — Stylesheet
   Stijl: Quite Luxury / Accessible Corporate
   Font: Jost
   Kleuren:
     Donkerblauw : #132C58  (R19  G44  B88)
     Oranje      : #E66530  (R230 G101 B48)
     Lichtblauw  : #2D67B7  (R45  G103 B183)
     Wit         : #FFFFFF
   ============================================================ */

/* ---- Reset & basis ---- */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --dark-blue:  #132C58;
    --orange:     #E66530;
    --light-blue: #2D67B7;
    --white:      #FFFFFF;
    --off-white:  #f5f6f9;
    --text-muted: rgba(19, 44, 88, 0.55);
    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--dark-blue);
    background: var(--white);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

a {
    color: inherit;
}

/* ---- Typografie ---- */

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); }

.hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.75rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.05rem; font-weight: 600; }

p  { font-size: 1.05rem; }


/* ============================================================
   LAYOUT
   ============================================================ */

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

/* Sectie achtergronden */
.section-light   { background: var(--white);    color: var(--dark-blue); }
.section-dark    { background: var(--dark-blue); color: var(--white); }
.section-contact { background: var(--off-white); color: var(--dark-blue); padding: 100px 0; }

/* Sectiekoptekst (gecentreerd blok) */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-intro {
    margin-top: 1rem;
    font-size: 1.05rem;
    opacity: 0.7;
}

/* Label boven koptekst */
.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

/* Tweekolomlay-out */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.two-col.reverse .col-image { order: -1; }

.col-text p + p {
    margin-top: 1rem;
}

/* CTA onder productenraster */
.section-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* Webshop CTA in producten-sectie */
.shop-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.85rem 1.75rem;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.shop-cta-link:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
}

.shop-cta-img {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.82;
    transition: opacity 0.2s;
}

.shop-cta-link:hover .shop-cta-img {
    opacity: 1;
}

.shop-cta-bag {
    display: block;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.shop-cta-label {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}


/* ============================================================
   NAVIGATIE
   ============================================================ */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(19, 44, 88, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s;
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 42px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* Scheidingsstreep tussen Penguin-logo en shop-logo */
.nav-logo-divider {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.22);
    margin: 0 1rem;
    flex-shrink: 0;
}

/* Webshop-logo + winkeltas */
.nav-shop-logo {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s, opacity 0.2s;
}

.nav-shop-logo:hover {
    color: var(--white);
    opacity: 1;
}

.nav-shop-img {
    height: 34px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: opacity 0.2s;
}

.nav-shop-logo:hover .nav-shop-img {
    opacity: 1;
}

.nav-shop-bag {
    display: block;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.2s;
}

.nav-shop-logo:hover .nav-shop-bag {
    opacity: 1;
}

/* Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.83rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    padding: 0.4rem 0.7rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.09);
}

/* Instagram-knop in nav */
.nav-links .btn-instagram {
    display: flex;
    align-items: center;
    padding: 0.25rem;
    background: none;
    border: none;
}

.nav-links .btn-instagram:hover {
    background: none;
}

.instagram-icon {
    display: block;
    height: 28px;
    width: 28px;
    border-radius: 6px;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}

.nav-links .btn-instagram:hover .instagram-icon {
    opacity: 1;
    transform: scale(1.08);
}

/* Shop-knop in nav */
.nav-links .btn-shop {
    background: var(--orange);
    color: var(--white) !important;
    padding: 0.45rem 1rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-links .btn-shop:hover {
    background: #c8571d;
}

/* Hamburger knop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger animatie open */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Achtergrond — vervang door background-image: url(images/hero.jpg) */
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1e3d 0%, #1a3a6b 55%, #2D67B7 100%);
    z-index: 0;
}

/* Donkere overlay bovenop de foto */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(19, 44, 88, 0.82) 0%,
        rgba(19, 44, 88, 0.50) 60%,
        rgba(19, 44, 88, 0.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: var(--nav-height);
    color: var(--white);
}

/* Split-layout: tekst links, video rechts */
.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-video-wrap {
    flex: 0 0 38%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.hero-video-wrap video {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.hero-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.25rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    max-width: 16ch;
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 52ch;
    margin-bottom: 2.5rem;
    opacity: 0.88;
    line-height: 1.85;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* ============================================================
   KNOPPEN
   ============================================================ */

.btn-primary,
.btn-secondary {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #c8571d;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.col-text .btn-primary {
    margin-top: 2rem;
}

.price-note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.7;
    margin-top: 1rem;
}

.btn-submit {
    font-size: 1rem;
    padding: 1rem 2.5rem;
    margin-top: 0.5rem;
}

/* Shop-knop in footer */
.btn-shop-footer {
    display: inline-block;
    background: var(--orange);
    color: var(--white) !important;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.55rem 1.1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-shop-footer:hover {
    background: #c8571d;
}


/* Sectie foto's (vervanging van placeholders) */
.section-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.tall-photo {
    aspect-ratio: 3 / 4;
}

#filosofie .col-image img {
    max-width: 75%;
    margin: 0 auto;
}

#penguin-one .col-image .carousel {
    max-width: 75%;
    margin: 0 auto;
}

#varen-op-zon .col-image img {
    max-width: 75%;
    margin: 0 auto;
}

#b2b .col-image .carousel {
    max-width: 75%;
    margin: 0 auto;
}

#verhuur .col-image img {
    max-width: 75%;
    margin: 0 auto;
}

/* ============================================================
   AFBEELDING PLACEHOLDERS
   (Verwijder deze blokken zodra je echte foto's plaatst)
   ============================================================ */

.img-placeholder {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-blue) 100%);
    border-radius: 6px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.img-placeholder span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    font-style: italic;
    text-align: center;
    padding: 1rem;
    z-index: 1;
}

.img-placeholder.tall   { aspect-ratio: 3 / 4; }
.img-placeholder.product-img { aspect-ratio: 16 / 10; border-radius: 0; }

/* Lichte variant (op donkere secties) */
.img-placeholder.light {
    background: linear-gradient(135deg, rgba(45,103,183,0.3) 0%, rgba(19,44,88,0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
}


/* ============================================================
   FEATURE LIST
   ============================================================ */

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(19, 44, 88, 0.08);
}

.section-dark .feature-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

/* Blockquote */
blockquote {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--orange);
    background: var(--off-white);
    border-radius: 0 4px 4px 0;
    font-style: italic;
    font-weight: 300;
    font-size: 1rem;
    color: var(--dark-blue);
    line-height: 1.7;
}


/* ============================================================
   PRODUCTENRASTER
   ============================================================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.product-card {
    border: 1px solid rgba(19, 44, 88, 0.1);
    border-radius: 6px;
    overflow: visible;
    background: var(--white);
    color: var(--dark-blue);
    transition: box-shadow 0.25s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 36px rgba(19, 44, 88, 0.12);
    transform: translateY(-3px);
}

.product-img-real {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
    flex-shrink: 0;
}

.product-card-body {
    padding: 1.1rem 1.25rem 1.4rem;
}

.product-card-body h3 {
    margin-bottom: 0.35rem;
    color: var(--dark-blue);
}

.product-card-body p {
    font-size: 0.9rem;
    color: var(--dark-blue);
    opacity: 0.65;
    line-height: 1.6;
}

.product-tekst {
    background-color: #ffffff;
    padding: 1rem 1.25rem 1.25rem;
    width: 100%;
    flex-shrink: 0;
}

.product-tekst p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #132C58 !important;
    margin: 0;
}

.product-tekst strong {
    font-weight: 600;
    color: #132C58 !important;
}


/* ============================================================
   CONTACTFORMULIER
   ============================================================ */

.contact-form {
    max-width: 680px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--orange);
}

.char-count {
    float: right;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 0.98rem;
    color: var(--dark-blue);
    background: var(--white);
    border: 1.5px solid rgba(19, 44, 88, 0.2);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

/* Selectpijl */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23132C58' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(45, 103, 183, 0.14);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Formulier feedback (succes / fout) */
.form-feedback {
    max-width: 680px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
}

.form-feedback.success {
    display: block;
    background: rgba(45, 103, 183, 0.1);
    border: 1px solid var(--light-blue);
    color: var(--dark-blue);
}

.form-feedback.error {
    display: block;
    background: rgba(230, 101, 48, 0.1);
    border: 1px solid var(--orange);
    color: var(--dark-blue);
}


/* ============================================================
   FOOTER
   ============================================================ */

footer {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.72);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand a {
    display: inline-block;
    text-decoration: none;
}

.footer-brand {
    padding-top: 4.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-top: 0.5rem;
    color: var(--white);
}

.footer-initiative {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: var(--white);
}

.footer-initiative a {
    color: var(--white);
    text-decoration: none;
}

.footer-initiative a:hover {
    text-decoration: underline;
}

.footer-address {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--white);
    line-height: 1.6;
}

.rj-logo {
    display: inline-block;
    width: 120px;
    height: auto;
    margin: 0.5rem 0;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.1rem;
}

.footer-nav ul { list-style: none; }

.footer-nav ul li { margin-bottom: 0.5rem; }

.footer-nav a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact p { font-size: 0.9rem; }

.footer-bottom {
    text-align: center;
    padding-top: 1.75rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: ≤ 960px */
@media (max-width: 960px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Op tablet: afbeelding altijd ná de tekst */
    .two-col.reverse .col-image { order: 1; }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Mobiel: ≤ 768px */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .section { padding: 70px 0; }
    .section-contact { padding: 70px 0; }

    /* --- Navigatie mobiel --- */
    .nav-toggle {
        display: flex;
        z-index: 10;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--dark-blue);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 2rem 1.5rem;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        font-size: 1rem;
        padding: 0.7rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links .btn-shop {
        margin-left: 0;
        margin-top: 0.75rem;
        text-align: center;
        border-bottom: none;
        border-radius: 4px;
        padding: 0.65rem 1rem;
    }

    /* --- Hero --- */
    .hero { min-height: 90vh; }
    .hero-content { flex-direction: column; gap: 2.5rem; }
    .hero-video-wrap { flex: 0 0 auto; width: 75%; align-self: flex-start; }
    .hero-sub { font-size: 1rem; }

    /* --- Formulier --- */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* --- Producten --- */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand { grid-column: auto; }
}

/* ============================================================
   LOGO ACCENTEN
   ============================================================ */

/* Hero — wit op donkere achtergrond */
.logo-accent--hero {
    display: block;
    height: 72px;
    width: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.65;
}

/* Sectiedivider — zwart logo op witte achtergrond */
.logo-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem 2rem;
    background: var(--white);
}

.divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: rgba(19, 44, 88, 0.12);
}

.logo-accent--divider {
    display: block;
    height: 48px;
    width: auto;
    opacity: 0.18;
}

/* Contact — zwart logo op lichte achtergrond */
.logo-accent--contact {
    display: block;
    height: 56px;
    width: auto;
    margin: 0 auto 1.75rem;
    opacity: 0.2;
}


/* ============================================================
   APP PREVIEW
   ============================================================ */

.app-preview {
    text-align: center;
}

.app-preview-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
}

.app-screenshot {
    display: block;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(19, 44, 88, 0.15);
    border: 1px solid rgba(19, 44, 88, 0.08);
}


/* ============================================================
   CAROUSEL
   ============================================================ */

.carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}


/* ============================================================
   SCROLL-ANIMATIE (fade-in bij scrollen)
   ============================================================ */

.anim-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.anim-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Hero altijd zichtbaar — geen fade */
.hero.anim-section {
    opacity: 1;
    transform: none;
}


/* Klein mobiel: ≤ 400px */
@media (max-width: 400px) {
    .container { padding: 0 1.25rem; }
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-secondary { text-align: center; }
}
