html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    padding-top: 45px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;    
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: visible;
    transform: translate3d(0, 0, 0);
    
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 75px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-head);
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--color-teal);
}

.nav-menu a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; 
    background: var(--color-teal); transition: 0.3s;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.btn-nav {
    background-color: var(--color-teal);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3); }
.btn-nav::after { display: none; } 

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--text-heading);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    padding: 80px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.mobile-nav.active { right: 0; }

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
    font-family: var(--font-head);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--color-teal); padding-left: 5px; }

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #9ca3af;
}

.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0; visibility: hidden;
    transition: 0.3s;
}
.menu-overlay.active { opacity: 1; visibility: visible; }

@media (max-width: 900px) {
    .nav-menu { display: none; } 
    .hamburger { display: block; } 
    .logo-img { height: 55px; }
}

.cookie-banner {
    position: fixed; bottom: 30px; left: 30px; right: 30px;
    max-width: 500px; background: white; padding: 25px;
    border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid #e5e7eb; z-index: 9999;
    display: flex; flex-direction: column; gap: 20px;
    transform: translateY(150%); transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-content { display: flex; gap: 20px; align-items: flex-start; }
.cookie-icon { font-size: 2rem; color: var(--color-gold); flex-shrink: 0; margin-top: 5px; }

.cookie-text h4 { margin: 0 0 5px 0; font-size: 1.1rem; color: var(--text-heading); }
.cookie-text p { margin: 0; font-size: 0.9rem; color: #64748b; line-height: 1.5; }
.cookie-text a { color: var(--color-teal); font-weight: 700; text-decoration: underline; }

.cookie-actions { display: flex; justify-content: flex-end; }

.btn-accept {
    background-color: var(--color-teal); color: white; border: none;
    padding: 12px 25px; border-radius: 50px; font-weight: 700; cursor: pointer;
    font-size: 0.95rem; transition: 0.2s;
}
.btn-accept:hover { background-color: #0f766e; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3); }

.btn-reject {
    background-color: var(--color-coral); color: white; border: none;
    padding: 12px 25px; border-radius: 50px; font-weight: 700; cursor: pointer;
    font-size: 0.95rem; transition: 0.2s;
    margin-right: 10px;
}
.btn-reject:hover { background-color: #c44b4b; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(212, 21, 21, 0.05) }

@media (max-width: 600px) {
    .cookie-banner { left: 15px; right: 15px; bottom: 15px; }
}

footer {
    background-color: white;
    padding-top: 80px;
    padding-bottom: 30px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.95rem;
    color: #64748b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-heading);
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}
.footer-logo:hover { filter: none; opacity: 1; }

.footer-desc {
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 350px;
}

.footer-meta {
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--color-teal);
    transform: translateX(3px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: #4b5563;
}
.contact-list i {
    color: var(--color-teal);
    font-size: 1.3rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

.legal-links a { margin-left: 20px; color: #94a3b8; }
.legal-links a:hover { color: var(--color-teal); }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .legal-links a { margin: 0 10px; }
}

/* ANIMATIE HIER BENEDEN
body {
    opacity: 0; 
    transition: opacity 0.2s ease-in-out; 
}

body.page-loaded {
    opacity: 1; 
} */

