/* Colors:
        red: #C32329
        white: #FFFFFF
        dark: #2E2E2D
*/ 



:root {
    --red: #C32329;
    --white: #ffffff;
    --dark: #2E2E2D;
}


html {
    scroll-behavior: smooth;
}



body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white);
    width: 99.5vw;
    margin: 0;
    /*background-color: var(--dark);*/
    overflow-x: hidden;
    background-image: url("bg2.jpg");
    background-size: cover;
    background-repeat: repeat-y;

}


body::-webkit-scrollbar {
    background-color: var(--white);
    width: 0.45vw;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--red);
    border-radius: 2rem;
}


header {
    background-color: var(--white);
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

@media (min-width: 1280px) {
    #mobile_header svg {
        display: none;
    }

    #mobile_navbar li {
        margin: 1rem;
    }

}




#mobile_header a img {
    width: clamp(200px, 15vw, 400px);
    height: auto;
}

#mobile_header a {
    margin: 1rem;
}

#mobile_navbar {
    width: 74.5vw;
    height: auto;
}

header nav ul {
    display: flex;
    justify-content: right;
    align-items: center;
    list-style: none;
}

header nav ul li {
    display: inline-block;
}


header nav ul li a {
    color: var(--red);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.6s ease;
}

header nav ul li a:hover {
    transition: 0.6s ease;
    color: var(--dark);
}






main {
    margin-top: calc(2rem + 3.357vw);
}






section p {
    color: var(--white);
    font-size: 1.5rem;
}


.reveal {
    position: relative;
    transform: translateY(5rem);
    opacity: 0;
    transition: all 2s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
    transition: all 2s ease;

}









hr {
    border-color: var(--red);
    width: 100%;

}


footer {
    position: relative;
    margin-top: 1rem;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
}


footer p {
    color: var(--white);
    margin: 2rem;
    font-size: clamp(8px, 1rem, 60px);
}


#socialicons {
    display: flex;
    justify-content: space-between;
}

footer svg {
    width: clamp(15px, 2rem, 100px);
    height: clamp(15px, 2rem, 100px);
    transition: 0.6s;
    fill: var(--white);
    margin: clamp(15px, 1rem, 80px);
    z-index: 2;
    margin-top: 2rem;
}

footer svg:hover {
    fill: var(--red);
    transition: 0.6s ease-in;
}


#upicon {
    opacity: 0;
    transition: 0.3s ease;
}


upicon a svg {
    fill: var(--red);
    background-color: white;
    position: fixed;
    bottom: 4.2rem;
    right: 4.2rem;
    width: 2rem;
    height: 2rem;
    border-radius: 3rem;
    padding: 0.7rem;
    z-index: 2;
}


@media screen and (max-width: 1279px) {
    #mobile_header svg {
        background-color: var(--red);
        width: 3rem;
        height: 3rem;
        fill: var(--white);
        padding: 0.2rem;
        margin: 0.5rem;
    }

    header a {
        margin: 0.2rem;
    }

    footer svg {
        width: clamp(15px, 1.45rem, 100px);
        height: clamp(15px, 1.45rem, 100px);
        margin: clamp(5px, 1rem, 80px);
    }

    footer p {
        font-size: clamp(8px, 0.7rem, 60px);
        margin: 0.8rem;
    }

    upicon a svg {
        bottom: 3rem;
        right: 3rem;
    }



    header {
        display: flex;
        flex-direction: column;
    }
    
    
    #mobile_header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
    }


    header nav ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        list-style: none;
        display: none;
        width: 100%;
        padding: 0;
    }
    
    header nav ul li {
        display: block;
        width: 100%;
        margin: 0.2rem;
        text-align: center;
    }
    
    
    header nav ul li a {
        color: var(--red);
        font-size: 2rem;
        font-weight: bold;
        text-decoration: none;
        transition: 0.6s ease;
    }
    
    header nav ul li a:hover {
        transition: 0.6s ease;
        color: var(--dark);
    }
}
