﻿@import url(style.css);

.content h1 {
    color: #000000;
    margin: 10px 0;
    font-size: 30px;
    text-align: left;
}

.content h2, .content h2 a {
    color: #000000;
    font-size: 20px;
    padding: 10px 0;
    text-decoration: none;
    text-align: left;
    text-transform: none;
    margin: 0;
}

.content h3, .content h3 a {
    color: #000000;
    text-align: left;
}

.content h4 {
    color: #000000;
}

.aboutContainer {
    display: flex;
    width: 95%;
    height: 100vh;
    flex-direction: column;
    overflow-y: scroll;
}
.aboutContainer::-webkit-scrollbar {
    background-color: var(--scrollbar-bg);
    width: 7px;
}

.aboutContainer::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 6px;
    border: 3px;
    width: 5px;
}

    .aboutContainer::-webkit-scrollbar-thumb:hover {
        background-color: var(--scrollbar-thumb-hover);
    }

.aboutInfo {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 25px;
    position: relative;
    width: 97%;
    height: auto;
    background-color: #EFEFEF;
    box-shadow: -1px 1px 5px 3px rgba(0,0,0,0.2);
    border-radius: 5px;
}
.instructorImage img{
    height: auto;
    width: 300px;
    border-radius: 5px;
    padding: 25px;
}

.instructorImage {
    width: 15%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    height: auto;
    text-align: center;
    background-color: #464646;
    align-content: center;
    min-width: 300px;
}
.instructorBio{
    width: 80%;
    text-align: center;
    padding: 25px;
}


.button2 {
    background-color: #000000;
    border: solid;
    border-width: 0px;
    border-color: #FFFFFF;
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    font-family: glocksans-regular;
    color: #FFFFFF;
    display: inline-block;
    font-size: 1.5rem;
    margin: 1rem;
    cursor: pointer;
    z-index: 0;
}

    .button2:hover {
        background-color: #643336;
        color: #ffffff;
        transition: background-color 200ms ease;
    }

.hero {
    /*Sizing*/
    position: relative;
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: height 700ms ease-in-out, opacity 400ms ease-in-out;
}

.hero-content {
    position: relative;
    font-family: glocksans-light, glocksans-bold, glockicons, glocksans-regular, sans-serif;
    text-align: center;
    margin: 0.625rem;
}

.hero-title {
    font-size: 50px !important;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 3rem;
    letter-spacing: 0.25px;
    padding-top: 25px;
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: 1.5rem !important;
    font-weight: 200;
    letter-spacing: 0.40px;
    margin-top: 1rem;
    max-width: 40rem;
    font-size: 1.5rem;
    color: #ffffff !important;
    text-transform: none !important;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire hero section */
    filter: brightness(50%);
}
@media screen and (max-width: 717px){
    .hero.shrink{
        height: 0;
        opacity: 0;
    }
}

@media screen and (max-width: 550px) {
    .aboutContainer {
        flex-direction: column;
        padding: 0;
        overflow-x: clip;
    }

    .aboutForm {
        width: 90%;
    }

    .aboutInfo {
        width: 88%;
        flex-direction: column;
    }
    .instructorBio{
        width: 100%;
    }
    .instructorImage {
        width: 100%;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 0px;
    }
    video {
        width: 80vw;
    }
}
