@charset "utf-8";
/* CSS Document */

/* 📱 Mobiel standaard (kleiner dan 768px) */
body {
    background-image: url("../img/desktop.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    min-height: 100vh;
    height: 100vh;
    position: relative; /* Nodig voor absolute positionering binnen body */
}

.naw{
 	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100vh / 4);
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    background-color: rgba(0,0,0,0.78);
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	
	color: #ffffff;
	font-family: 'Barlow Condensed', Arial, sans-serif;
}
/* Links en rechts met 2 logo's per kant */
.logo {
    display: flex;
    flex-direction: row; /* Zorgt dat logo's naast elkaar komen */
    gap: 10px;
}

.logo img {
    max-height: 40px;
    height: auto;
}

.naam {
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
}
.mobiel{
	display:none;
}


/* 📱📲 Tablet (tussen 768px en 1024px) */
@media (min-width: 768px) and (max-width: 1025px) {
    body {
        background-image: url("../img/tablet.jpg");
    }
    .desktop {
        display: none;
    }
    .mobiel {
        display: inline-block;
    }
    .naw {
        flex-direction: column;
        align-items: center;
    }
	.logo a{
		margin: 15px;
	}
}

@media (max-width: 767px) {
    body {
        background-image: url("../img/phone.jpg");
    }
    .desktop {
        display: none;
    }
    .mobiel {
        display: inline-block;
    }
    .naw {
        flex-direction: column;
        align-items: center;
    }
	.logo a{
		margin: 15px;
	}
}

