/* =========================
   MOBILE HEADER VERBERGEN OP DESKTOP
========================= */
.mobile-header {
    display: none; /* standaard verborgen */
}

/* =========================
   BASIS DESKTOP
========================= */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
  background-color: #ffffff;
  text-align: center;
  padding: 10px;
}


/* Desktop twee kolommen */
.two-column {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 70vw;
    margin: 40px auto;
    gap: 40px;
}

.two-column img {
    width: 45%;
    object-fit: cover;
    height: auto;
}

.two-column p {
    width: 45%;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
}

/* =========================
   ONDERSTE NAVIGATIE
========================= */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 1000;
}

.nav-name {
    font-weight: bold;
    color: black;
    font-size: 30px;
    cursor: default;
}

.bottom-nav a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.bottom-nav a:hover {
    opacity: 0.5;
}

.nav-icon {
    width: 40px;
    height: auto;
    vertical-align: middle;
}

/* =========================
   MEDIA QUERY VOOR MOBIEL
========================= */
@media (max-width: 700px) {

    /* mobiele header zichtbaar op mobiel */
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        padding: 15px 20px;
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(10px);
        z-index: 2000;
    }

    .site-name {
        font-weight: bold;
        font-size: 20px;
        letter-spacing: 2px;
    }

    .menu-btn {
        font-size: 28px;
        border: none;
        background: none;
        cursor: pointer;
    }

    /* Alles één kolom: tekst boven, foto eronder */
    .two-column {
        flex-direction: column;
        align-items: center;
        width: 90vw;
        margin: 30px auto;
        gap: 20px;
    }

    .two-column img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .two-column p {
        width: 100%;
        text-align: center;
        font-size: 16px;
        line-height: 1.5;
    }

    .bottom-nav {
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
    }

    .bottom-nav a {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .nav-icon {
        width: 30px;
    }
}