/* =================================================================
   1. B-THAM KLEUREN & BASIS INSTELLINGEN
   ================================================================= */
:root {
    --primary-color: #84BBC0;
    --secondary-color: #C8E0E3;
    --nav-bg-color: #016879;
    --accent-color: #002b36; 
    --text-color: #666666;
    --text-dark: #000000;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Verdana, Geneva, sans-serif; line-height: 1.6; color: var(--text-color); background-color: #fafcfc; }

/* TAAL-SYSTEEM */
.lang-nl, .lang-en, .lang-de { display: none; }
body.active-nl .lang-nl { display: block; }
body.active-en .lang-en { display: block; }
body.active-de .lang-de { display: block; }
body.active-nl span.lang-nl { display: inline; }
body.active-en span.lang-en { display: inline; }
body.active-de span.lang-de { display: inline; }

.lang-switcher { background-color: var(--text-color); padding: 0.5rem 1rem; text-align: right; }
.lang-btn { background: none; border: none; color: #cccccc; font-family: Verdana, sans-serif; font-weight: bold; font-size: 0.8rem; cursor: pointer; margin-left: 10px; padding: 2px 6px; text-transform: uppercase; border-bottom: 2px solid transparent; }
.lang-btn:hover { color: var(--white); }
body.active-nl .btn-nl, body.active-en .btn-en, body.active-de .btn-de { color: var(--white); border-bottom: 2px solid var(--primary-color); }

/* HEADER */
header { background-color: var(--white); padding: 1.5rem 1rem; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.logo-container { display: flex; align-items: center; justify-content: center; }
.logo-container img { max-width: 240px; height: auto; border: none; }

/* MENUBALK */
.menubalk { background-color: var(--nav-bg-color); box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.nav-header { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 1rem; color: var(--white); font-weight: bold; font-size: 0.9rem; }
.menu-toggle { display: flex; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; background: transparent; border: none; cursor: pointer; padding: 0; }
.menu-toggle .bar { width: 100%; height: 3px; background-color: var(--white); transition: all 0.3s ease; }

.menubalk ul { list-style: none; display: none; flex-direction: column; text-align: center; padding: 0.5rem 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.menubalk.menu-open ul { display: flex; }
.menubalk.menu-open .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menubalk.menu-open .bar:nth-child(2) { opacity: 0; }
.menubalk.menu-open .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.menubalk li { width: 100%; }
.menubalk a { display: block; color: var(--white); text-decoration: none; font-size: 0.85rem; font-weight: bold; padding: 0.8rem 1rem; transition: background-color 0.2s ease; }
.menubalk a:hover { background-color: var(--accent-color); }

/* SPA SECTIES */
.spa-section { display: none; }
.spa-section.active { display: block; }

.page-title { background-color: var(--secondary-color); color: var(--text-dark); padding: 1.5rem; text-align: center; border-bottom: 1px solid #ced4da; }
.page-title h2 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--white); }
.content-container { max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem; }
.section-title { color: var(--text-dark); font-size: 1.2rem; margin: 1.5rem 0 1rem 0; border-left: 4px solid var(--nav-bg-color); padding-left: 0.5rem; }

/* HOME */
.hero { background-color: var(--primary-color); color: var(--white); padding: 3.5rem 1.5rem; text-align: center; }
.hero h2 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--white); }
.hero p { font-size: 0.95rem; max-width: 850px; margin: 0 auto 1.5rem auto; color: var(--white); }

.btn { display: inline-block; background-color: var(--white); color: var(--text-color); padding: 0.8rem 1.5rem; text-decoration: none; border-radius: 4px; font-weight: bold; font-size: 0.85rem; border: 1px solid #ccc; }
.btn-extra-aandacht { background-color: var(--nav-bg-color); color: var(--white); border: 2px solid var(--white); margin-top: 10px; }

.services { padding: 3rem 1.5rem; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.card { background-color: var(--white); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); border: 1px solid #e0e0e0; overflow: hidden; display: flex; flex-direction: column; }
.card-img { width: 100%; height: 200px; object-fit: cover; border-bottom: 4px solid var(--primary-color); }
.card-content { padding: 1.5rem; text-align: center; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.card h3 { color: var(--text-dark); font-size: 1.2rem; margin-bottom: 0.8rem; }
.card p { font-size: 0.85rem; color: var(--text-color); margin-bottom: 1.5rem; }
.card a { font-weight: bold; font-size: 0.85rem; color: var(--nav-bg-color); text-decoration: underline; }

/* =================================================================
   VERHUUR SPECIFIEKE STYLING
   ================================================================= */
/* Achtergrond is nu 100% WIT (#ffffff) zodat het PU logo perfect blendt! */
.pu-verhuur-top { 
    text-align: center; 
    margin-bottom: 2.5rem; 
    background-color: var(--white); 
    padding: 2rem; 
    border-radius: 6px; 
    border: 1px solid #e0e0e0; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.pu-verhuur-top img.pu-logo-wide { max-width: 100%; height: auto; max-height: 130px; }

.verhuur-vloot-lijst { background-color: var(--white); border: 1px solid #e0e0e0; border-radius: 6px; padding: 2rem; margin-bottom: 3rem; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.verhuur-vloot-lijst ul { list-style-type: square; padding-left: 1.5rem; margin-top: 1rem; margin-bottom: 1.5rem; }
.verhuur-vloot-lijst li { font-size: 0.95rem; margin-bottom: 0.6rem; color: var(--text-dark); }

/* DE NIEUWE 12-FOTO SHOWROOM (3 BREEED X 4 HOOG) */
.showroom-grid-12 {
    display: grid;
    grid-template-columns: 1fr; /* Mobiel: 1 kolom */
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
.showroom-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.showroom-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.showroom-card img {
    width: 100%;
    height: 260px;
    aspect-ratio: 1 / 1; /* Maakt ze strak vierkant */
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color);
}
.showroom-content {
    padding: 1.2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafcfc;
}
.showroom-content h4 {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.4;
}

/* Info blokken exact gelijk uitgelijnd qua grootte */
.info-grid-5050 { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.info-block-equal { background-color: var(--white); border: 1px solid #e0e0e0; border-top: 5px solid var(--primary-color); border-radius: 4px; padding: 2rem; display: flex; flex-direction: column; }
.info-block-equal h4 { color: var(--text-dark); font-size: 1.1rem; margin-bottom: 1rem; }
.info-block-equal p { font-size: 0.9rem; }

/* VOORRAAD */
.voorraad-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 1rem; -webkit-overflow-scrolling: touch; }
.voorraad-iframe { width: 100%; height: 900px; border: none; border-radius: 4px; background-color: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

/* OVER ONS */
.text-block { background-color: var(--white); padding: 2.5rem; border-radius: 6px; border: 1px solid #e0e0e0; }
.text-block h3 { color: var(--nav-bg-color); margin-bottom: 1.2rem; font-size: 1.3rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.contact-info { background-color: var(--white); padding: 2.5rem; border-radius: 6px; border: 1px solid #e0e0e0; border-top: 5px solid var(--primary-color); }
.contact-info h3 { color: var(--text-dark); margin-bottom: 1.5rem; font-size: 1.3rem; }
.contact-info a { color: var(--nav-bg-color); font-weight: bold; text-decoration: none; }
.contact-map { background-color: #e9ecef; border-radius: 6px; overflow: hidden; min-height: 300px; display: flex; align-items: center; justify-content: center; border: 1px solid #e0e0e0;}

/* FOOTER */
footer { background-color: var(--text-color); color: var(--white); text-align: center; padding: 2.5rem 1rem; margin-top: 3rem; font-size: 0.85rem; border-top: 4px solid var(--secondary-color); }
footer p { margin-bottom: 0.5rem; }

/* DESKTOP AANPASSINGEN (TABLET EN PC) */
@media (min-width: 768px) {
    .nav-header { display: none; }
    .menubalk ul { display: flex !important; flex-direction: row; justify-content: center; padding: 0; border-top: none; }
    .menubalk li { width: auto; }
    .menubalk a { padding: 1rem 1.5rem; }
    .lang-switcher { padding: 0.5rem 3rem; }
    
    .page-title h2 { font-size: 1.6rem; }
    .hero h2 { font-size: 2rem; }
    .services { grid-template-columns: repeat(3, 1fr); }
    
    /* Precies 3 kolommen breed op PC schermen (en dus 4 rijen hoog voor 12 foto's!) */
    .showroom-grid-12 { grid-template-columns: repeat(3, 1fr); }
    
    .info-grid-5050 { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    
    .voorraad-container { padding: 2rem 1rem; }
    .voorraad-iframe { height: 1200px; padding: 30px; }
}