/* ===== BASIS ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Helvetica Neue',Arial,sans-serif;
}

html{scroll-behavior:smooth}

/* ===== INTRO SCREEN ===== */
.intro-screen{
    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    animation:fadeOut 0.5s ease 2.0s forwards;
}

/* Logo animatie */
.intro-logo{
    width:220px;
    transform:scale(0);
    animation:pop 2.0s ease forwards;
}

/* POP IN / OUT effect */
@keyframes pop{
    0%{
        transform:scale(0);
        opacity:0;
    }
    20%{
        transform:scale(1.2);
        opacity:1;
    }
    40%{
        transform:scale(0.95);
    }
    60%{
        transform:scale(1.05);
    }
    80%{
        transform:scale(1);
    }
    100%{
        transform:scale(0.9);
        opacity:1;
    }
}

/* scherm fade out */
@keyframes fadeOut{
    to{
        opacity:0;
        visibility:hidden;
    }
}

body{
    background:#000;
    color:#fff;
    line-height:1.6;
}

h1,h2,h3,h4,h5,h6{
    text-transform:uppercase;
    letter-spacing:2px;
}

/* ===== ALGEMEEN ===== */
.section-header{
    margin-bottom:50px;
    text-align:center;
}

.section-header h2,
.stempel-text h2,
.about-header h2{
    font-size:3rem;
    margin-bottom:10px;
}

.section-header p,
.stempel-text p,
.about-item p{
    color:#e5b869;
    font-weight:500;
}

/* ===== WHATSAPP ===== */
.whatsapp-btn{
    position:fixed;
    right:5px;
    bottom:20px;
    width:100px;
    height:100px;
    z-index:1000;
    transition:.3s;
}

.whatsapp-btn img{
    width:100%;
    height:auto;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 12px 50px;

    /* Premium glass look */
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(229, 184, 105, 0.15);

    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(229, 184, 105, 0.25);

    transform: translateY(0);
}

.nav-links{
    display:flex;
}

.nav-left{
    justify-content:flex-end;
    padding-right:20px;
}

.nav-right{
    justify-content:flex-start;
    padding-left:20px;
}

.logo{
    display:flex;
    justify-content:center;
}

.logo img{
    height:130px;
    display:block;
}

header a{
    color:#fff;
    text-decoration:none;
    margin:0 25px;
    font-size:1.1rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:.3s;
    white-space:nowrap;
}

header a:hover,
.footer-col a:hover{
    color:#e5b869;
}

/* ===== HERO ===== */
.hero{
    height:100vh;
    margin-top:80px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.back-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    padding:20px;
}

.hero h1{
    font-size:4.5rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.4rem;
    color:#e5b869;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:500;
}

/* ===== SECTIES ===== */
.services,
.gallery,
.stempelkaart,
.about{
    padding:80px 20px;
}

.services,
.gallery,
.about{
    max-width:1200px;
    margin:auto;
}

.gallery {
    background: linear-gradient(180deg, #0b0f13, #101820);
}
/* ===== GRIDS ===== */
.services-grid,
.gallery-grid{
    display:grid;
    gap:30px;
}

.services-grid{
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
    max-width:900px;
    margin:auto;
}

/* ===== CARDS ===== */
.service-card,
.gallery-item{
    border-radius:10px;
    overflow:hidden;
    border:2px solid transparent;
    border: 2px solid #e5b869;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:active {
    transform: scale(0.97);
}

.service-card {
    background-color: #1a2229;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 100%;
}

.service-card h3 {
    margin: 20px 0 10px;
}

.service-card p {
    padding: 0 20px 25px;
    text-align: center;
}

.service-card:hover,
.gallery-item:hover{
    border-color:#e5b869;
    transform:translateY(-5px);
}

.gallery-item img{
    width:100%;
    object-fit:cover;
    display:block;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.service-card:nth-child(3) img {
    transform: scale(1.05);
}
.service-card img{height:250px}
.gallery-item img{height:350px}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img,
.gallery-item:nth-child(4) img{
    object-position:bottom;
}

.service-card h3,
.about-item h3{
    font-size:1.4rem;
    margin:20px 0 10px;
}

.service-card p{
    font-size:.9rem;
    color:#e5b869;
    font-weight:500;
    padding:0 20px 25px;
}

/* ===== STEMPELKAART ===== */
.stempel-content,
.about-text-container{
    display:flex;
    gap:50px;
}

.stempel-content{
    align-items:center;
    max-width:1000px;
    margin:auto;
}

.stempel-text,
.stempel-image,
.about-item{
    flex:1;
}

.stempel-text p{
    line-height:1.8;
}

.stempel-image img,
.storefront-image img,
.map-section img{
    width:100%;
    border:3px solid #e5b869;
}

.stempel-image img,
.storefront-image img{
    border-radius:10px;
}

/* ===== ABOUT ===== */
.about{
    max-width:1000px;
    text-align:center;
}

.about-header h2{
    margin-bottom:40px;
}

.storefront-image{
    margin-bottom:40px;
}

.storefront-image img{
    max-height:500px;
    object-fit:cover;
}

.about-text-container{
    justify-content:center;
    text-align:left;
}

.about-item p{
    margin-bottom:20px;
}

/* ===== MAP ===== */
.map-section{
    padding:80px 20px;
    background:#ffffff;
    color:#000;


}

.map-header{
    text-align:center;
    margin-bottom:40px;
}

.map-header h2{
    margin-bottom:10px;
}

.map-header p{
    color:#e5b869;
}

.map-container{
    max-width:1200px;
    margin:auto;

    overflow:hidden;
    border-radius:20px;

    border:1px solid rgba(229,184,105,0.35);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.4);
}

.map-container iframe{
    display:block;
    width:100%;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(180deg, #0b0f13, #070a0d);
    border-top: 1px solid rgba(229, 184, 105, 0.15);
    padding-top: 60px; /* Geeft de footer iets meer ademruimte aan de bovenkant */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

/* Logo & Tekst in Footer */
.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    display: block;
}

.brand-col p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #aaa;
    font-size: 0.9rem;
}

/* Footer Titels */
.footer-col h3 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: #e5b869;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Lijsten met de SVG icoontjes */
.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px; /* Ruimte tussen icoon en tekst */
}

.footer-contact-list svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 3px; /* Lijnt het icoon netjes uit met de tekst */
}

.footer-contact-list a, 
.footer-contact-list span {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #e5b869;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons img {
    width: 40px; /* Aangepast van 80px naar 40px voor een elegantere look */
    height: 40px;
    filter: grayscale(100%);
    transition: .3s;
}

.social-icons img:hover {
    filter: grayscale(0) drop-shadow(0 0 5px #e5b869);
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 30px;
    color: #666;
    font-size: .8rem;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

    header{
        display:flex;
        flex-direction:column;
        padding:10px;
    }

    .nav-links{
        justify-content:center;
        width:100%;
        margin:5px 0;
        padding:0;
    }

    .logo{
        margin:10px 0;
    }

    .logo img{
        height:100px;
    }

    header a{
        margin:0 10px;
        font-size:.9rem;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero p{
        font-size:1rem;
    }

    .section-header h2,
    .stempel-text h2,
    .about-header h2{
        font-size:2.2rem;
    }

    .service-card h3,
    .about-item h3,
    .footer-col h3,
    .footer-col h4{
        font-size:1.2rem;
    }

    .stempel-content,
    .about-text-container{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    /* ===== Openingstijden ===== */
}
.hours{
    padding:80px 20px;
    background:#000000;
}

.hours-container{
    max-width:700px;
    margin:auto;
    padding:40px;

    background:#1a2229;

    border:1px solid #e5b869;
    border-radius:20px;

    box-shadow:
        0 0 0 1px rgba(229,184,105,0.12),
        0 10px 30px rgba(0,0,0,0.4);

    backdrop-filter:blur(10px);
}

.hours h2{
    text-align:center;
    margin-bottom:30px;
}

.hours-grid{
    display:grid;
    grid-template-columns:1fr auto;
    gap:15px;

    color:#e5b869;
}

/* ===== Reviews ===== */
.reviews{
    padding:80px 20px;
    background:#0b0f13;
}

.reviews-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.review-score{
    margin-bottom:50px;
}

.stars{
    font-size:2rem;
    color:#e5b869;
    letter-spacing:5px;
}

.review-score h3{
    margin:15px 0 10px;
    font-size:2rem;
}

.review-score p{
    color:#b8b8b8;
}

.review-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.review-card{
    padding:30px;

    background:#1a2229;

    border:1px solid rgba(229,184,105,0.35);
    border-radius:20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.4);

    transition:0.3s ease;
}

.review-card:hover{
    transform:translateY(-5px);
}

.review-card p{
    color:#ffffff;
    margin-bottom:20px;
    line-height:1.8;
}

.review-card span{
    color:#e5b869;
    font-size:0.9rem;
}
/* ===== reviewknop ===== */
.review-btn{
    display:inline-block;
    margin-top:40px;
    padding:14px 28px;

    background:#e5b869;
    color:#000;

    text-decoration:none;
    font-weight:700;

    border-radius:50px;

    transition:0.3s ease;
}

.review-btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 10px 20px rgba(229,184,105,0.3);
}


/* ===== Prijs ===== */
.pricing{
    padding:80px 20px;
    background:#000000;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

    max-width:1200px;
    margin:auto;
}

.pricing-card{
    padding:35px;

    background:#1a2229;

    border:1px solid #e5b869;
    border-radius:20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.4);

    transition:0.3s ease;
}

.pricing-card:hover{
    transform:translateY(-5px);
}

.pricing-card h3{
    margin-bottom:30px;
    text-align:center;

    color:#e5b869;
    font-size:1.5rem;
}

.price-item{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 0;

    border-bottom:1px solid rgba(255,255,255,0.08);
}

.price-item:last-child{
    border-bottom:none;
}

.price-item span:first-child{
    color:#ffffff;
}

.price-item span:last-child{
    color:#e5b869;
    font-weight:700;
}

/* ===== TAAL SWITCHER ===== */
.lang-switch {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

header .lang-switch a {
    margin: 0 5px; 
    font-size: 0.55rem; /* Jouw gekozen kleine formaat */
    opacity: 0.5;
    color: #ffffff;
    transition: opacity 0.3s, color 0.3s;
}

header .lang-switch a.active {
    opacity: 1;
    color: #e5b869;
}

header .lang-switch a:hover {
    opacity: 1;
    color: #e5b869;
}

.lang-switch .divider {
    color: #555555;
    font-size: 0.70rem;
    margin: 0 2px;
}

/* ===== PRODUCTEN ===== */
.products {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.products-grid {
    display: grid;
    /* We maken de gap iets groter en de kaarten breder dan bij services */
    gap: 40px; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
}

.product-card {
    background-color: #1a2229;
    border: 2px solid #e5b869;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    /* Een zachte gouden gloed om extra aandacht te trekken */
    box-shadow: 0 10px 25px rgba(229, 184, 105, 0.15); 
}

.product-card img {
    width: 100%;
    height: 360px; /* Dit is 70px hoger dan de service-cards! */
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-card h3 {
    font-size: 1.5rem; /* Tekst is nét een tikje groter */
    margin: 25px 0 10px;
    color: #fff;
}

.product-card p {
    font-size: 0.95rem;
    color: #e5b869;
    font-weight: 500;
    padding: 0 25px 30px;
}