* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
}

.audioprojecten {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    list-style-type: none;
}

/* Zorg dat de figure de volledige breedte pakt en geen rare marges heeft */
.description .video {
    width: 100%;
    margin: 1.5rem 0; /* Ruimte boven en onder de video */
}

/* Zorg dat de iframe de breedte vult en de juiste 16:9 verhouding behoudt */
.description .video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0; /* Verwijdert de standaard iframe rand */
}

.menu_mob {
    margin-left: 15px;
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.menu_mob ul a {
    list-style: none;
    text-decoration: none;
    color: black;
}

.menu_mob ul a:hover {
    text-decoration: underline;
}

.menu_mob ul {
    list-style: none;
    font-family: "Open Sans";
    font-size: 20px;
    line-height: 40px;
    color: black;
}

.menu_mob ul li {
    margin-left: 0;
    display: block;
    margin-right: 30px;
}

.ctr_container {
    background-color: #fff;
    max-width: 1200px;
    min-height: 100vh;
    margin: 0 auto;
    display: grid;
    gap: 0px;
    display: block;
}

.logo img {
    display: none;
}

.back {
    text-decoration: none;
    padding: 10px;
    min-height: 50px;
    color: black;
}

.back:hover {
    font-weight: 500;
    cursor: pointer;
}

.beelden h1 {
    padding: 0;
    margin: 0;
    font-size: 50px;
    line-height: 52px;
    margin-bottom: 30px;
}

.beelden h2 {
    padding: 0;
    margin: 0;
    padding-top: 15px;
}

.menu {
    display: none;
}
.title {
    margin: 0;
    padding: 0;
}

/* Basis styling voor de grid container */
.gallery {
  display: grid;
  gap: 40px 20px; /* Ruimte tussen de items (verticaal, horizontaal) */
}

/* Mobiel-first: 1 kolom met afbeelding en tekst naast elkaar */
.gallery-item {
  display: grid;
  grid-template-columns: 120px 1fr; /* Vaste breedte voor afbeelding op mobiel */
  gap: 15px;
  align-items: start;
}

.image-placeholder {
  aspect-ratio: 1 / 1;
  background-color: #cccccc; /* De grijze kleur uit je screenshot */
  width: 100%;
}

.inhoud {
    padding: 0px 20px;
    margin-top: 30px;
}
.info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.gallery {
    padding-top: 20px;
}

.info p {
  margin: 2px 0;
  font-size: 0.95rem;
}

.menu ul a {
    list-style: none;
    text-decoration: none;
    color: black;
}

.menu_mainpage a {
    text-decoration: none !important;
    display: inline; /* Cruciaal: inline zorgt dat de achtergrond per regel meebreekt */
    
    /* We maken een heel dun okergeel lijntje met een gradient */
    background-image: linear-gradient(#DCB122, #DCB122);
    background-position: 0 100%; /* Links onderaan de tekstplaatsen */
    background-repeat: no-repeat;
    
    /* Hier bepalen we de dikte van de lijn (2px) en de beginbreedte (0%) */
    background-size: 0% 2px; 
    
    /* Snelheid en souplesse van de animatie */
    transition: background-size 0.3s ease-out; 
}

.menu_mainpage a:hover {
    /* Bij hover groeit de achtergrond (de lijn) naar 100% breedte, per regel! */
    background-size: 100% 2px;
}

@media only screen and (min-width: 600px) {

.menu_mob {
    display: none;
}

.ctr_container {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) 250px;
  }

.logo img {
    width: 100%;
    display: block;
}

.menu {
    display: block;
}

.gallery {
    grid-template-columns: repeat(3, 1fr); /* 3 kolommen zoals in plaatje 1 */
  }

  .gallery-item {
    display: block; /* Terug naar tekst onder de afbeelding */
  }

  .image-placeholder {
    margin-bottom: 15px;
  }
}

.main-image {
    padding-top: 20px;
}



.spacer {
    height: 500px;
    width: 100%;
}


.logo {
    background-color: #dcb122;
}

.plaatje img {
    display: block;
    margin-top: 0px;
    padding: 20px;

}

.menu ul a {
    list-style: none;
    text-decoration: none;
    color: black;
}

.menu ul a:hover {
    text-decoration: underline;
}

.menu ul {
    margin-top: 200px;
    list-style: none;
    font-family: "Open Sans";
    font-size: 20px;
    line-height: 40px;
    color: black;
}

figure, img {
    width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6, ul, li, a, p {
    font-family: "Open Sans";
}

h1 {
    padding: 25px 0;
}

p {
    padding-bottom: 20px;
}

li {
    margin-left: 15px;
    line-height: 30px;
}

ul {
    margin-bottom: 15px;
}

CSS
footer {
    display: grid;
    place-items: center; /* Zorgt dat de tekst mooi verticaal en horizontaal gecentreerd staat */
    min-height: 100px;   
    text-align: center;
    background-color: #fff;
    width: 100%;
}

@media only screen and (min-width: 600px) {
    .plaatje {
        min-height: 100vh;
    }

    footer {
        /* Dwingt de footer om op desktop over alle 3 de kolommen te spannen, 
           zodat hij netjes gecentreerd onder de hele site staat */
        grid-column: 1 / 4; 
    }
}

/* Styling voor het hele formulier */
.contactformulier {
    max-width: 400px;
    margin: 20px 0;
    font-family: sans-serif;
}

/* Styling voor de labels */
.contactformulier label {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 15px;
    color: #FFF;
}

/* Styling voor de invoervelden */
.contactformulier input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Zorgt dat padding binnen de breedte valt */
    font-size: 14px;
}

/* Focus styling voor de invoervelden */
.contactformulier input[type="text"]:focus {
    border-color: #DCB122;
    outline: none;
}

/* De knop (basis layout + jouw kleuren) */
.contactformulier .contactbutton.oker {
    display: block;
    width: 100%; /* Maakt de knop even breed als de velden */
    background-color: #DCB122;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center; /* Centreert de tekst in de knop */
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease; /* Zorgt voor een vloeiende overgang */
}

/* Rollover / Hover effect (zwart) */
.contactformulier .contactbutton.oker:hover {
    background-color: #000000;
    color: #ffffff;
}

.space_hr {
    margin-top: 15px;
    margin-bottom: 15px;
    height: 2px;          /* Bepaalt de dikte van de lijn */
background-color: rgba(0, 0, 0, 0.2); /* Zwart met 50% transparantie */
    border: none;         /* Verwijdert de standaard browser-rand */
}

/* De losse knop-link */
a.knop {
    display: inline-block; /* Zorgt ervoor dat padding en breedte goed werken op een link */
    background-color: rgba(0, 0, 0, 0.8);;
    color: #ffffff !important; /* !important zorgt dat de witte kleur niet overschreven wordt door de rode pagina-styling */
    text-decoration: none; /* Verwijdert de standaard onderstreping van de link */
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease; /* Vloeiende overgang naar zwart */
    margin: 15px 0;
}

/* Rollover / Hover effect */
a.knop:hover {
    background-color: #000000;
    color: #ffffff !important;
    text-decoration: none;
}

/* De slideshow container loopt tot de bodem en is okergeel */
.plaatje {
    position: relative;
    width: 100%;
    background-color: #dcb122 !important;
    overflow: hidden;
    margin-top: 0px;
}

/* De afbeeldingen vullen nu NIET meer de hele 100vh, maar een perfect vierkant (1:1) */
.plaatje img.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    /* FIX: In plaats van height 100%, dwingen we hier de 1:1 verhouding af! */
    aspect-ratio: 1 / 1 !important; 
    height: auto !important; 
    
    object-fit: cover;
    padding: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

/* De actieve slide */
.plaatje img.slide.active {
    opacity: 1;
    z-index: 2;
}


.slideshow_tekst {
    display: none;
}


@media only screen and (min-width: 600px) {
    /* We vertellen de browser dat de complete tweede grid-cel okergeel moet zijn tot de bodem */
    .ctr_container > .plaatje {
        background-color: #dcb122 !important;
        display: block;
        margin-top: 30px;
    }

    .slideshow_tekst {
    padding: 20px;
    font-family: "Open Sans", sans-serif;
    color: #333;
    line-height: 1.6;
    display: block;
}
}



.slideshow_tekst p {
    font-size: 18px;
    padding-bottom: 15px;
}

/* Zorgt ervoor dat op grotere schermen de tekst netjes in de middelste kolom blijft */
@media only screen and (min-width: 600px) {
    .slideshow_tekst {
        grid-column: 2;
        padding: 30px 0; /* Haalt de zij-padding weg omdat het grid al ruimte geeft */
    }
}