/* Basis Stijlen */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Nieuwe Header Styling */
header {
    background-color: #333; /* Grijze header, anders zie je de oranje tekst niet! */
    color: #fff;
    padding: 10px 0;
}

header .container.header-content {
    display: flex;
    justify-content: space-between; /* Drukt logo naar links en menu naar rechts */
    align-items: center;
}

/* Logo gedeelte (Links) */
.header-left {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    flex-direction: column; /* Zet tekst netjes onder de afbeelding */
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 70px;
    width: auto;
    display: block;
}

.logo-text {
    color: #ff8901; /* RAL Oranje */
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Menu gedeelte (Rechts) */
.header-right {
    display: flex;
    justify-content: flex-end; 
    position: relative; /* Belangrijk voor uitklapmenu */
}

/* =========================================
   NAVIGATIE & HAMBURGER MENU & TAAL SWITCHER(Altijd actief)
   ========================================= */
   
   .lang-switcher {
    margin-right: 15px;
}

#language-select {
    background: transparent;
    color: #fff;
    border: 1px solid #ff8901;
    border-radius: 4px;
    padding: 3px 5px;
    cursor: pointer;
    font-size: 0.9em;
}

#language-select option {
    background: #333;
    color: #fff;
}

/* De Hamburger Knop */
/* =========================================
   Symmetrische Hamburger naar X Animatie (image_1.png)
   ========================================= */

/* De Hamburger Knop (Fundament) */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px; /* Perfect vierkant voor perfecte symmetrie */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: relative; /* Nodig voor het absolute stapelen van span */
}

/* De drie streepjes (basis) */
.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    
    /* CRUCIAAL VOOR IMAGE_1.PNG: transformeren vanaf het midden */
    transform-origin: center;
    
    /* Stapel de streepjes over elkaar voor de X vorm */
    position: absolute; 
}

/* Positionering hamburgerstand (gesloten) */
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

/* Positionering X stand (open) - image_1.png */

/* Het bovenste streepje draait naar rechts */
.hamburger.open span:nth-child(1) {
    top: 50%; /* Verplaats naar het midden */
    /* Zorg dat het streepje gecentreerd blijft en draai 45 graden */
    transform: translateY(-50%) rotate(45deg);
}

/* Het middelste streepje verdwijnt */
.hamburger.open span:nth-child(2) {
    opacity: 0;
    /* Verdwijnanimatie naar links */
    transform: translate(-10px, -50%); 
}

/* Het onderste streepje draait naar links */
.hamburger.open span:nth-child(3) {
    bottom: 50%; /* Verplaats naar het midden */
    /* Zorg dat het streepje gecentreerd blijft en draai -45 graden */
    transform: translateY(50%) rotate(-45deg);
}

#nav-links {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 50px; /* Menu perfect onder hamburger uitgelijnd */
    right: 0;
    background-color: #333;
    width: 200px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9;
}

#nav-links.active {
    display: flex; 
}

#nav-links a {
    color: #fff;
    text-decoration: none;
    margin: 10px 0;
    font-weight: 500;
    font-size: 1.2em;
    text-align: right;
}

#nav-links a:hover {
    color: #ff8901; /* Linkjes kleuren oranje bij eroverheen zweven! */
}

/* =========================================
   PAGINA INHOUD
   ========================================= */

/* Hero Sectie */
.hero {
    background-color: #ff8901; /* RAL Oranje balk */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero h2 { font-size: 2.8em; margin-top: 0; margin-bottom: 15px; }
.hero p { font-size: 1.3em; margin-bottom: 30px; }

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #fff;
    color: #ff8901; /* Blauw veranderd naar Oranje! */
}
.btn-primary:hover { background-color: #f0f0f0; }

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 10px;
}
.btn-secondary:hover {
    background-color: #fff;
    color: #ff8901; /* Blauw veranderd naar Oranje! */
}

/* Product Overzicht */
.product-overview { padding: 50px 0; }
.product-overview h3 { text-align: center; font-size: 2em; margin-bottom: 40px; }

.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.product-card { background-color: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
.product-card-image { width: 100%; height: 250px; background-color: #eee; }

.img-placeholder {
    width: 100%;
    height: 250px;
    background: #eee url('data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22%23eeeeee%22%2F%3E%3Ctext%20x%3D%2250%25%22%20y%3D%2250%25%22%20font-family%3D%22Arial%22%20font-size%3D%2216%22%20fill%3D%22%23999999%22%20dominant-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%3EProduct Afbeelding%3C%2Ftext%3E%3C%2Fsvg%3E') center center no-repeat;
    border-bottom: 1px solid #ddd;
}

.product-card-content { padding: 25px; }
.product-card h4 { font-size: 1.5em; margin-top: 0; margin-bottom: 15px; }
.product-card p { margin-bottom: 25px; }

.btn-product { background-color: #333; color: #fff; }
.btn-product:hover { background-color: #ff8901; } /* Zweven over knop = oranje */

/* USP Sectie */
.usp-section { background-color: #fff; padding: 50px 0; }
.usp-section h3 { text-align: center; font-size: 2em; margin-bottom: 40px; }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.usp-item h4 { font-size: 1.3em; margin-bottom: 10px; }
.usp-item::before { display: block; font-size: 3em; margin-bottom: 15px; }
.usp-item.icon-robuust::before { content: '🛡️'; }
.usp-item.icon-veilig::before { content: '👷'; }
.usp-item.icon-service::before { content: '📞'; }

/* Footer */
footer { background-color: #333; color: #aaa; padding: 40px 0; text-align: center; margin-top: 30px; }
footer p { margin: 5px 0; }

/* =========================================
   RESPONSIVE DESIGN (Mobiel & Tablet)
   ========================================= */
@media (max-width: 800px) {
    .product-grid { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero h2 { font-size: 2em; }
    .hero p { font-size: 1.1em; }
    .btn { width: 100%; box-sizing: border-box; margin-bottom: 10px; }
    .btn-secondary { margin-left: 0; }
}