/* ******************** HEADINGS AND TEXT STYLES ******************** */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;700&display=swap');


/* bebas-neue-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/bebas-neue-v10-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* ******************** GENERAL ******************** */
html, body{
    height: auto;
}
html{
    scroll-behavior: smooth;
}
body{
    display: flex;
    flex-direction: column;

    background-color: #09090d;

    margin: 0;

    overflow-x: hidden;
}

/* hinder vue syntax from showing until its ready */
[v-cloak] {
    display: none;
}

.home_section h3, #contacts_container h3, #contactLocation_container h3, #contactsEmails_container h3{
    font-size: 1.5rem;
    color: #ffff;
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.5rem;
    padding-bottom: 1rem;
}

.hero_container h1{
    color: #FFFFFF;
    font-weight: 800;
}
.standardColor{
    color: #FFFFFF;
}

.gradient_btnContainer{
    display: inline-block;
    background: linear-gradient(180deg, #7E05B8, #3726E7, #30C8F8);
    border-radius: 100px;
    padding: 0.1rem;
}
.gradient_btn{
    background: #09090d;
    color: white;
    font-size: 0.9rem;
    border-radius: 100px;
    border: 0;
    padding: 0.5rem 0rem 0.5rem 0rem;
}
.gradient_btn a{
    color: #ffff; 
    text-decoration: none; 
    border-radius: 100px;
    font-weight: 800;
    padding: 0.5rem 1rem 0.5rem 1rem;
}

/* || FOR SCREEN READER */
.sr-only {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

.flex_container{
    display: flex;
    gap: var(--gap, 1rem);
}
.flex_center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex{
    display: flex;
}

.gradient_overlay_top{
    z-index: 999;
    width: 100%;

    background: #09090d;
    background: linear-gradient(180deg, #09090d 50%, rgba(255,255,255,0) 100%); 
}
.gradient_overlay_bottom{
    z-index: 9999;
    width: 100%;
    
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #09090d 100%);
}

.fullscreen{
    height: 100vh;
}
.darken_overlay{
    background-color: rgba(0, 0, 0, 0.40);
}
.hero_toContent_link{
    position: absolute; 
    bottom: 0; 
    padding-bottom: 10rem;
}


.center_text{
    text-align: center;
}

.hero_info h1{
    margin: 0 0 0 0;
}

h1, #team_heroTxt span{
    font-size: 5rem;
    padding: 0 0 0 0;
    margin: 0;

    letter-spacing: 1px;
}

h1, h2, h3{
    font-family: "Bebas Neue", sans-serif;
}

.white_text{
    color: #FFFFFF;

    font-family: 'Open Sans', sans-serif;
}
.logo_color{
    color: #009DDF;
}

.center_align{
    display: grid;
    place-items: center;
}

.underline{
    text-decoration: underline;
}

h2{
    font-size: 1.8rem;
    margin: 0;

    z-index: 99;
    position: relative;
}
h3{
    font-size: 1.2rem;
}

p{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;

    margin: 0;
}

#about_hero h1{    
    position: absolute; 
    top: 45%;
    text-align: center;
    width: 100%;
}
.join_heroContainer h1{
    position: absolute;
    bottom: 35%;
    text-align: center;


    padding: 0 1rem 1rem 1rem;
    text-align: center;
    opacity: 0.9;

    z-index: 999;
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    font-weight: 700;
}
.triangle_cointainer h1{
    z-index: 999;
    font-size: 4rem;
    padding-bottom: 1rem;
}
#join_studentSection .triangle_cointainer h1{
  text-align: center;
}


/* ******************** HEADER ******************** */
.main_header{
    width: 100%;
    background-color: #09090d;
    height: 4rem;
    position: fixed;
    z-index: 9999;
}


/* ******************** NAVBAR ******************** */
.logo{
    width: 8rem;
    margin: 1rem 1rem 0rem 2rem;
}

.main_nav{
    list-style: none;
    padding: 0 0rem 0 0;
    margin: 0;

    z-index: 1000;
    font-family: 'Open Sans', sans-serif;
}
.main_nav a{
    text-decoration: none;
    font-size: 1rem;
    padding-top: 0rem;
}
.main_nav li a{
    color: #ffffff;
    transition: color 0.4s; 
    font-weight: 800;
}
.main_nav li a:hover {
    color: #009DDF; 
}
.main_nav li hr{
    border-color: #009DDF;
    margin-top: 0.4rem;
}

#main_nav ul li{
    padding-left: 1.5rem;
}

.nav_toggle_btn{
    display: none;
}





/* ******************** FOOTER ******************** */
.footer{
    flex-shrink: 0;

    background-color: #13141E;
    width: 100%;

    margin-top: 3rem;
}
footer li{
    list-style: none;
}
footer a{
    color: #FFFFFF;
    text-decoration: none;
}
footer svg{
    width: 15px; 
    height: 15px;

    fill: #ffffff;
}
footer h3{
    margin: 4rem 0 0 0;
}

footer h3, footer hr{
    opacity: 0.9;
}
footer svg, footer p, footer a{
    opacity: 0.7;
}

.footer_content_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    padding: 0 2rem 0 2rem;
}
.footer_items_container hr{
    width: 2.5rem;
    margin: 0.5rem 0 1.5rem 0;
}
.footer_items_container ul{
    padding: 0;
}
.footer_items_container li{
    margin: 0 0 0.5rem 0;
}

div.svg_container{
    padding-right: 1rem;
}
div#mail{
    padding-bottom: 1rem;
}
#mail .svg_container div{
    height: 1rem;
    position: relative;
}
#mail .svg_container svg{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#mail svg{
    height: 1.2rem;
    width: 1.2rem;
}

#address .svg_container div{
    height: 1rem;
    position: relative;
}
#address .svg_container svg{
    position: relative;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -0%);
}
#address svg{
    height: 1.2rem;
    width: 1.2rem;
}

#entrance_container{
    margin-top: 1rem;
    height: 5rem;
}
.entrance_item{
    padding-right: 1rem;
    width: 4rem;
}
#entrance{
    padding-bottom: 0.5rem;
}

#socials svg{
    height: 2rem;
    width: 2rem;
}
#socials li{
    margin: 0 0.5rem 0 0.5rem;
}
#socials ul{
    margin-bottom: 2rem;
}

#contactSec{
    width: 100%;
}
#browseSec{
    width: 40%;
}
#actionSec{
    width: 55%;
}
#browseSec li, #actionSec li{
    display: flex;
}

#browseSec .svg_container, #actionSec .svg_container{
    padding: 0 0.5rem 0 0;
}
#browseSec .svg_container div, #actionSec .svg_container div{
    position: relative;
}
#browseSec .svg_container svg, #actionSec .svg_container svg{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer .extras_conteiner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
}
footer .extras_conteiner p{
    margin: 0 0 0.5rem 0;
}

.headerContent_container{
    width: 100%; 
    height: 100%; 
    max-width: 1600px;  
    display: flex;
    justify-content: space-between;
    margin: auto;
}



/* ******************** BUTTONS ******************** */
.main_btn_style{
    background-color:#09090d;
    color: #FFFFFF;

    font-size: 100%;
    padding: 0.8rem 2rem 0.8rem 2rem;

    border: 1px solid #FFFFFF;
    border-radius: 10rem;
}



/* ******************** MEDIA ******************** */
/*  PHONE MEDIA & Tablet  */
@media (max-width: 1023px){
    /*  BUTTONS  */
    .main_btn_style{
        width: 80%;
    }
    .main_nav li{
        width: 12rem;
        margin: auto;
    }
    #navbarBtn_container{
        width: 8rem;
        background: linear-gradient(180deg, #7E05B8, #3726E7, #30C8F8);
        border-radius: 5px;
        padding: 0.1rem;
        margin: auto;
    }
    #navbar_btn{
        width: 100%;
        display: block;
        background-color: rgba(19, 20, 30, 0.95);;
        text-align: center; 
        border-radius: 5px;
        padding: 0.8rem 0 0.8rem 0;
        font-family: "Bebas Neue", sans-serif;
        font-size: 1.5rem;
    }
}
/*  PHONE MEDIA  */
@media (max-width: 767px){
    /*  CONTENT CONTAINERS  */
    .content_container section{
        padding: 2rem 2rem 0 2rem;
    }

    .hero_info{
        width: 100%;
        height: 100vh;

        margin: 0 auto;
        flex-direction: column;
        justify-content: space-between;
    }
    #hero_section{
        margin-bottom: 50%;
    }

    .hero_text{
        margin: 0.4rem;
        padding: 0 2.5rem 1rem 2.5rem;
    }

    .hero_container{
        height: 50%;
    }

    #hero_member{
        padding: 15% 0 0 0;
        margin: 15% 0 0 0;
    }

    .nav_toggle_btn{
        margin: 0 0 0 80%;
    }
}

/* Mobile & Tablets*/
@media only screen and (max-width: 991px){
    /*  NAVBAR  */
    .main_nav{
        width: 100%;
        padding-left: 0;
    }
    .main_nav li hr{
        max-width: 50%;
        margin-bottom: 0;
    }

    #main_nav ul{
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        padding: 8rem 0rem 0 0rem;

        overflow-y: hidden;
        transition: right 0.5s ease-in-out;
    }

    #main_nav ul[data-visible="false"]{
        background-color: rgba(19, 20, 30, 0.8);  /* REMINDER: hsl(hue, saturation, lightness, alpha=transparency) */
        backdrop-filter: blur(1rem);
        -webkit-backdrop-filter: blur(1rem);
        right: -100%;
        overflow: auto;
    }
    #main_nav ul[data-visible="true"]{
        background-color: rgba(19, 20, 30, 0.8);  /* REMINDER: hsl(hue, saturation, lightness, alpha=transparency) */
        color: #13141E;
        backdrop-filter: blur(1rem);
        -webkit-backdrop-filter: blur(1rem);
        right: 0;
        overflow: hidden;
    }


    #main_nav ul li{
        text-align: center;
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-right: 0;
    }
    img.logo{
        margin-left: 1rem;
    }

    body.unscrollable {
        width: 100vw; 
        height: 100vh; 
        overflow: hidden;
    }

    .nav_toggle_btn{
        display: block;
        z-index: 9999;
    }

    #main_nav button{
        background-color: transparent;
        position: relative;
        top: 1rem;
        right: 3rem;
        border: none;
    }

    .nav_toggle_btn svg {
        width: 40px;
    }

    #top-line, #bottom-line, #middle-line {
        transform-box: fill-box;
        transform-origin: center;
    }

    
    /* Opening animations */
    @keyframes up-rotate {
        0% {
            animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
            transform: translateY(0px);
        }
        30% {
            transform-origin: center;
            animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
            transform: translateY(-10px);
        }
        100% {
            transform-origin: center;
            transform: translateY(-10px) rotate(45deg) scale(0.9);
        }
    }

    @keyframes down-rotate {
        0% {
            animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
            transform: translateY(0px);
        }
        30% {
            transform-origin: center;
            animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
            transform: translateY(10px);
        }
        100% {
            transform-origin: center;
            transform: translateY(10px) rotate(-45deg) scale(0.9);
        }
    }

    @keyframes hide {
        29% {
            opacity: 1;
        }
        30% {
            opacity: 0;
        }
        100% {
            opacity: 0;
        }
    }

    /* Closing animations */
    @keyframes up-rotate-reverse {
        0% {
            transform-origin: center;
            transform: translateY(10px) rotate(45deg) scale(0.9);
        }
        30% {
            transform-origin: center;
            animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
            transform: translateY(10px);
        }
        100% {
            animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
            transform: translateY(0px) rotate(0deg) scale(1); /* Change to rotate(0deg) and scale(1) */
        }
    }

    @keyframes down-rotate-reverse {
        0% {
            transform-origin: center;
            transform: translateY(-10px) rotate(-45deg) scale(0.9);
        }
        30% {
            transform-origin: center;
            animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
            transform: translateY(-10px);
        }
        100% {
            animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
            transform: translateY(0px) rotate(0deg) scale(1); /* Change to rotate(0deg) and scale(1) */
        }
    }

    @keyframes show-reverse {
        0% {
            opacity: 0;
        }
        29% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
}


/* Tablets (768px to 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* FONTS & HEADINGS */
    h1, #team_heroTxt span, #homeHero_headings h1 span, #team_hero h1 span{
        font-size: 6rem;
    }
    h2{
        font-size: 2rem;
    }

    .about_hero h1{
        font-size: 6rem;
    }
    #partner_heroTxt h3{
        font-size: 1.4rem;
    }

    #join_main p, span.logo_color{
        font-size: 1rem;
    }


    /* FOOTER */
    #browseSec{
        width: 20%;
    }
    #actionSec{
        width: 30%;
    }
    #contactSec{
        width: 35%;
    }
    #socialsSec{
        width: 30%;
        position: absolute;
        bottom: -12%;
    }
    .footer_content_container{
        padding-left: 4rem;
        margin-bottom: 5rem;
        position: relative;
    }

    .nav_toggle_btn{
        margin: 0 0 0 85%;
    }
}


/* Desktops */
@media only screen and (min-width: 992px) {
    .hero_container, .darken_overlay{
        max-height: none;
    }
    .hero_toContent_link{
        padding-bottom: 4rem;
    }

    /* FONTS & HEADINGS */
    h1, #team_heroTxt span{
        font-size: 7rem;
    }
    h2{
        font-size: 3rem;
    }

    #partner_heroTxt h3{
        font-size: 2rem;
        line-height: 2.5rem;
    }
    
    .content_container p{
        font-size: 1rem;
    }

    /* FOOTER */
    #browseSec{
        width: 20%;
    }
    #actionSec{
        width: 25%;
    }
    #contactSec{
        width: 30%;
    }
    #socialsSec{
        width: 20%;
    }
    .footer_content_container{
        min-width: 950px;
        max-width: 1200px;
        margin: 0 0 4rem 0;
        padding: 0 0 0 3rem;
    }
    #footer, #team_footer{
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    #main_nav{
        width: auto;
        margin-right: 1rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .main_nav{
        display: flex;
        justify-content: space-between;
    }
    .main_nav li a{
        padding-top: 0.4rem;   
        display: block;     
    }
    .main_nav li:hover{
        color: #009DDF;
    }
    #navbarBtn_container{
        width: 6rem;
        background: linear-gradient(180deg, #7E05B8, #3726E7, #30C8F8);
        border-radius: 5px;
        padding: 0.1rem;
    }
    #navbar_btn{
        width: 100%;
        display: block;
        background-color: #09090d;
        text-align: center; 
        border-radius: 5px;
        padding: 0.25rem 0 0.25rem 0;
        font-family: "Bebas Neue", sans-serif;
        font-size: 1.25rem;
    }
}

main{
    margin: 0 auto;
    max-width: 1500px;

    flex: 1 0 auto;
    width: 100%;
    max-width: none;
    padding-bottom: 4rem;
}

a{
    cursor: pointer;
}

body .gradient_overlay_top{
    position: absolute;
    top: 0;
    height: 15%;
}
