/* =========================
   Header styling
========================= */
.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #25b4e4;
    padding: 0.625rem 0.75rem; /* 10px 12px → rem */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    gap: 0.625rem; /* 10px */
    height: 4rem; /* ~64px vaste hoogte */
    box-sizing: border-box;
}

.header-left,
.header-center,
.header-right {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

/* Social icons altijd zichtbaar */
.header-socials {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
}

.header-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.header-socials .icon {
    width: 1.375rem;
    height: 1.375rem;
    fill: white;
    cursor: pointer;
}

/* Home icon altijd zichtbaar */
.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.header-icon .icon {
    width: 1.375rem;
    height: 1.375rem;
    fill: white;
}

/* CTA knop */
.header-cta {
    background-color: white;
    color: #25b4e4;
    padding: 0.5rem 1.125rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-cta:hover {
    background-color: #eaf7fc;
}

/* Snelknoppen */
.header-quick {
    background-color: #fff;
    color: #25b4e4;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 0.9375rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.header-quick:hover {
    background-color: #eaf7fc;
}

/* Desktop-only class */
.desktop-only {
    display: inline-flex;
}

/* Hamburger menu */
.menu-toggle {
    font-size: 1.625rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* =========================
   Slide-menu styling
========================= */
.slide-menu {
    position: fixed;
    top: 4rem; /* start net onder de header */
    right: -100%;
    width: 20rem; /* 320px max */
    max-width: 100%;
    height: calc(100vh - 4rem); /* resterende hoogte onder header */
    background: linear-gradient(180deg, #eaf7fc 0%, #ffffff 10rem);
    box-shadow: -0.625rem 0 1.5rem rgba(0, 0, 0, 0.25), -0.125rem 0 0.375rem rgba(0,0,0,0.15);
    border-left: 1px solid rgba(23, 143, 188, 0.25);
    transition: right 0.5s ease;
    z-index: 1500;
    overflow-y: auto;
}

.slide-menu.active {
    right: 0;
}

.slide-menu-inner {
    padding: 1rem 1.25rem; /* top/bottom/zijkanten */
}

.slide-menu-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.slide-menu-inner ul li a {
    display: block;
    padding: 0.875rem 1rem;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0d6fa8;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.slide-menu-inner ul li a:hover {
    background-color: rgba(13, 111, 168, 0.12);
    transform: translateY(-2px);
}

/* =========================
   Mobile adjustments
========================= */
@media (max-width: 767px) {
    .desktop-only {
        display: none;
    }

    .header-bar {
        flex-wrap: wrap;
        justify-content: space-between;
        height: auto;
        padding: 0.75rem 1rem;
    }

    .slide-menu {
        top: 4rem; /* start onder de header */
        width: 100%;
        height: calc(100vh - 4rem);
        right: -100%;
        z-index: 2500;
    }

    .slide-menu-inner {
        padding: 1rem 1.25rem;
    }
}
