/*
Theme Name: De Brink Barbershop
Description: Een stoere, tijdloze one-pager voor Barbershop Brink in Apeldoorn.
Author: Antigravity
Version: 1.0.0
*/

:root {
    --gold: #C9A961;
    --gold-hover: #b5954d;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gray: #333333;
    --light-gray: #f9f9f9;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --text-dark: #333333;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Zorgt dat horizontale scrollbalken wegblijven */
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--black);
}

h1 { font-size: 3rem; color: var(--white); }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }

p { margin-bottom: 1.5rem; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--black); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Header */
header {
    background-color: rgba(10, 10, 10, 0.98);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}
.mobile-actions {
    display: none;
    align-items: center;
    gap: 15px;
}
.menu-toggle, .close-menu {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}
.menu-toggle:hover, .close-menu:hover {
    color: var(--gold);
}
.drawer-header {
    display: none;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}
nav a.nav-link {
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
nav a.nav-link:hover {
    color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--black);
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn:hover {
    background-color: var(--gold-hover);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--black);
    color: var(--black);
}
.btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Verminderde dekking van de donkere overlay voor een veel lichtere foto */
    background: linear-gradient(rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.4)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    padding-top: 80px;
    color: var(--white);
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    letter-spacing: 0px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8); /* Zorgt dat tekst leesbaar blijft op een lichtere foto */
}
.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #f5f5f5;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* Over ons */
.about {
    background-color: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}
.staggered-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 0;
}
.staggered-images .img-1 {
    aspect-ratio: 4/5;
    transform: translateY(30px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.staggered-images .img-2 {
    aspect-ratio: 4/5;
    transform: translateY(-20px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.about-content h2 { margin-bottom: 20px; }

/* Diensten */
.services {
    background-color: var(--light-gray);
    text-align: center;
}
.service-list {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #ccc;
}
.service-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--black);
    font-weight: 700;
}
.service-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Werkwijze */
.workflow {
    background-color: var(--white);
    text-align: center;
}
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.workflow-card {
    background-color: var(--light-gray);
    padding: 40px 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.workflow-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}
.workflow-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Reviews */
.reviews {
    background-color: var(--black);
    text-align: center;
    color: var(--white);
}
.reviews h2 {
    color: var(--white);
}
.reviews p {
    color: #ccc;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.review-card {
    background-color: var(--dark-gray);
    padding: 30px;
    border-radius: 4px;
    text-align: left;
    border: 1px solid var(--gray);
}
.stars { color: var(--gold); margin-bottom: 15px; }
.review-text { font-style: italic; color: #ddd; }
.review-author { margin-top: 15px; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; color: var(--gold); }

/* Locatie */
.location {
    background-color: var(--white);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    filter: grayscale(80%);
}
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.contact-info-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

/* Footer */
footer {
    background-color: #050505;
    padding: 40px 0 20px;
    text-align: center;
    border-top: 2px solid var(--gold);
    color: var(--white);
}
footer p {
    color: #ccc;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-logo span { color: var(--gold); }
.social-links {
    margin: 20px 0;
}
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--dark-gray);
    color: var(--white);
    border-radius: 50%;
    margin: 0 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.social-links a:hover {
    background-color: var(--gold);
    color: var(--black);
}
.copyright {
    color: #888;
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Mobile Sticky Book Button */
.mobile-sticky-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
    header .container {
        flex-direction: row;
        gap: 0;
    }
    .logo img {
        max-height: 85px; /* Wat groter op mobiel op verzoek */
    }
    .mobile-actions {
        display: flex;
    }
    .mobile-actions .btn-sm {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    #site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.98);
        border-left: 1px solid var(--gray);
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        transition: right 0.3s ease;
        z-index: 1001;
        display: flex;
        flex-direction: column;
    }
    #site-nav.open {
        right: 0;
    }
    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid var(--gray);
    }
    .drawer-title {
        color: var(--gold);
        font-family: var(--font-heading);
        font-size: 1.5rem;
        text-transform: uppercase;
        font-weight: 700;
    }
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 25px;
    }
    nav a.nav-link {
        font-size: 1.2rem;
    }
    .desktop-only {
        display: none;
    }
    .about-grid, .workflow-grid, .review-grid, .location-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        text-align: center;
        margin-top: 20px;
    }
    .staggered-images .img-1, .staggered-images .img-2 {
        transform: translateY(0);
    }
    h1 { font-size: 1.8rem; }
    .hero h1 { font-size: 2.2rem; }
    h2 { font-size: 1.5rem; }
    /* Let's keep the sticky button if they still want it, or rely on header */
    /* .mobile-sticky-btn { display: block; } */
    /* body { padding-bottom: 60px; } */
}
