/*
░░██╗░░░░██╗██╗░░        ██████╗░███████╗░██████╗░█████╗░░█████╗░░██╗░░░░░░░██╗███████╗██████╗░
░██╔╝░░░██╔╝╚██╗░        ██╔══██╗██╔════╝██╔════╝██╔══██╗██╔══██╗░██║░░██╗░░██║██╔════╝██╔══██╗
██╔╝░░░██╔╝░░╚██╗        ██║░░██║█████╗░░╚█████╗░██║░░╚═╝███████║░╚██╗████╗██╔╝█████╗░░██████╦╝
╚██╗░░██╔╝░░░██╔╝        ██║░░██║██╔══╝░░░╚═══██╗██║░░██╗██╔══██║░░████╔═████║░██╔══╝░░██╔══██╗
░╚██╗██╔╝░░░██╔╝░        ██████╔╝███████╗██████╔╝╚█████╔╝██║░░██║░░╚██╔╝░╚██╔╝░███████╗██████╦╝
░░╚═╝╚═╝░░░░╚═╝░░        ╚═════╝░╚══════╝╚═════╝░░╚════╝░╚═╝░░╚═╝░░░╚═╝░░░╚═╝░░╚══════╝╚═════╝░
*/
html {
    scroll-behavior: smooth;
}

.progress-container {
    position: sticky;
    top: var(--nav-height);
    z-index: 1;
    width: 100%;
    height: 8px;
    background: var(--background-color);
}

.progress-bar {
    height: 8px;
    background: white;
    width: 0;
}

body {
    overflow-x: hidden;
}


.intro {
    width: 100%;
    min-height: 36vh;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 0.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    font-family: monospace;
    background: linear-gradient(var(--background-color), #7e7e7e);
    color: white;
}

.intro h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0.4rem;
}

.intro > .about-section-selector {
    position: fixed;
    top: 10vh;
    left: 70vw;
    background: unset;
}

.intro > .about-section-selector ul {
    transition: 300ms ease;
}

.intro > .about-section-selector ul li,
.intro > .about-section-selector ul li button {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 2em;
    text-decoration: underline white;
    color: white;
    background: unset;
    border: unset;
    transition: 300ms ease;
}

.intro > .about-section-selector ul li:hover,
.intro > .about-section-selector ul li button:hover,
.intro > .about-section-selector ul li:hover button{
    transform: unset;
    color: red;
    text-decoration: underline red;
}

.intro > .about-scroll-btn {
    position: fixed;
    top: 60vh;
    left: 50%;
    font-size: 3rem;
    background: unset;
    transition: 300ms ease;
}

.intro > .about-scroll-btn > span {
    transform: translateX(-50%);
}

.intro > .about-scroll-btn:hover {
    transform: unset;
}

.intro > .about-scroll-btn > span:hover {
    transform: translateX(-50%);
}

.intro > .div-1 {
    position: sticky;
    margin-top: 10vh;
    margin-bottom: 60vh;
    margin-left: 15vw;
    top: calc(8vh + var(--nav-height));
    height: 70vh;
}

.intro > .div-2 {
    position: sticky;
    margin-top: 8vh;
    margin-bottom: 60vh;
    margin-left: 18vw;
    top: calc(16vh + var(--nav-height));
    height: 60vh;
}

.intro > .div-3 {
    position: sticky;
    margin-top: 8vh;
    margin-bottom: 60vh;
    margin-left: 21vw;
    top: calc(24vh + var(--nav-height));
    height: 52vh;
}

.intro > .div-4 {
    align-self: center;
    margin-bottom: 30vh;
}

.the-start {
    background: linear-gradient(#7e7e7e, var(--background-color));
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas:
    "div-1 img"
    "div-2 img"
    "div-3 img"
    "div-4 img";
}

.expanding {
    background: linear-gradient(var(--background-color), #7e7e7e);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas:
    "img div-1"
    "img div-2"
    "img div-3"
    "img div-4";
}

.grant {
    background: linear-gradient(#7e7e7e, var(--background-color));
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas:
    "div-1 img"
    "div-2 img"
    "div-3 img";
}

.the-start > div,
.expanding > div,
.grant > div {
    height: calc(100vh - var(--nav-height));
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 20%;
    font-size: 1.2rem;
}

.the-start > .div-1,
.expanding > .div-1,
.grant > .div-1{
    grid-area: div-1;
}

.the-start > .div-2,
.expanding > .div-2,
.grant > .div-2 {
    grid-area: div-2;
}

.the-start > .div-3,
.expanding > .div-3,
.grant > .div-3{
    grid-area: div-3;
}

.the-start > .div-4,
.expanding > .div-4 {
    grid-area: div-4;
}

.the-start > .img,
.expanding > .img,
.grant > .img{
    grid-area: img;
    height: calc(100vh - var(--nav-height));
    position: sticky;
    top: var(--nav-height);
    margin: unset;
    background-size: cover;
    background-position: center;
}

.the-start > .img {
    background-image: url("../img/comp2.jpg");
}

.expanding > .img {
    background-image: url("../img/charlie-comp.jpg");
}

.grant > .img {
    background-image: url("../img/traning1.webp");
}

.coaches {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 15vh auto;
    flex-direction: column;
}

.coaches > h1 {
    font-size: 3rem;
    padding-bottom: 2vw;
    text-align: center;
}

.coaches-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
    grid-gap: 3vw;
    justify-content: center;
    padding: initial;
    width: 66vw;
}

.coaches-cards h3 {
    margin: 10px 0;
    font-family: monospace;
}

.coaches-cards h6 {
    margin: 5px 0;
    text-transform: uppercase;
}

.coaches-cards p {
    font-size: 14px;
    line-height: 21px;
}

.coaches-cards .card-container {
    background-color: #2c2c2c;
    border-radius: 5px;
    box-shadow: 0 0 8px 2px rgba(107, 107, 107, 0.18);
    color: #B3B8CD;
    padding-top: 30px;
    position: relative;
    width: 20vw;
    min-width: 300px;
    text-align: center;
    height: min-content;
    opacity: 0;
    transition: 1000ms ease;
}

.coaches-cards .card-container.fadeIn {
    opacity: 1;
}

.coaches-cards .card-container .pro {
    color: #231E39;
    background-color: #FEBB0B;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 7px;
    position: absolute;
    top: 30px;
    left: 30px;
}

.coaches-cards .card-container .round {
    border: 1px solid red;
    border-radius: 50%;
    padding: 7px;
    max-width: 200px;
}

.coaches-cards .skills {
    background-color: #2c2c2c;
    text-align: left;
    padding: 15px;
    margin-top: 30px;
    font-family: monospace;
    font-size: 1.5rem;
}

.coaches-cards .skills ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.coaches-cards .skills ul li {
    border: 1px solid #2D2747;
    border-radius: 2px;
    display: inline-block;
    font-size: 12px;
    margin: 0 7px 7px 0;
    padding: 7px;
}

.coaches-cards .skills p {
    color: #B3B8CD;
}

.philosophy {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.philosophy > h1 {
    font-size: 3rem;
    padding-bottom: 2vw;
    margin: auto 20px;
    text-align: center;
}

.philosophy-container {
    display: flex;
    flex-direction: row;
    margin: 0 100px;
    width: calc(100% - 200px);
}

.philosophy-col {
    width: 33%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    margin: 50px;
    font-size: 1.2rem;
}

.philosophy-col.text p,
.philosophy-col.dharma-values div h3 {
    font-weight: 800;
}

.philosophy-col.dharma-values {
    align-items: stretch;
}

.philosophy-col.dharma-values div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    margin: 25px;
    font-size: 1rem;
    opacity: 0;
    transition: 1000ms ease;
    background: rgba(44, 44, 44, 0.5);
    border-radius: 10px;
    border: 2px solid white;
    box-shadow: 0 0 8px 2px rgba(107, 107, 107, 0.18);
}

.philosophy-col.dharma-values div.fadeIn {
    opacity: 1;
}

.philosophy .img {
    position: sticky;
    top: 45vh;
    grid-area: img;
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy .img > img {
    width: 180px;
    transition: 300ms ease-in-out;
}

.philosophy .img > img:hover {
    transform: scale(150%);
}

.outro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-top: 10vh;
    margin-bottom: 200px;
}

.outro h1 {
    text-align: center;
}

@media only screen and (max-width: 1550px){
    .intro h1 {
        font-size: 2.5rem;
    }

    .coaches-cards {
        width: 80vw;
    }

}

@media only screen and (max-width: 1450px){
    .intro > .about-section-selector {
        top: 25vh;
        left: 50%;
    }

    .intro > .about-section-selector ul {
        transform: translateX(-50%);
        list-style-type: none;
        padding: 0;
    }

    .philosophy-container {
        flex-wrap: wrap;
    }

    .philosophy-col.text {
        width: 100%;
        order: 2;
    }

    .philosophy-col.logo-col {
        width: 100%;
        order: 1;
    }

    .philosophy-col.dharma-values {
        width: 100%;
        order: 3
    }
}

@media only screen and (max-width: 1050px) {

    .intro {
        font-size: 1rem;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .intro h1 {
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: 0.4rem;
    }

    .intro > .about-section-selector {
        text-align: start;
    }

    .intro > .about-section-selector ul li,
    .intro > .about-section-selector ul li a {
        line-height: 1.5em;
    }

    .intro > .about-section-selector ul li, .intro > .about-section-selector ul li button {
        font-size: 1rem
    }

    .intro > .div-1 {
        margin-left: unset;
        padding: 0 10vw;
    }

    .intro > .div-2 {
        margin-left: unset;
        padding: 0 10vw;
    }

    .intro > .div-3 {
        margin-left: unset;
        padding: 0 10vw;
    }

    .intro > .div-4 {
        padding: 0 10vw;
    }

    .the-start,
    .expanding {
        grid-template-columns: 1fr;
        grid-template-rows: 0.25fr 1fr 1fr 1fr 1fr;
        grid-template-areas:
    "img"
    "div-1"
    "div-2"
    "div-3"
    "div-4";
    }

    .grant {
        grid-template-columns: 1fr;
        grid-template-rows: 0.25fr 1fr 1fr 1fr;
        grid-template-areas:
    "img"
    "div-1"
    "div-2"
    "div-3";
    }

    .the-start > .img,
    .expanding > .img,
    .grant > .img {
        height: 25vh;
    }

    .the-start > div,
    .expanding > div,
    .grant > div {
        margin: auto 5%;
    }

    .coaches-cards {
        width: 100vw;
    }

    .philosophy-container {
        width: 100%;
    }
}