html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

:root {
    --brand: #f39a00; /* oranje */
}

#mainNav .nav-link {
    position: relative;
    padding-bottom: 12px;
}

    #mainNav .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 6px;
        height: 2px;
        background: currentColor;
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .2s ease, opacity .2s ease;
    }

    #mainNav .nav-link.active::after {
        opacity: 1;
        transform: scaleX(1);
    }

/* anchors netjes onder je navbar */
section[id] {
    scroll-margin-top: 90px;
}

html {
    scroll-behavior: smooth;
}




/* Hero */
.hero {
    min-height: 540px;
    background: url('/img/hero.jpg') center/cover no-repeat;
    position: relative;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.25);
    }

.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 190px;
    padding-bottom: 120px;
}

/* Buttons */
.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
}

    .btn-primary:hover {
        filter: brightness(0.95);
    }

/* USP card strip */
.usp-strip {
    margin-top: -90px; /* hoger = meer overlap */
    position: relative;
    z-index: 5;
}

.usp-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.usp-item {
    position: relative;
    padding-top: 44px; /* ruimte voor icoon */
}

    .usp-item:last-child {
        border-right: 0;
    }

/* USP strip hoger op de hero */
.usp-strip {
    margin-top: -90px; /* hoger/lager naar smaak */
    position: relative;
    z-index: 5;
}

/* losse USP-kaart */
.usp-card2 {
    background: #fff;
    border-radius: 10px;
    overflow: visible; /* icoon mag uitsteken */
}

/* rond icoon dat boven de kaart uitsteekt */
.usp-icon2 {
    width: 58px;
    height: 58px;
    margin: -40px auto 12px auto; /* trekt omhoog + center */
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--brand); /* gebruikt jouw oranje */
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

/* svg gebruikt currentColor */
.icon-svg svg {
    fill: currentColor;
    display: block;
}

/* USP icon size */
.usp-icon2 .icon-svg svg {
    width: 30px;
    height: 30px;
}

/* Features */
.feature-item {
    position: relative;
}

.feature-line {
    width: 3px;
    border-radius: 2px;
    margin-left: 12px;
}

.feature-line-blue {
    background: #2aa6d9;
}

.feature-line-orange {
    background: var(--brand);
}

.feature-line-green {
    background: #2bb673;
}

.phone-mock {
    max-height: 420px;
}

/* Pricing */
.pricing-card {
    border: 1px solid #eee;
}

.pricing-featured {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

/* Partners */
.partner-card {
    border: 1px solid #eee;
}


.feature-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
}

.icon-svg svg {
    width: 40px;
    height: 40px;
    fill: currentColor; /* pakt kleur van .text-success / etc */
    display: block;
}





/* Start: bovenop hero, transparant */
/* Navbar altijd zichtbaar en bovenop alles */
.navbar-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: transparent;
    transition: background-color .2s ease, box-shadow .2s ease, padding .2s ease;
    padding: 18px 0;
}

    /* Links bovenop hero: wit */
    .navbar-floating .nav-link,
    .navbar-floating .navbar-brand {
        color: #fff !important;
    }

    /* Na scroll: witte balk + donkere tekst */
    .navbar-floating.navbar-scrolled {
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        padding: 10px 0;
    }

        .navbar-floating.navbar-scrolled .nav-link,
        .navbar-floating.navbar-scrolled .navbar-brand {
            color: #111 !important;
        }

        /* Hamburger-icoon goed zichtbaar op wit */
        .navbar-floating.navbar-scrolled .navbar-toggler {
            border-color: rgba(0,0,0,.2);
        }

        .navbar-floating.navbar-scrolled .navbar-toggler-icon {
            filter: invert(1);
        }

/* Zorg dat de hero niet "onder" de fixed navbar wegvalt */
.hero-content {
    padding-top: 190px; /* als je dit al had, mag zo blijven */
}

/* Achtergrond zoals screenshot */
.contact-section {
    background: url('/img/cropped-pexels-nataliya-vaitkevich-4452220-2-scaled-1-1.jpg') center/cover no-repeat;
}

/* Grote witte card */
.contact-card {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
}

/* Oranje linker paneel */
.contact-left {
    background: #f39c12; /* jouw oranje */
    color: #fff;
    padding: 44px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-left-inner {
    width: 100%;
}

.contact-left-title {
    font-weight: 700;
    letter-spacing: .08em;
}

.contact-left-icon {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.7);
    margin: 28px auto 22px auto;
    display: grid;
    place-items: center;
    font-size: 32px;
}

.contact-left-subtitle {
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 26px;
}

/* socials */
.contact-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.75);
    color: #fff;
    text-decoration: none;
    display: grid;
    place-items: center;
    font-weight: 700;
    opacity: .95;
}

    .social-btn:hover {
        opacity: 1;
    }

/* rechter paneel */
.contact-right {
    padding: 34px 44px;
}

.contact-field {
    margin-bottom: 18px;
}

.contact-label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

/* “lijn” inputs zoals screenshot */
.contact-input,
.contact-textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #cfcfcf;
    padding: 10px 0;
    outline: none;
    background: transparent;
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

    .contact-input:focus,
    .contact-textarea:focus {
        border-bottom-color: #999;
    }

/* onderkant: recaptcha links, knop rechts */
.contact-bottom {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.recaptcha-placeholder {
    width: 304px;
    height: 78px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    display: grid;
    place-items: center;
    color: #777;
    font-size: 13px;
}

.contact-send {
    min-width: 180px;
    padding: 14px 18px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .03em;
}

/* responsive */
@media (max-width: 991.98px) {
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-right {
        padding: 28px 22px;
    }

    .contact-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-send {
        width: 100%;
    }
}

.contact-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.75);
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #fff;
    transition: transform .15s ease, opacity .15s ease;
}

    .social-btn:hover {
        opacity: 1;
        transform: translateY(-1px);
    }

    .social-btn svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
        display: block;
    }

.coffee-cta {
    margin-top: 40px; /* iets naar beneden */
    min-height: 120px; /* minder crop/zoom gevoel */
    display: flex;
    align-items: center;
    background: url('/img/cropped-cropped-AdobeStock_276496811-scaled-e1616607206336-1.jpg') center/cover no-repeat;
    background-position: center 35%; /* stel af */
    position: relative;
}


    .coffee-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.35); /* beetje donkerder zoals screenshot */
    }

    .coffee-cta .container {
        position: relative;
    }

.coffee-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.coffee-cta-title {
    color: #fff;
    font-weight: 500;
}

.coffee-cta-btn {
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 4px;
}

@media (max-width: 767.98px) {
    .coffee-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
