/* =========================================================
   RESET & BASIS
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --hout: #3B2418;
    --cognac: #8A5A36;
    --goud: #B08A4E;
    --creme: #F5EFE6;
    --donker: #24150E;
    --wit: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--creme);
    color: var(--hout);
    line-height: 1.7;
    animation: paginaStart 1s ease;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    transition: transform .8s ease;
}


/* =========================================================
   ANIMATIES
========================================================= */

@keyframes paginaStart {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes verschijnen {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verschijnen {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

.zichtbaar {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   ALGEMENE SIERLIJNEN
========================================================= */

h1::after,
h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: var(--goud);
    margin: 25px auto;
}


/* =========================================================
   NAVIGATIE
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: .5s;
}

.header.scrolled {
    background: var(--hout);

    box-shadow:
        0 5px 25px rgba(0, 0, 0, .25);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 5px 7%;

    background: rgba(59, 36, 24, .35);

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);

    color: white;
}

.menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu a {
    color: white;
    transition: .3s;
}

.menu a:hover {
    color: var(--goud);
}

.menu-knop {
    display: none;

    background: none;
    border: none;

    color: white;
    font-size: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    display: block;
    width: 400px;
    max-width: 400px;
    height: auto;
}


/* =========================================================
   KNOPPEN
========================================================= */

.button {
    display: inline-block;

    background: #E7AA46;
    color: white;

    padding: 15px 35px;

    border-radius: 2px;

    letter-spacing: 1px;
    text-transform: uppercase;

    font-size: 13px;

    transition: .4s;
}

.button:hover {
    background: #8A5A36;
    transform: translateY(-3px);
}

.button-outline {
    display: inline-block;

    border: 1px solid white;

    padding: 14px 32px;

    color: white;

    transition: .4s;
}

.button-outline:hover {
    background: white;
    color: var(--hout);
}

.formulier-knop {
    display: inline-block;

    width: auto;

    margin-top: 2px;

    padding: 16px 40px;

    font-size: 14px;

    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    background-image:
        url("../images/hero.jpg");

    min-height: 100vh;
    height: auto;

    background-size: cover;
    background-position: center;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: white;

    padding: 160px 8% 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .55)
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 1200px;
    width: 100%;

    margin: auto;
	animation: verschijnen 1.5s ease;
}

.subtitle {
    letter-spacing: 5px;

    color: var(--goud);

    text-transform: uppercase;
}

.hero h1,
.hero h2 {
    font-size: 80px;
    line-height: 1.1;
    margin: 25px 0;
}

.hero-content p {
    font-size: 22px;
}

.hero-buttons {
    margin-top: 40px;

    display: flex;
    justify-content: center;

    gap: 20px;
}


/* =========================================================
   INTRODUCTIE
========================================================= */

.intro {
    padding: 50px 5px 35px;

    text-align: center;
}

.intro-content {
    max-width: 850px;
    margin: auto;
}

.intro h2 {
    font-size: 55px;
    margin-bottom: 35px;
}

.intro p {
    font-size: 19px;
    margin-bottom: 20px;
}


/* =========================================================
   WAARDEN
========================================================= */

.waarden {
    background: var(--hout);

    color: white;

    padding: 100px 8%;

    text-align: center;
}

.waarden h2 {
    font-size: 55px;
    color: var(--goud);

    margin-bottom: 60px;
}

.waarden-container {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 40px;
}

.waarde h3 {
    font-size: 35px;

    color: var(--goud);

    margin-bottom: 15px;
}


/* =========================================================
   INSPIRATIE
========================================================= */

.inspiratie {
    padding: 100px 8%;

    text-align: center;
}

.inspiratie h2 {
    font-size: 55px;

    margin-bottom: 50px;
}

.galerij {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}

.galerij img {
    width: 100%;
    height: 350px;

    object-fit: cover;

    transition: .5s;
}

.galerij img:hover {
    transform: scale(1.04);
}


/* =========================================================
   AFSPRAAK / CTA
========================================================= */

.afspraak {
    background-image:
        linear-gradient(
            rgba(59, 36, 24, .70),
            rgba(59, 36, 24, .70)
        ),
        url("../images/wijnkelder.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;

    padding: 120px 10%;

    text-align: center;
}

.afspraak h2 {
    margin-bottom: 20px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 600;

    color: var(--goud);
}

.afspraak p {
    max-width: 650px;

    margin: 0 auto 30px;

    font-size: 17px;

    line-height: 1.7;

    color: #eee4dd;
}

.afspraak .button {
    display: inline-block;

    padding: 14px 30px;

    background: white;
    color: var(--hout);

    text-decoration: none;

    font-weight: 500;

    transition: all .2s ease;
}

.afspraak .button:hover {
    background: #e8ddd5;
}


/* =========================================================
   WIJNTONNEN PAGINA
========================================================= */

.collectie {
    padding: 25px 8% 100px;

    text-align: center;
}

.collectie h2 {
    font-size: 55px;

    margin-bottom: 60px;
}

.collectie-container {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 35px;
}

.vat-card {
    background: white;

    padding-bottom: 30px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);
}

.vat-card img {
    width: 100%;
    height: 320px;

    object-fit: cover;
}

.vat-card h3 {
    font-size: 34px;

    color: var(--cognac);

    padding: 25px 20px 10px;
}

.vat-card p {
    padding: 0 25px;
}

.details-section {
    background: var(--hout);

    color: white;

    padding: 100px 8%;

    text-align: center;
}

.details-section h2 {
    color: var(--goud);

    font-size: 55px;

    margin-bottom: 50px;
}

.details-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(200px, 1fr));

    gap: 40px;
}

.details-grid h3 {
    color: var(--goud);

    font-size: 30px;
}


/* =========================================================
   OVER ONS
========================================================= */

.over-ons-hero {
    background-image:
        url("../images/wijnkelder.jpg");
}

.verhaal {
    padding: 60px 8%;
}

.verhaal-content {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 60px;

    align-items: center;
}

.verhaal-image img {
    width: 100%;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .2);
}

.verhaal-text h2 {
    font-size: 55px;

    margin-bottom: 30px;
}

.verhaal-text p {
    font-size: 19px;

    margin-bottom: 20px;
}

.verhaal-text a {
    color: #8B5E3C;

    text-decoration: underline;

    text-underline-offset: 3px;
}

.verhaal-text a:hover {
    color: #5C3A24;
}

.visie {
    background: var(--hout);

    color: white;

    text-align: center;

    padding: 100px 10%;
}

.visie h2 {
    color: var(--goud);

    font-size: 55px;
}

.visie p {
    max-width: 800px;

    margin: 30px auto 0;

    font-size: 20px;
}

.quote {
    padding: 100px 10%;

    text-align: center;

    background: var(--donker);

    color: white;
}

.quote h2 {
    color: var(--goud);

    font-size: 60px;
}


/* =========================================================
   AFSPRAAK PAGINA
========================================================= */

.afspraak-hero {
    background-image:
        url("../images/wijnkelder.jpg");
}

.afspraak-intro {
    padding: 100px 10%;

    text-align: center;
}

.afspraak-intro h2 {
    font-size: 55px;

    margin-bottom: 30px;
}

.afspraak-intro p {
    max-width: 800px;

    margin: 20px auto;

    font-size: 19px;
}

.formulier {
    background: var(--hout);

    color: white;

    padding: 30px 10%;

    text-align: center;
}

.formulier h2 {
    color: var(--goud);

    font-size: 55px;

    margin-bottom: 50px;
}

.formulier form {
    max-width: 600px;

    margin: auto;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    text-align: left;

    margin-bottom: 25px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 16px;

    border: 1px solid rgba(176, 138, 78, .35);

    border-radius: 4px;

    background: white;

    font-size: 16px;

    transition: .35s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;

    border-color: var(--goud);

    box-shadow:
        0 0 12px rgba(176, 138, 78, .3);
}

.form-group textarea {
    height: 150px;
}

.afspraak-extra {
    padding: 100px 10%;

    text-align: center;
}

.afspraak-extra h2 {
    font-size: 50px;

    color: var(--cognac);
}


/* =========================================================
   CONTACT PAGINA
========================================================= */

.contact-hero {
    background-image:
        url("../images/hero.jpg");
}

.contact {
    padding: 100px 8%;
}

.contact h2 {
    font-size: 55px;

    color: var(--goud);

    margin-bottom: 60px;

    text-align: center;
}

.contact-container {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 40px;
}

p.home {
    text-align: center;
}

.contact-box {
    background: white;

    padding: 40px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .1);
}

.contact-box h2,
.contact-box h3 {
    color: var(--cognac);

    font-size: 35px;

    margin-bottom: 20px;
}

.contact-box a {
    color: #8B5E3C;

    text-decoration: underline;

    text-underline-offset: 3px;
}

.contact-box a:hover {
    color: #5C3A24;
}

.contact-call {
    background: var(--hout);

    color: white;

    padding: 100px 10%;

    text-align: center;
}

.contact-call h2 {
    color: var(--goud);

    font-size: 55px;
}

.contact-call p {
    max-width: 700px;

    margin: 30px auto;

    font-size: 20px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {
    position: fixed;

    bottom: 25px;
    right: 25px;

    z-index: 9999;

    background-color: #25D366;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, .25);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);

    box-shadow:
        0 6px 20px rgba(0, 0, 0, .35);
}

.whatsapp-float:active {
    transform: scale(1.05);
}


/* =========================================================
   CHECKBOX
========================================================= */

.checkbox {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin: 30px 0;

    color: white;
}

.checkbox input {
    width: auto;

    margin-top: 5px;
}


/* =========================================================
   WIJNTON DETAILPAGINA
========================================================= */

.wijnton-pagina .header {
    background: var(--hout);

    box-shadow:
        0 5px 25px rgba(0, 0, 0, .25);
}

.wijnton-pagina .navbar {
    background: transparent;
}

.wijnton-intro {
    padding-top: 140px;
}

.prijs {
    font-family: 'Cormorant Garamond', serif;

    font-size: 40px;

    color: var(--goud);

    margin: 1px 0;
}

.specificaties {
    width: 100%;

    border-collapse: collapse;
}

.specificaties th,
.specificaties td {
    padding: 12px 0;

    border-bottom:
        1px solid rgba(176, 138, 78, .3);
}

.specificaties th {
    text-align: left;

    color: var(--cognac);
}

.omschrijving {
    margin: 30px 0;

    font-size: 18px;
}

.wijnton-pagina .hero {
    height: auto;

    min-height: 850px;

    padding: 140px 0 100px;
}

.barrel-hero {
    background-image:
        url("../images/wijnvaten.jpg");

    min-height: 100vh;

    height: auto;

    padding: 140px 8% 80px;
}

.hero-product {
    display: grid;

    grid-template-columns: 400px 400px;

    gap: 30px;

    justify-content: center;

    align-items: stretch;
}

.hero-image {
    width: 400px;
    height: 400px;

    max-height: 420px;

    display: flex;

    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius: 8px;
}

.hero-description {
    grid-column: 1 / -1;

    width: 100%;
    max-width: 850px;

    margin: 10px auto 0;

    text-align: center;
}

.hero-description h2 {
    font-size: 40px;

    margin-bottom: 10px;
}

.hero-description p {
    margin: 0 auto;

    line-height: 1.7;
}

.hero-info {
    width: 400px;
    height: 400px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 30px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(5px);

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius: 8px;
}

.hero-specificaties {
    width: 100%;

    border-collapse: collapse;

    margin: 25px 0;
}

.hero-specificaties th,
.hero-specificaties td {
    padding: 8px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, .2);
}

.hero-specificaties th {
    text-align: left;

    color: var(--goud);
}


/* =========================================================
   FAQ PAGINA
========================================================= */

/* Breadcrumb */

.breadcrumb {
    display: flex;

    align-items: center;

    gap: 8px;

    max-width: 1200px;

    margin: 0 auto;

    padding: 18px 24px;

    font-size: 14px;

    color: #6f625a;
}

.breadcrumb a {
    color: #6f625a;

    text-decoration: none;

    transition: color .2s ease;
}

.breadcrumb a:hover {
    color: var(--hout);

    text-decoration: underline;
}

.breadcrumb span[aria-hidden="true"] {
    color: #a3948a;
}


/* FAQ Hero */

.faq-hero {
    background-image:
        url("../images/wijntonnen.jpg");
}

.faq-hero h1 {
    margin: 10px 0 20px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(42px, 6vw, 72px);

    font-weight: 600;

    line-height: 1.05;
}

.faq-hero p:last-child {
    max-width: 650px;

    margin: 0 auto;

    font-size: 18px;

    line-height: 1.6;
}


/* FAQ Intro */

.faq-intro {
    padding: 80px 24px 50px;

    background: #f7f4f0;
}

.faq-intro-content {
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.faq-intro h2 {
    margin-bottom: 25px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(32px, 4vw, 48px);

    color: var(--hout);
}

.faq-intro p {
    margin: 0 auto 18px;

    font-size: 17px;

    line-height: 1.8;

    color: #51463f;
}


/* FAQ */

.faq {
    padding: 70px 24px 90px;

    background: #f7f4f0;
}

.faq-container {
    max-width: 800px;

    margin: 0 auto;
}

.faq-item {
    padding: 30px 0;
	text-align: center;
    border-bottom:
        1px solid #ddd4ce;
}

.faq-item:first-child {
    border-top:
        1px solid #ddd4ce;
}

.faq-item h2 {
    margin: 0 0 14px;

    font-family: "Cormorant Garamond", serif;

    font-size: 28px;

    font-weight: 600;

    line-height: 1.3;

    color: var(--hout);
}

.faq-item p {
    margin: 0;

    max-width: 800px;

    font-size: 16px;

    line-height: 1.8;

    color: #51463f;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    border-top:
        1px solid rgba(176, 138, 78, .4);

    background: var(--donker);

    color: white;

    text-align: center;

    padding: 20px 10px;
}

.footer > h2 {
    margin: 0;

    padding: 0 0 10px;

    font-size: 30px;

    line-height: 1.5;

    color: var(--goud);
}

.footer > h2::after {
    content: "";

    display: block;

    width: 80px;

    height: 2px;

    background: var(--goud);

    margin: 4px auto;
}

.footer-content {
    max-width: 600px;

    margin: 0 auto 5px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    text-align: center;
}

.footer-column {
    min-width: 0;
}

.footer-column p {
    margin: 0;

    padding: 0;

    font-size: 12px;

    line-height: 1.6;

    color: white;
}

.footer-bottom {
    display: block;

    margin: 22px 0 0;

    padding: 0;

    font-size: 12px;

    line-height: 1.6;

    color: #c7aa78;
}

.footer-link {
    color: inherit;

    text-decoration-line: underline;

    text-decoration-color: #b08d57;

    text-decoration-thickness: 1px;

    text-underline-offset: 4px;

    transition:
        color .25s ease,
        text-decoration-color .25s ease;
}

.footer-link:hover {
    color: white;

    text-decoration-color: #ffd166;
}


/* =========================================================
   MOBIEL
========================================================= */

@media (max-width: 900px) {

    /* Navigatie */

    .menu-knop {
        display: block;
    }

    .menu {
        display: none;

        z-index: 999;
    }

    .menu.open {
        display: flex;

        flex-direction: column;

        background: var(--hout);

        padding: 30px;

        position: absolute;

        top: 90px;

        right: 20px;
    }

    .navbar {
        flex-direction: row;

        padding: 10px 20px 5px;

        gap: 20px;

        position: relative;
    }

    .navbar::after {
        content: "";

        position: absolute;

        bottom: 0;

        left: 7%;
        right: 7%;

        height: 1px;

        background: var(--goud);

        opacity: .7;
    }

    /* Logo */

    .logo img {
        width: 300px;

        max-width: 300px;

        height: auto;
    }

    /* Knoppen */

    .button {
        display: none;
    }

    .formulier-knop {
        display: inline-block;

        width: 100%;

        padding: 18px;

        font-size: 16px;
    }

    /* Hero */

    .hero h1,
    .hero h2 {
        font-size: 45px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Formulieren */

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Detailpagina */

    .product-detail {
        grid-template-columns: 1fr;

        gap: 35px;

        margin: 110px auto 60px;
    }

    .detail-info {
        padding: 30px;
    }

    .detail-info h1 {
        font-size: 42px;
    }

    .prijs {
        font-size: 34px;
    }

    .detail-info .button {
        display: inline-block;
    }

    .detail-hero {
        height: 240px;
    }

    .detail-hero h2 {
        font-size: 40px;
    }

    /* Product hero */

    .hero-product {
        grid-template-columns: 1fr;

        justify-items: center;
    }

    .hero-image,
    .hero-info {
        width: 100%;

        max-width: 400px;
    }

    .hero-image {
        height: auto;
    }

    .hero-image img {
        width: 100%;

        height: auto;

        max-width: 400px;
    }

    .hero-description {
        grid-column: 1;

        padding: 0 15px;
    }

    /* FAQ */

    .breadcrumb {
        padding: 14px 18px;

        font-size: 13px;
    }

    .faq-hero {
        min-height: 360px;
    }

    .faq-hero .hero-content {
        padding: 50px 20px;
    }

    .faq-hero h1 {
        font-size: 44px;
    }

    .faq-hero p:last-child {
        font-size: 16px;
    }

    .faq-intro {
        padding: 60px 20px 40px;
    }

    .faq {
        padding: 50px 20px 70px;
    }

    .faq-item {
        padding: 25px 0;
    }

    .faq-item h2 {
        font-size: 25px;
    }

    .faq-item p {
        font-size: 15px;

        line-height: 1.7;
    }

    /* Afspraak CTA */

    .afspraak {
        padding: 60px 20px;
    }
}


/* =========================================================
   KLEINERE MOBIELE SCHERMEN
========================================================= */
@media (max-width: 700px) {

    .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-column p {
        line-height: 1.6;
    }

    .footer-bottom {
        margin-top: 20px;
        line-height: 1.6;
    }

    .hero-description {
        grid-column: 1;
        padding: 0 15px;
    }

}
