* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto Mono', sans-serif;
}

:root{
    --white: #FFFF;
    --gray: #504d41;
    --dark-blue: #3486dd;
    --blue: #3486dd;
    --light-blue: #3486dd;
    --yellow: #ffb300;
}

body{
    font-size: 100%;
    background-color: #000000;
}

a{
    text-decoration: none;
    color: inherit;
}

/*HEADER*/
header{
    padding: 100px 4%;
}

header > .interface{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img{
    max-height: 100px;
    position: relative;
    max-width: 100%;
    height: auto;
}

header a{
    color: rgb(130, 130, 130);
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

header a:hover{
    color: white;
    transform: scale(1.05);
}

header nav ul{
    list-style-type: none;
}

header nav ul li{
    display: inline-block;
    padding: 0 40px;
}

.bottom-header nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
}

.bottom-header nav ul li a{
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    font-size: 20px;
    display: block;
    transition: .2s;
}

.bottom-header nav ul li a:hover{
    background-color: rgb(0, 0, 0);
    color: #3486dd;
    box-shadow: inset 0 0 8px black;
}

header .contact button:hover{
    box-shadow: 0px 0px 8px #3486dd;
    transform: scale(1.05);
}

.drophover{
    position: relative;
}

.drophover .drop{
    position: absolute;
    background-color: #000000;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
}

.drophover .drop a{
    padding: 20px;
}

.drophover:hover .drop{
    height: 250px;
}

.people-section{
    height: calc(100vh - 13vh);
    display: flex;
    align-items: center;
    padding-left: 20rem;
}

.image-container{
    width: 40rem;
    height: 30rem;
    position: relative;
    overflow: hidden;
}

.image-container img{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

button{
    background: #3486dd;
    border: none;
    color: var(--white);
    padding: .8rem 2rem;
    border-radius: 5rem;
    font-size: 1.6rem;
}

.content{
    max-width: 550px;
    padding-right: 20px;
}

.content h1{
    font-size: 4rem;
    color: #3486dd;
}

.content h2{
    font-weight: 300;
    font-size: 1.2rem;
    color: rgb(204, 175, 175);
    padding-top: 20px;
}

.content p{
    color: var(--gray);
    font-weight: 200;
    font-size: 1.2rem;
    color: white;
    padding-top: 20px;
    margin: 1rem 0 2rem 0;
    text-wrap: balance;
}

footer{
    position: absolute;
    border-top: 0.5px solid #FFF;
    background-color: #3486dd;
    height: auto;
    padding-top: 10px;
    width: 100vw;
    color: #FFF;
}

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

.footer-content h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-content img{
    max-height: 100px;
    position: relative;
    max-width: 100%;
    height: auto;
}

.footer-bottom{
    background: #3486dd;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}

/* RESPONSIVE MEDIA QUERIES */

/* Large tablets and small desktops */
@media screen and (max-width: 1200px) {
    .people-section{
        padding-left: 5rem;
    }
    
    .content h1{
        font-size: 3.5rem;
    }
    
    .image-container{
        max-width: 35rem;
    }
}

/* Tablets */
@media screen and (max-width: 1024px) {
    header{
        padding: 60px 4%;
    }
    
    header > .interface{
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .bottom-header nav ul li{
        padding: 0 20px;
    }
    
    .bottom-header nav ul li a{
        padding: 15px 20px;
        font-size: 18px;
    }
    
    .people-section{
        flex-direction: column;
        text-align: center;
        padding: 2rem 4%;
        min-height: auto;
        gap: 2rem;
    }

    .content{
        order: 2;
        max-width: 100%;
    }
    
    .image-container{
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .content h1{
        font-size: 3rem;
    }
    
    .content h2{
        font-size: 26px;
    }
    
    .content p{
        font-size: 1.1rem;
    }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
    header{
        padding: 40px 4%;
    }
    
    header img{
        max-height: 80px;
    }
    
    .bottom-header nav ul{
        flex-direction: column;
        gap: 10px;
    }
    
    .bottom-header nav ul li{
        padding: 0;
        width: 100%;
    }
    
    .bottom-header nav ul li a{
        padding: 15px;
        text-align: center;
    }
    
    .contact button{
        padding: 12px 30px;
        font-size: 1.4rem;
    }
    
    .people-section{
        padding: 1rem 4%;
        gap: 2rem;
    }
    
    .content h1{
        font-size: 2.5rem;
    }
    
    .content h2{
        font-size: 22px;
    }
    
    .content p{
        font-size: 1rem;
        margin: 1rem 0 1.5rem 0;
    }
    
    .content p br{
        display: none; /* Remove line breaks on mobile */
    }
    
    .content button{
        padding: 12px 24px;
        font-size: 1.4rem;
    }
    
    .image-container{
        max-width: 100%;
    }
    
    .image-container::before{
        filter: blur(80px);
    }
    
    .drophover:hover .drop{
        height: auto;
        position: static;
        background-color: rgba(0, 0, 0, 0.9);
    }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    header{
        padding: 30px 2%;
    }
    
    .people-section{
        padding: 1rem 2%;
    }
    
    .content h1{
        font-size: 2rem;
    }
    
    .content h2{
        font-size: 18px;
    }
    
    .content p{
        font-size: 0.95rem;
    }
    
    .content button{
        padding: 10px 20px;
        font-size: 1.2rem;
    }
    
    .contact button{
        padding: 10px 20px;
        font-size: 1.2rem;
    }
    
    .image-container::before{
        filter: blur(60px);
    }
}

/* Very small devices */
@media screen and (max-width: 360px) {
    .content h1{
        font-size: 1.8rem;
    }
    
    .content h2{
        font-size: 16px;
    }
    
    .content p{
        font-size: 0.9rem;
    }
    
    .content button{
        padding: 8px 16px;
        font-size: 1.1rem;
    }
}