.page__header {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../Assets/Audi\ Wit7.jpg');
    background-position: center;
    background-size: cover;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--color-white);
    padding: 0 1rem;
    margin-bottom: 5rem;
}

.page__header-content {
    max-width: 800px;
}

.page__header-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.page__header-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.values {
    margin-top: 8rem;
    background: var(--color-light);
    padding: 7rem 0;
}

.values__container {
    text-align: center;
}

.section__header {
    margin-bottom: 4rem;
}

.section__header h4 {
    color: var(--color-primary-variant);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.section__header h1 {
    font-size: 2.5rem;
    color: var(--color-gray-500);
}

.values__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.value {
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border-radius: 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.value:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.value__icon {
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 0, 0, 0.5);
    color: var(--color-primary);
    border-radius: 1rem;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.value:hover .value__icon {
    transform: scale(1.1);
    background: rgba(212, 178, 6, 0.3);
}

.value h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gray-700);
    font-weight: 600;
}

.value p {
    color: var(--color-gray-500);
    line-height: 1.7;
}


.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem; 
    padding: 3rem 0;
    margin-bottom: 5rem;
}

.about__image {
    height: 30rem;
    border-radius: 10rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 0 var(--color-gray-100);
    transition: var(--transition);
}

.about__image:hover {
    box-shadow: none;
}

.about__story h2 span{
    color: var(--color-primary-variant);
}

.about__story p {
    margin-top: 1rem;
}

.instructors {
    background: var(--color-gray-0);
    padding: 8rem 0;
}

.instructors h2, .instructors p{
    text-align: center;
}

.instructors__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 4rem;
}

/*.instructor__list { 
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
    gap: 5rem;
}*/

.instructor {
    background:var(--color-gray-0);
    border-radius: var(--radius-6);
    overflow: hidden;
    text-align: center;
    box-shadow: 0 1rem 0 var(--color-gray-100);
    transition: var(--transition);
}

.instructor:hover {
    box-shadow: 0 -1rem 0 var(--color-gray-100);
}

.instructor__image {
    height: 17rem;
    overflow: hidden;
    border-radius: 3rem;
}

.instructor h4 {
    margin: 1.5rem 0 0.6rem;
}

.instructor p {
    padding-bottom: 2rem;
}

/* ==================== ABOUT PAGE RESPONSIVE ==================== */

/* Tablet schermen */
@media screen and (max-width: 1024px) {
    .page__header-content h2 {
        font-size: 2.5rem;
    }

    .page__header-content p {
        font-size: 1rem;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 2rem;
    }

    .about__image {
        height: 24rem;
        border-radius: 5rem;
    }

    .values {
        padding: 5rem 2rem;
    }

    .instructors__list {
        flex-direction: column;
        gap: 3rem;
    }

    .instructor__image {
        height: 14rem;
    }
}

/* Smartphones */
@media screen and (max-width: 768px) {
    .page__header {
        height: 40vh;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .page__header-content h2 {
        font-size: 2rem;
    }

    .page__header-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section__header h1 {
        font-size: 2rem;
    }

    .value {
        padding: 2rem 1.5rem;
    }

    .about__container {
        padding: 2rem 1rem;
    }

    .about__image {
        height: 20rem;
        border-radius: var(--radius-5);
    }

    .instructor__image {
        height: 12rem;
    }

    .instructors {
        padding: 6rem 1rem;
    }

    .values__wrapper {
        gap: 2rem;
    }
}

/* Extra small (mobiele) schermen */
@media screen and (max-width: 480px) {
    .page__header-content h2 {
        font-size: 1.6rem;
    }

    .page__header-content p {
        font-size: 0.9rem;
    }

    .value h3 {
        font-size: 1.1rem;
    }

    .value p {
        font-size: 0.9rem;
    }

    .about__story h2 {
        font-size: 1.6rem;
    }

    .about__story p {
        font-size: 0.95rem;
    }

    .instructor h4 {
        font-size: 1rem;
    }

    .instructor p {
        font-size: 0.9rem;
    }
}



/* Verberg close-knop standaard */
.nav__menu-close {
    display: none;
}

/* Mobile menu basisinstellingen */
.nav__menu {
    position: fixed;
    top: 4rem;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: var(--color-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
    box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
}

.nav__menu.show {
    transform: translateX(0%);
}

@media screen and (max-width: 768px) {
    .nav__menu {
        display: flex;
        top: 7.35rem;
    }

    .nav__menu-open,
    .nav__menu-close {
        display: block;
        font-size: 2rem;
        background: none;
        color: var(--color-gray-900);
        cursor: pointer;
        z-index: 101;
    }
}
