/* BASIS DESKTOP */
body{
    font-family: Arial, Helvetica, sans-serif;
    background:white;
}

h1{
    text-align:center;
    margin-top:50px;
    margin-bottom:50px;
}

/* 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;
}

.two-column p{
    width:45%;
    font-size:18px;
    line-height:1.5;
    text-align:left;
}

/* back knop */
.back-button{
    position:fixed;
    top:20px;
    left:20px;
    text-decoration:none;
    color:black;
    font-weight:bold;
    font-size:20px;
    z-index:1000;
}

.back-button:hover{
    opacity:0.7
}

/* klikbare afbeelding effect */
.clickable{
    cursor:pointer;
    transition:transform 0.3s;
}

.clickable:active{
    transform:scale(1.8);
}


@media (max-width: 700px) {

  h1 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
  }

  /* Alles één kolom: tekst boven, foto eronder */
  .two-column {
    display: flex !important;          /* forceer flex */
    flex-direction: column !important; /* belangrijk: verticale kolom */
    align-items: center !important;
    width: 90vw !important;
    margin: 30px auto !important;
    gap: 20px !important;
  }

  .two-column img {
    width: 100% !important;
    max-width: 500px !important; /* voorkomt te grote afbeeldingen */
    height: auto !important;
  }

  .two-column p {
    width: 100% !important;
    text-align: center !important;
    font-size: 16px;
    line-height: 1.5;
  }
}