* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

nav {
    background: linear-gradient(to bottom, #e89876, #d67856);
    padding: 3vh 5vw;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5vw;
    margin-right: 20px;
}

.logo-circle {
    width: 6vw;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-size: 3vw;
    font-weight: bold;
    font-family: "Pixelify Sans", sans-serif;
    color: #2a2a2a;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    gap: 1vw;
    margin-left: auto;
}

.nav-btn {
    background: #c85a3a;
    color: #2a2a2a;
    padding: 2vh 3vw;
    border: none;
    border-radius: 25px;
    font-size: 2vw;
    font-weight: bold;
    font-family: "Pixelify Sans", sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 0 #8b3a1a, 0 6px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-btn:hover {
    background: #d67856;
    box-shadow: 0 6px 0 #8b3a1a, 0 8px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

main {
    display: grid;
    grid-template-columns: 16vw 16vw 68vw;
    grid-template-rows: 15vh repeat(5, 30vh);
    grid-template-areas: "titel titel titel"
    "BertugSprite BertugFoto BertugInformatie"
    "ArnoutSprite ArnoutFoto ArnoutInformatie"
    "StefanSprite StefanFoto StefanInformatie"
    "EtoSprite EtoFoto EtoInformatie"
    "MikeSprite MikeFoto MikeInformatie";
    align-items: center;
    justify-items: center;
}

.titel {
    grid-area: titel;
    /* margin: 10vh 10vw; */
    font-size: 5vh;
}
.personenSprite {
    max-width: 8vw;
    max-height: 15vh;
}
.personenFoto {
    display: flex;
    background-color: #d9d9d9;
    flex-direction: column;
    gap: 0;
    width: 15vw;
    height: 25vh;
    justify-content: end;
    justify-items: end;
    align-items: center;
    align-content: center;
    padding-bottom: 0;
    
}
.persoonFoto {
    max-height: 80%;
    max-width: 100%;
    margin: 0;
    object-fit: contain;
    object-position: bottom;
}
.personenContact {
    background-color: #FE9B65;
    margin: 0;
    padding: 0 1vw;
    max-width: 15vw;
    font-size: 1.27vw;
}
.personenContact a {
    color: black;
    text-decoration: none;
}
.personenContact a:hover {
    color: white;
}
.personenInformatie {
    background-color: #d9d9d9;
    font-size: 2vw;
    width: 80%;
    height: 15vh;
    align-content: center;
    text-align: center;
}

.BertugSprite {
    grid-area: BertugSprite;
}
.BertugFoto {
    grid-area: BertugFoto;
}
.BertugInformatie {
    grid-area: BertugInformatie;
}
.ArnoutSprite {
    grid-area: ArnoutSprite;
}
.ArnoutFoto {
    grid-area: ArnoutFoto;
}
.ArnoutInformatie {
    grid-area: ArnoutInformatie;
}
.StefanSprite {
    grid-area: StefanSprite;
}
.StefanFoto {
    grid-area: StefanFoto;
}
.StefanInformatie {
    grid-area: StefanInformatie;
}
.EtoSprite {
    grid-area: EtoSprite;
}
.EtoFoto {
    grid-area: EtoFoto;
}
.EtoInformatie {
    grid-area: EtoInformatie;
}
.MikeSprite {
    grid-area: MikeSprite;
}
.MikeFoto {
    grid-area: MikeFoto;
}
.MikeInformatie {
    grid-area: MikeInformatie;
}

footer {
    display: flex;
    background-color: #FE9B65;
    margin-top: 60px;
    align-items: center;
    padding: 50px 0;
}

footer p {
    font-size: 25px;
    font-family: "Pixelify Sans", sans-serif;
}

.footerCntr-flexbox {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    margin-left: 40px;
}

.nav-btn a {
    text-decoration: none;
    color: #2a2a2a;
}
@media (max-width: 768px) {
  .nav-links {
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    display:flex;
    margin: 0;
    padding: 0;
  }
  .nav-btn {
    padding: 1vh 2vw;
    font-size: 3vw;
  }

  .logo-circle img {
    width:10vw;
    height: auto;
  }
  .logo-circle
    {
        width: 10vw;
        height: auto;
    }
}

@media (max-width: 768px), (orientation: portrait) {
    main {
        grid-template-columns: 32vw 68vw;
        grid-template-rows: 15vh repeat(5, 30vh);
        grid-template-areas: "titel titel"
        "BertugFoto BertugInformatie"
        "ArnoutFoto ArnoutInformatie"
        "StefanFoto StefanInformatie"
        "EtoFoto EtoInformatie"
        "MikeFoto MikeInformatie";
    }
    .personenInformatie {
        font-size: 5vw;
    }
    .personenSprite {
        display: none;
    }
    .personenFoto {
        width: 31vw;
    }
    .personenContact {
        max-width: 31vw;
        font-size: 2.9vw;
    }
}

/* @media (max-width: 640px) {

} */