*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


:root{
    --mainColor: #CDB4DB;
    --mainYellow: #EDAF3F;

    --font-montserrat: 'Montserrat', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
}

a, button{
    all: unset;
}

body{
    background-color: #CDB4DB;
}


h1,h2,h3,h4,h5,h6{
    font-family: var(--font-poppins);
}

p,a,button,ul,li{
    font-family: var(--font-poppins);
}



h2{
    font-size: 2.5rem;
}
section{
    padding: 100px 40px;
}

header{
    width: 100%;
}


nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;

    gap: 40px;

    width: 95%;
    margin: 0 auto;

    padding: 10px;

}

nav a{
    color: black;
    background-color: var(--mainColor);
    padding: 5px 30px;
    border-radius: 10px;

    cursor: pointer;
    box-shadow: none;
    transition: all 0.2s;
}

nav a:hover{
    box-shadow: 0px 0px 25px 2px rgba(255, 255, 255, 0.25);
}

nav img{
    margin: 0 auto 0 0;
    width: 75px;
}





/* Landing Page */

.above-the-fold{
    padding-bottom: 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0)),
    url(Assets/landing-background.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.landing-page{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    min-height: 450px;
    min-height: 70vh;
    text-align: left;

    margin-bottom: 50px;

    gap: 30px;

    position: relative;

    overflow: hidden;
}

.landing-page h1,
.landing-page p,
.landing-page h3{
    color: white;
    text-shadow: 4px 4px 24px rgba(0,0,0,0.25);
}


h1{
    font-size: 3.5rem;
}

.landing-page p{
    width: 50%;
    font-size: 1.25rem;
}


.landing-more{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    gap: 15px;
}

.landing-more h3{
    font-size: 2.25rem;
}


.landing-page .buttons{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;

    gap: 20px;
}

.landing-page .buttons button{
    padding: 10px 30px;

    border-radius: 10px;

    font-size: 1.2rem;
    cursor: pointer;
}



.landing-page .buttons button:nth-of-type(1){
    background-color: var(--mainYellow);
}.landing-page .buttons button:nth-of-type(2){
    background-color: white;
}




/* About us */

.about-us{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.about-image{
    max-height: 330px;
    object-fit: cover;
    width: 30%;

}

.about-us .left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;

    flex: 1;
}

.about-us .left h2{
    margin-bottom: 30px;
}

.about-us ul{
    list-style: none;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    gap: 10px;
    font-size: 1.25rem;
}











/* Past-Events */


.past-events{
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.events-container{
    padding: 20px;
    padding-top: 75px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 75px 75px;

    flex-wrap: wrap;
}

.events-box{
    min-width: 400px;
    max-width: 750px;
    width: 400px;
    min-height: 350px;
    flex: 1;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    position: relative;

    padding-bottom: 50px;

    box-shadow: 4px 4px 12px rgba(0,0,0,0.25);
}

.events-box img{
    display: block;
    aspect-ratio: 16 / 9;
    max-width: 90%;
    margin: 45px auto;
    
    object-fit: cover;

    border-radius: 15px;

    box-shadow: 0px 0px 75px 2px rgba(182, 149, 238, 0.75);
}

.events-box button{
    position: absolute;
    bottom: 15px;
    right: 25px;
    color: var(--mainColor);
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.2s;
}

.events-box button:hover{
    color: #8A7AE6;
    transform: scale(1.05);
    
}














/* Resources */

.resources{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 75px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.resources-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    text-align: left;

    max-width: 1000px;
    width: 90%;
    margin: 0 auto;

    gap: 30px;

    font-size: 1.1rem;
}

.resources-box{
    background-color: white;

    width: 100%;

    border-radius: 20px;
    overflow: hidden;

    position: relative;
}

.resources-top{
    background-color: #F8F9FA;
    padding: 25px 30px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 2px solid var(--mainColor);

    font-size: 1.25rem;
    position: relative;

    inset: 0;
}
.resources-top h4{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    gap: 20px;
}

.resources-top h4 span{
    margin: 0 0 0 auto;
    transform: rotate(45deg);

    cursor: pointer;

    transition: all 0.2s;
}
.resources-top h4 span.active{
    transform: rotate(0deg);
}


.resources-bottom{
    background-color: white;
    padding: 20px 40px;
    font-size: 1rem;
    transition: all 0.2s;
}

.resources-bottom.active{
    display: none;
}

.resources-bottom.interview li{
    margin-bottom: 20px;
}

.resources-bottom.interview li a{
    color: #7D5BA6;
    transition: all 0.2s;
    cursor: pointer;

    margin-left: 10px;
    text-decoration: underline;
}

.resources-bottom.interview li a:hover{
    color: #5A3C84;
}






/* Officers */

.meet-the-officers{
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.meet-the-officers h2{
    text-align: center;
}

.officers-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
    flex-wrap: wrap;
    width: 90%;
    margin: 75px auto;

    gap: 50px 75px;
}

.officers-container div{
    min-width: 300px;
    width: clamp(200px, 90%, 400px);
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;

    gap: 10px;

    flex: 1;

}
.officers-container h3{
    font-weight: 600;

}

.officers-container div img:nth-of-type(1){
    object-position: 0 -30px;
}

.officers-container img{
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;

    border: 4px solid white;
    border-radius: 10px;

}



/* Contact Us */

.contact-us{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    
}


.contact h6{
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.contact{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
form{
    width: clamp(200px, 90%, 800px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

input::placeholder, textarea::placeholder{
    color: rgba(0,0,0,0.5);
    font-family: var(--font-poppins) !important;

}

.contact .block{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
}

.contact input, textarea{
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background-color: white;
    outline: none;
    border: none;

    padding: 10px;

    font-family: var(--font-poppins) !important;

}

textarea{
    height: 100px;
    margin-bottom: 10px;
}

.contact button{
    background-color: var(--mainYellow);
    min-width: 100%;
    border-radius: 10px;
    font-size: 1rem;
    padding: 10px 0px;

    outline: none;
    border: none;

    cursor: pointer;
    text-align: center;

    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.10);
    transition: all 0.2s;
}

.contact button:hover{
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.25);   
}
















/* Footer */


footer{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;

    gap: 40px;

    background-color: #5A3C84;

    padding: 40px;
    color: white;
}

footer .right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

footer .right a{
    cursor: pointer;
}


footer .right > div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 15px;
}


@media (max-width: 1200px){


    .events-box img{
        aspect-ratio: 1.5 / 1;
        overflow: hidden;
        width: 100%;
    }

    .events-box{
        min-width: 400px;
        max-width: 500px;
    }
}








@media (max-width: 1024px) {
    .landing-page h1{
        font-size: 2.5rem;
    }


    .landing-more{
        align-items: center;
    }

    .landing-page p{

        font-size: 1rem;
        width: 70%;
    } 
    .landing-page h3{
        font-size: 1.5rem;
    }








    .about-us{
        flex-direction: column;
        align-items: center;
    }

    .about-image{
        display: none;
    }


}



@media (max-width: 768px) {
    .landing-page h1, .landing-page p, .landing-page h3{
        text-align: center;
    }
    .landing-page{
        align-items: center;
    }

    .landing-page p{
        font-size: 1.15rem;
    } 
    .landing-page h3{
        font-size: 1.5rem;
    }

    .landing-more .buttons{
        align-items: center;
        flex-direction: column;
        width: 100%;
        padding-top: 10px;
        gap: 10px;
    }

    .landing-more .buttons button,
    .landing-more .buttons a{
        width: 100%;
        text-align: center;
    }

    .above-the-fold{
        
        background: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0.40) 20%),
        url(Assets/landing-background.webp);


        background-position: top right;

    }





    .about-us ul{
        font-size: 1rem;
        margin-left: 15px;
    }



    nav a{
        display: none;
    }

    nav a:nth-of-type(2){
        display: block;
    }

    h2{
        font-size: 1.5rem;
        text-align: center;
    }


    .events-box{
        width: 90%;
    }




    .resources{

        padding: 100px 0px;

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


    


}











@media (max-width: 630px) {
    .landing-page h1{
        font-size: 2.5rem;
    }


    .landing-page p{
        font-size: 1rem;
    } 
    .landing-page h3{
        font-size: 1.2rem;
    }

    .landing-page{
        gap: 20px;
    }


    form{
        width: clamp(200px, 100%, 800px);
    }


    section{
        padding: 50px 20px;
    }




}



@media (max-width: 550px) {
    .landing-page h1{
        font-size: 2rem;
    }


    .landing-page p{
        font-size: 0.8rem;
    } 
    .landing-page h3{
        font-size: 1rem;
    }

    .landing-page{
        gap: 10px;
    }


    .events-box{
        width: 100%;
        min-width: 250px;
        gap: 5px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    p{
        font-size: 0.9rem;
    }
    h3{
        font-size: 1rem;
    }



    .officers-container{
        width: 100%;
    }

    .officers-container div{

        min-width: 200px;
        width: 100%;
    }


    footer{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    footer .right{
        align-items: center;
    }
    footer .right > div{
    
        gap: 35px;
    }
}