/**************************************************/
/* 1. ROOT & GLOBAL                               */
/**************************************************/
:root {
    --bg-light: #faf5ee;
    --bg-light-alt: #f3ebdf;
    --bg-dark: #14110f;
    --bg-card: #ffffff;
    --text-main: #1f1b18;
    --text-muted: #7b6f63;
    --accent-gold: #caa15a;
    --accent-gold-soft: rgba(202, 161, 90, 0.18);
    --border-soft: rgba(0, 0, 0, 0.06);
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, .display-1, .display-4, .display-5 {
    font-family: "Playfair Display", serif;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
}

.text-gold {
    color: var(--accent-gold) !important;
}

/**************************************************/
/* 2. NAVBAR                                      */
/**************************************************/
.main-navbar {
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(12px);
}

.brand-title {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-left: 1.5rem;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 0.2rem;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-main);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.cart-link {
    position: relative;
}

.cart-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.35rem;
    border-radius: 999px;
}

.bg-gold {
    background-color: var(--accent-gold) !important;
}

/**************************************************/
/* 3. BUTTONS                                     */
/**************************************************/
.btn-gold {
    background: var(--accent-gold);
    color: #14110f;
    font-weight: 600;
    padding: 0.85rem 2.6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 1px solid var(--accent-gold);
    font-size: 0.8rem;
}

.btn-gold:hover {
    background: transparent;
    color: var(--accent-gold);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    font-weight: 600;
    padding: 0.85rem 2.6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 1px solid var(--accent-gold);
    font-size: 0.8rem;
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: #14110f;
}

/**************************************************/
/* 4. HERO (DONKER, VIDEO)                        */
/**************************************************/
.video-hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    background: #000;
    color: #fff;
}

#heroVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 55%, #050505 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 720px;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.75rem;
    color: var(--accent-gold);
}

.hero-title {
    font-size: 3.6rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-lead {
    font-size: 1rem;
    color: #e5dfd6;
}

.video-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.control-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: #f5f5f5;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.control-btn:hover {
    background: var(--accent-gold);
    color: #14110f;
    border-color: var(--accent-gold);
}

/**************************************************/
/* 5. ABOUT                                       */
/**************************************************/
.section-padding {
    padding: 90px 0;
}

.about-section {
    padding: 100px 0;
}

.image-blend-wrapper {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    background: #000;
}

.image-blend-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.08) saturate(1.05);
}

.about-text {
    padding-left: 40px;
    border-left: 2px solid var(--accent-gold-soft);
}

.about-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    color: var(--accent-gold);
}

.about-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1rem;
    color: var(--text-main);
}

.about-note {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-soft);
}

/**************************************************/
/* 6. PROCESS / WERKWIJZE                         */
/**************************************************/
.process-section {
    padding: 80px 0;
    background: var(--bg-light-alt);
}

.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem auto;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    color: var(--accent-gold);
}

.section-title {
    font-size: 2.2rem;
}

.process-item {
    text-align: center;
}

.process-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 1px solid var(--accent-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: var(--accent-gold);
    background: #fff;
}

/**************************************************/
/* 7. SHOP / PRODUCT CARDS                        */
/**************************************************/
.shop-section {
    padding: 90px 0;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
    border-color: var(--accent-gold-soft);
}

.product-img-box {
    padding: 2.5rem 2rem 1.5rem 2rem;
    text-align: center;
    background: radial-gradient(circle at top, #f3ebdf 0%, #f7f0e6 55%, #fdf8f1 100%);
}

.product-img-box img {
    max-height: 230px;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,0.25));
    transition: transform 0.35s ease;
}

.product-card:hover .product-img-box img {
    transform: translateY(-6px);
}

.price-tag {
    font-size: 1.4rem;
    color: var(--accent-gold);
    font-weight: 700;
    display: block;
    margin: 0.75rem 0 1.25rem 0;
}

/**************************************************/
/* 8. FEATURE BAR                                 */
/**************************************************/
.feature-box {
    text-align: center;
    padding: 2.4rem 1.8rem;
    border-radius: var(--radius-md);
    border: 1px dashed var(--accent-gold-soft);
    background: #fff;
    transition: 0.25s ease;
    height: 100%;
}

.feature-box:hover {
    background: #fdf7ee;
    border-style: solid;
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/**************************************************/
/* 9. BRIDGE SECTION (HORECA)                     */
/**************************************************/
.bridge-section {
    position: relative;
    padding: 110px 0;
    background-image: url('../img/bg-beans.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.bridge-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.9) 50%, rgba(10,10,10,0.96) 100%);
    z-index: 1;
}

.bridge-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/**************************************************/
/* 10. FOOTER                                     */
/**************************************************/
.footer {
    background-color: var(--bg-dark);
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.04);
    color: #d5d0c7;
}

.footer-logo h2 {
    font-family: "Playfair Display", serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer .text-muted {
    color: #a79c8f !important;
}

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

.gallery-item {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.25s ease;
}

.gallery-item:hover {
    border-color: var(--accent-gold);
    opacity: 0.9;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    color: var(--accent-gold);
    border-radius: 999px;
    margin-right: 8px;
    transition: 0.25s ease;
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: #14110f;
}

.footer-bottom {
    background: #0b0908;
    padding: 18px 0;
}

/**************************************************/
/* 11. BACK TO TOP                                */
/**************************************************/
.back-to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    color: #14110f;
    border: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/**************************************************/
/* 12. FORMS & MISC                               */
/**************************************************/
.form-control {
    background-color: #fff;
    border: 1px solid var(--border-soft);
    color: var(--text-main);
    padding: 0.8rem 1rem;
    border-radius: 999px;
}

.form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.15rem rgba(202,161,90,0.25);
}

/**************************************************/
/* 13. RESPONSIVE                                 */
/**************************************************/
@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }

    .video-hero {
        height: 90vh;
        min-height: 520px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .image-blend-wrapper {
        height: 380px;
        margin-bottom: 30px;
    }

    .about-text {
        padding-left: 0;
        border-left: none;
        padding-top: 24px;
        border-top: 2px solid var(--accent-gold-soft);
    }

    .video-controls {
        bottom: 20px;
        right: 20px;
    }

    .feature-box {
        margin-bottom: 18px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 0.9rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.4rem 0;
    }
}
