/* --- BASIS STYLING --- */
body, html {
    margin: 0; padding: 0; height: 100%;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    background-color: #050505; color: white; overflow-x: hidden;
}

/* 2. Geef de hero sectie ruimte aan de bovenkant */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../mixer.jpg');
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed;
    min-height: 100vh; /* Gebruik min-height zodat hij meegroeit met de tekst */
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    text-align: center;
    
    /* DE FIX: */
    padding-top: 80px; /* Dit duwt het logo naar beneden, weg van het menu */
    box-sizing: border-box; /* Zorgt dat de padding de 100vh niet groter maakt */
}

/* --- LOGO SECTIE --- */
.logo-container {
    display: flex; align-items: center; margin-bottom: 35px;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.8));
}

.logo-badge {
    width: 70px; height: 70px; background: rgba(10, 10, 10, 0.8);
    border: 3px solid #0099cc; border-radius: 14px;
    display: flex; align-items: flex-end; justify-content: center;
    gap: 4px; padding-bottom: 15px; margin-right: 20px;
    box-shadow: 0 0 20px rgba(0, 153, 204, 0.3);
    box-sizing: border-box;
}

.eq-bar { 
    width: 6px; 
    border-radius: 1px;
    height: 40px; 
    animation: dance 1.5s infinite alternate linear;
    transform-origin: bottom; 
}

.h1 { background-color: #0099cc; animation-duration: 1.2s; animation-delay: 0.2s; } 
.h2 { background-color: #a366ff; animation-duration: 1.6s; animation-delay: 0.5s; }
.h3 { background-color: #0099cc; animation-duration: 1.4s; animation-delay: 0.0s; } 
.h4 { background-color: #ffffff; animation-duration: 1.8s; animation-delay: 0.3s; }

@keyframes dance {
    0%   { transform: scaleY(0.5); }
    100% { transform: scaleY(0.75); }
}

.logo-text-side { 
    text-align: left; 
    display: flex; flex-direction: column; align-items: flex-start;
}

.brand-name {
    font-size: 52px; font-weight: 900; text-transform: uppercase;
    margin: 0; line-height: 0.85; letter-spacing: -2px; color: #ffffff;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.8);
}

.brand-sub {
    font-size: 14px; text-transform: uppercase; letter-spacing: 5.5px; 
    color: #0099cc; font-weight: bold; display: inline-block;
    margin: 8px 0 0 14px;
}

/* --- CONTACT KAART --- */
.contact-card {
    background: rgba(20, 20, 20, 0.9); backdrop-filter: blur(5px);
    padding: 35px; border-radius: 12px; width: 90%; max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

input, textarea {
    width: 100%; padding: 12px; margin-bottom: 12px;
    background: #000; border: 1px solid #333; color: white;
    box-sizing: border-box; font-family: inherit; border-radius: 4px;
}

input:focus, textarea:focus { outline: none; border-color: #0099cc; }

button {
    width: 100%; padding: 15px; background-color: #0099cc;
    color: #fff; border: none; font-weight: bold;
    text-transform: uppercase; cursor: pointer; border-radius: 4px;
    transition: all 0.3s ease;
}

button:hover { background-color: #a366ff; transform: translateY(-2px); }

.success-msg { color: #00ff88; margin-bottom: 15px; font-weight: bold; }
.error-msg { color: #ff4444; margin-bottom: 15px; font-weight: bold; }

.hp-field { display: none !important; visibility: hidden !important; }

@media (max-width: 500px) {
    .brand-name { font-size: 38px; }
    .logo-badge { width: 55px; height: 55px; margin-right: 15px; }
    .eq-bar { width: 4px; gap: 3px; }
    .brand-sub { font-size: 11px; letter-spacing: 3px; margin-left: 10px; }
}

.main-nav {
    position: absolute; /* Het menu zweeft over de hero heen */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent; /* Verwijder de zwarte achtergrond */
    padding: 25px 0;
    /* Optioneel: een heel licht verloopje van zwart naar transparant voor leesbaarheid */
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #a366ff; /* De paarse kleur uit je EQ-bars */
}

/* Zorg dat de hero sectie relatief is t.o.v. de nav */
.hero {
    position: relative;
}

.main-nav a.active { color: #0099cc; border-bottom: 2px solid #0099cc; padding-bottom: 5px; }

/* --- COMPACT LOGO VOOR FOOTER --- */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    padding-bottom: 30px;
    opacity: 0.8;
}

.logo-badge-small {
    width: 40px; height: 40px; /* Een stuk kleiner */
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid #0099cc; border-radius: 8px;
    display: flex; align-items: flex-end; justify-content: center;
    gap: 2px; padding-bottom: 8px; margin-bottom: 10px;
}

.logo-badge-small .eq-bar {
    width: 4px; /* Dunnere bars */
}

.brand-name-small {
    font-size: 20px; font-weight: 900; text-transform: uppercase;
    margin: 0; letter-spacing: -1px; color: #ffffff;
}

.brand-sub-small {
    font-size: 8px; text-transform: uppercase; letter-spacing: 3px; 
    color: #0099cc; margin-top: 4px;
}

/* Generieke container voor pagina-inhoud */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    width: 90%;
    padding-top: 100px;
}

.container-wide {
    max-width: 1000px;
    margin: 0 auto;
    width: 90%;
    padding-top: 100px;
}

/* Het "Glazen" paneel voor tekst en formulieren */
.glass-panel {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    padding: 30px;
    margin-bottom: 25px;
    text-align: left;
}

.centered-panel {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Call to Action Knop */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #0099cc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: transparent;
    border-color: #0099cc;
}

/* Basis voor alle subpagina's */
.hero-page {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../mixer.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: block; /* Belangrijk voor verticale opbouw */
    width: 100%;
}

/* De titels boven de content */
.section-title {
    color: #0099cc;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Het succesbericht na verzenden */
.success-msg {
    color: #00ff99;
    text-align: center;
    font-weight: bold;
    padding: 20px;
}

.site-footer {
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #666;
    font-size: 0.85rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0099cc;
}

.copyright {
    letter-spacing: 1px;
}
