/* =========================================================
   CHACHI BAR'BIER — stylesheet
   ========================================================= */

:root {
    --zwart:        #0b0b0c;
    --zwart-zacht:  #131315;
    --zwart-kaart:  #1a1a1c;
    --wit:          #f7f3ec;
    --grijs:        #b3ac9d;
    --gold:         #b8894a;
    --gold-licht:   #d9b06e;
    --lijn:         rgba(184, 137, 74, 0.28);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --max-width: 1180px;
    --radius: 6px;
}

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

html {
    scroll-behavior: smooth;
    /* Veiligheidsnet: nooit horizontaal kunnen scrollen, wat er ook misgaat in een child-element */
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--zwart);
    color: var(--wit);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0;
}

p { margin: 0 0 1em; }

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

img { max-width: 100%; display: block; }

/* Elk element mag nooit breder worden dan zijn ouder — voorkomt overflow door
   losse lange woorden, lange e-mailadressen e.d. op smalle schermen. */
* { min-width: 0; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.container-smal {
    max-width: 760px;
}

.sectie {
    padding: 96px 0;
}

.sectie--donker { background: var(--zwart-zacht); }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 10px;
}

.walk-in-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(184, 137, 74, 0.14);
    border: 1px solid var(--lijn);
    color: var(--gold-licht);
    font-size: 1rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 999px;
    margin: 0 0 18px;
}
.walk-in-badge i { font-size: 0.95em; }

.eyebrow--midden { text-align: center; }

.sectie-titel {
    text-align: center;
    color: var(--wit);
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    margin-bottom: 48px;
    letter-spacing: 0.01em;
}

/* Sierlijke scheidingslijn tussen secties — het terugkerende signature-element */
.scheider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1px;
    background: var(--lijn);
}

.scheider span {
    width: 8px;
    height: 8px;
    background: var(--zwart);
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ---------- Knoppen ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold-licht); outline-offset: 2px; }

.btn-outline {
    background: transparent;
    color: var(--wit);
    border-color: rgba(247, 243, 236, 0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-goud {
    background: var(--gold);
    color: var(--zwart);
    border-color: var(--gold);
}
.btn-goud:hover { background: var(--gold-licht); border-color: var(--gold-licht); }

.btn-klein { padding: 11px 24px; font-size: 0.85rem; }

.icon { font-size: 1rem; line-height: 1; flex-shrink: 0; }

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 11, 12, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--lijn);
    transition: border-color 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
    position: relative;
}

.logo-naam {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    color: var(--wit);
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-badge {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -58%);
    width: 104px;
    height: 104px;
    pointer-events: none;
    transition: width 0.2s ease, height 0.2s ease;
}

.badge-svg { width: 100%; height: 100%; overflow: visible; }
.badge-text-small { font-family: var(--font-body); font-size: 7px; fill: var(--gold); letter-spacing: 1px; }
.badge-text-big { font-family: var(--font-display); font-size: 20px; fill: var(--gold); font-weight: 700; }

/* Op grotere schermen mag het logo flink groter — het is het enige beeldmerk in de header */
@media (min-width: 1024px) {
    .logo-badge {
        width: 152px;
        height: 152px;
        transform: translate(-50%, -50%);
    }
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.header-rechts {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* ---------- "Nu open/gesloten"-indicator ---------- */

.open-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.open-status-stip {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.open-status--open { color: #7fbf7f; }
.open-status--open .open-status-stip {
    background: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.22);
    animation: open-status-puls 2.4s ease-in-out infinite;
}

.open-status--dicht { color: var(--grijs); }
.open-status--dicht .open-status-stip { background: #8a8478; }

@keyframes open-status-puls {
    0%, 100% { box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.22); }
    50% { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0.06); }
}

@media (prefers-reduced-motion: reduce) {
    .open-status--open .open-status-stip { animation: none; }
}

.main-nav a {
    font-size: 0.94rem;
    font-weight: 400;
    color: var(--wit);
    position: relative;
    padding-bottom: 4px;
}

.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--wit);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 64px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(11,11,12,0.92) 0%, rgba(11,11,12,0.55) 42%, rgba(11,11,12,0.35) 100%),
        url('../images/achtergrond.png'),
        radial-gradient(circle at 70% 30%, #3a5a72 0%, #1c2b36 55%, #0a0a0a 100%);
    background-size: cover, cover, cover;
    background-position: center, center 30%, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11,11,12,0.85) 0%, rgba(11,11,12,0) 45%);
    z-index: -1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.hero-tekst h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.08;
    color: var(--wit);
    margin-bottom: 20px;
}

.hero-sub {
    color: var(--grijs);
    font-size: 1.05rem;
    max-width: 440px;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-cta-note {
    margin: 14px 0 0;
    font-size: 0.82rem;
    color: var(--grijs);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-card {
    background: rgba(19, 19, 21, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--lijn);
    border-radius: var(--radius);
    padding: 32px 34px;
}

.hero-card-kop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-card-kop h2 { margin-bottom: 0; }

.hero-card h2 {
    color: var(--gold);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-body);
}

.uren-lijst {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: var(--grijs);
}

.uren-lijst li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 10px;
    margin: 0 -10px;
    border-bottom: 1px dotted rgba(247, 243, 236, 0.08);
    border-radius: 4px;
    transition: background 0.2s ease;
}
.uren-lijst li:last-child { border-bottom: none; }

/* Vandaag highlighten in de openingstijden */
.uren-lijst li.uren-vandaag {
    background: rgba(184, 137, 74, 0.14);
    border-bottom-color: transparent;
}
.uren-lijst li.uren-vandaag strong,
.uren-lijst li.uren-vandaag span { color: var(--wit); }
.uren-lijst li.uren-vandaag strong { color: var(--gold-licht); }

.uren-lijst strong { color: var(--wit); font-weight: 500; flex-shrink: 0; }
.uren-lijst span { text-align: right; }
.uren-lijst em { font-style: italic; opacity: 0.7; display: block; font-size: 0.82em; }

/* ---------- Over ons ---------- */

.over-ons { text-align: center; }

.over-ons p:not(.eyebrow) {
    color: var(--grijs);
    font-size: 1.08rem;
    line-height: 1.85;
}

/* ---------- Prijzen ---------- */
/* Grid i.p.v. CSS-columns + geen white-space:nowrap: dit is precies wat eerder
   voor de horizontale scroll-bug op mobiel zorgde (lange prijsnamen die niet
   mochten omslaan duwden de pagina breder dan het scherm). */

.prijzen-lijst {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 48px;
}

.prijs-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(247, 243, 236, 0.08);
}

.prijs-naam-blok {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.prijs-naam {
    color: var(--wit);
    font-size: 0.98rem;
}

.prijs-omschrijving {
    color: var(--grijs);
    font-size: 0.78rem;
    margin-top: 2px;
}

.prijs-duur {
    color: var(--gold);
    font-size: 0.76rem;
    font-style: italic;
    opacity: 0.85;
    margin-top: 2px;
}

.prijs-lijn {
    flex: 1;
    min-width: 12px;
}

.prijs-bedrag {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.05rem;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
}

/* ---------- Ervaringen ---------- */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 44px;
}

.review-kaart {
    background: var(--wit);
    color: #2a2a2a;
    border-radius: var(--radius);
    padding: 30px 26px 22px;
    position: relative;
    box-shadow: 0 18px 40px -20px rgba(0,0,0,0.5);
}

.review-quote {
    position: absolute;
    top: -8px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 3.2rem;
    color: var(--gold);
    line-height: 1;
}

.sterren { color: var(--gold); letter-spacing: 2px; display: block; margin: 8px 0 12px; }

.review-tekst {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 20px;
}

.review-auteur {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: #333;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wit);
    font-weight: 600;
    flex-shrink: 0;
}

.review-acties {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ---------- Live-embeds (Instagram / Google-reviews via widget-iframe) ---------- */

.embed-wrapper {
    border: 1px solid var(--lijn);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--zwart-kaart);
    margin-bottom: 44px;
}

.embed-iframe {
    width: 100%;
    min-height: 480px;
    border: 0;
    display: block;
}

/* ---------- Contact / kaart ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.kaart-wrapper {
    position: relative;
    border: 1px solid var(--lijn);
    border-radius: var(--radius);
    overflow: hidden;
}

.google-kaart {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: grayscale(0.4) contrast(1.05) brightness(0.95);
}

.kaart-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(11,11,12,0.9);
    border: 1px solid var(--lijn);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.78rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 220px;
}

.kaart-rating { color: var(--gold); }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--zwart-kaart);
    border: 1px solid var(--lijn);
    border-radius: var(--radius);
    padding: 34px;
}

.contact-tel { margin: 0; }
.contact-tel {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wit);
}

.contact-tel-note {
    color: var(--grijs);
    font-size: 0.78rem;
    margin: 0 0 6px;
}

.contact-reactietijd {
    color: var(--grijs);
    font-size: 0.78rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-knoppen {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-adres { color: var(--grijs); font-size: 0.92rem; margin: 0; }

.socials {
    display: flex;
    gap: 14px;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--lijn);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.socials i { font-size: 15px; color: var(--wit); }
.socials a:hover { border-color: var(--gold); background: rgba(184,137,74,0.12); }

.uren-lijst--contact {
    font-size: 0.85rem;
    padding-top: 10px;
    border-top: 1px solid var(--lijn);
}

/* ---------- Instagram sectie ---------- */

.instagram-sectie { text-align: center; }

.insta-titel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.insta-icoon { font-size: 2rem; color: var(--gold); line-height: 1; }

.insta-titel span {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.6vw, 2.2rem);
    color: var(--wit);
}

.insta-gebruiker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 0 auto 28px;
    color: #e1306c;
    font-weight: 600;
    font-size: 0.95rem;
}

.insta-gebruiker-icoon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--zwart-kaart);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insta-gebruiker-icoon i { font-size: 15px; color: var(--wit); }

.insta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    text-align: left;
}

.insta-item {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-item-icoon { font-size: 20px; color: rgba(247,243,236,0.35); }

.insta-item:hover, .insta-item:focus-visible {
    opacity: 1;
    transform: scale(1.02);
}

/* ---------- Galerij (foto's van de zaak) ---------- */

.galerij-sectie { text-align: center; }

.galerij-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.galerij-item {
    aspect-ratio: 4 / 3;
    border: 0;
    padding: 0;
    margin: 0;
    background: var(--zwart-kaart);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    display: block;
    font: inherit;
    color: inherit;
}

.galerij-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.galerij-item:hover img,
.galerij-item:focus-visible img { transform: scale(1.06); }

.galerij-item:focus-visible { outline: 2px solid var(--gold-licht); outline-offset: 3px; }

/* Elke 5e en 8e tegel iets groter voor een minder rigide, "curated" gevoel */
.galerij-grid .galerij-item:nth-child(5) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ---------- Lichtbak ---------- */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(6, 6, 7, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox-afbeelding {
    max-width: min(92vw, 1100px);
    max-height: 86vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}

.lightbox-sluiten {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--lijn);
    color: var(--wit);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.lightbox-sluiten:hover { background: rgba(255,255,255,0.16); }

.lightbox-pijl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--lijn);
    color: var(--wit);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.lightbox-pijl:hover { background: rgba(255,255,255,0.16); }
.lightbox-vorige { left: 20px; }
.lightbox-volgende { right: 20px; }

@media (max-width: 640px) {
    .galerij-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .galerij-grid .galerij-item:nth-child(5) { grid-column: span 2; grid-row: span 1; aspect-ratio: 4/3; }
    .lightbox-pijl { width: 40px; height: 40px; font-size: 1rem; }
    .lightbox-vorige { left: 8px; }
    .lightbox-volgende { right: 8px; }
    .lightbox-sluiten { top: 12px; right: 12px; }
}

/* ---------- Footer ---------- */

.site-footer {
    padding: 36px 0;
    text-align: center;
    color: var(--grijs);
    font-size: 0.8rem;
    border-top: 1px solid var(--lijn);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-juridisch {
    font-size: 0.78rem;
    line-height: 1.7;
}

.footer-juridisch p { margin: 0; overflow-wrap: anywhere; }
.footer-juridisch strong { color: var(--wit); font-weight: 500; }
.footer-juridisch a { color: var(--grijs); }
.footer-juridisch a:hover { color: var(--gold); }

.footer-copyright {
    padding-top: 10px;
    border-top: 1px solid var(--lijn);
    width: 100%;
    max-width: 340px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .hero-card { max-width: 480px; }
    .contact-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .insta-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 720px) {
    .sectie { padding: 64px 0; }

    .walk-in-badge { font-size: 0.88rem; padding: 8px 14px; }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11,11,12,0.98);
        border-bottom: 1px solid var(--lijn);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .main-nav.open { max-height: 260px; }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 24px 16px;
    }
    .main-nav li { border-bottom: 1px solid var(--lijn); }
    .main-nav a { display: block; padding: 14px 0; }

    .nav-toggle { display: flex; }
    .logo-badge { display: none; }

    .hero { min-height: auto; padding: 100px 0 40px; }
    .hero-card { max-width: 100%; padding: 26px 24px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }

    .prijzen-lijst { grid-template-columns: 1fr; }

    .reviews-grid { grid-template-columns: 1fr; }

    .contact-info { padding: 26px; }
    .contact-knoppen { flex-direction: column; align-items: stretch; }
    .contact-knoppen .btn { width: 100%; }

    .insta-grid { grid-template-columns: repeat(3, 1fr); }

    .embed-iframe { min-height: 380px; }
}

@media (max-width: 420px) {
    .header-inner { padding-top: 12px; padding-bottom: 12px; }
    .logo-naam { font-size: 1rem; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Verhuisd-melding (balk bovenaan)
   ========================================================= */

.verhuisd-balk {
    background: var(--gold);
    color: var(--zwart);
}

.verhuisd-balk[hidden] { display: none; }

.verhuisd-balk-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 24px;
    position: relative;
    text-align: center;
}

.verhuisd-balk-inner p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.verhuisd-balk-sluiten {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    color: var(--zwart);
    opacity: 0.65;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}
.verhuisd-balk-sluiten:hover { opacity: 1; }

@media (max-width: 560px) {
    .verhuisd-balk-inner { padding: 10px 44px; }
    .verhuisd-balk-inner p { font-size: 0.8rem; }
}

/* =========================================================
   Cookiemelding
   ========================================================= */

.cookie-melding {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(11, 11, 12, 0.97);
    border-top: 1px solid var(--lijn);
    backdrop-filter: blur(8px);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.cookie-melding.zichtbaar { transform: translateY(0); }

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-inner p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--grijs);
    max-width: 640px;
}

.cookie-inner a { color: var(--gold); text-decoration: underline; }

.cookie-knoppen {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 560px) {
    .cookie-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-knoppen { justify-content: center; }
}

/* =========================================================
   WhatsApp-widget
   ========================================================= */

.whatsapp-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, bottom 0.3s ease, box-shadow 0.2s ease;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
    transform: scale(1.08);
    box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.6);
}

.whatsapp-widget:focus-visible { outline: 2px solid var(--gold-licht); outline-offset: 3px; }

/* Schuift omhoog zolang de cookiemelding onderin zichtbaar is, zodat ze niet overlappen */
body.cookie-zichtbaar .whatsapp-widget {
    bottom: 96px;
}

@media (max-width: 560px) {
    .whatsapp-widget { width: 52px; height: 52px; font-size: 25px; right: 16px; bottom: 16px; }
    body.cookie-zichtbaar .whatsapp-widget { bottom: 168px; }
}
