@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* fonts:
    #463cc1 blue
    #1DE600 green
    #e65800 orange
    #8f5f42 brown
    #373366 blue gray
*/

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: #373366;
    transition: color 0.3s ease;
}

a:hover {
    color: #e65800 !important;
}

h5{
    font-size: 20px;
}

li{
    list-style: none;
}

nav {
    background-color: #fff;
    position: sticky;
    top: 0;
    padding: 0 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    box-shadow: 0 5px 80px rba(0, 0, 0, 0.1);
}

nav .logo,
footer .logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
}

nav .logo a,
footer .logo a {
    margin-left: 8px;
    font-weight: bold;
    font-size: 20px;
}

nav .logo .logo-first-name,
footer .logo .logo-first-name {
    color: #373366;
}

nav .logo .logo-last-name,
footer .logo .logo-last-name {
    color: #e65800;
}

nav ul,
footer .top ul {
    display: flex;
    gap: 40px
}

nav button {
    color: #e65800;
    background-color: transparent;
    padding: 12px 16px;
    border-radius: 5px;
    border: 1px solid #463cc1;
    cursor: pointer;
    transition: all 0.3s ease;
}

nav button:hover {
    background-color: #373366;
    border-color: #463cc1;
    color:  #fff;
}

nav button#menuButton {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 7px;
}

footer {
    background-color: #deebee;
    padding: 85px;
    display: flex;
    flex-direction: column;
}

footer .top,
footer .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .top .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
}

footer .separator {
width: 100%;
height: 1px;
background-color: #282938;
margin: 30px 0 20px;
}

footer .bottom p {
    font-size: 12px;
}

footer .bottom .links a{
    font-size: 12px;
    margin-left: 14px;
}

@media screen and (max-width: 1200px){
    footer .top ul {
        gap: 20px;
    }
}


@media screen and (max-width: 992px) {
    nav button {
        display: none;
    }

    nav ul {
        gap: 20px;
    }

    nav ul li a {
        font-size: 15px;
    }

    footer .top ul {
        display: none;
    }
}


@media screen and (max-width: 768px){
    nav {
        justify-content: space-between;
        padding: 0 42px;
    }

    nav ul {
        display: none;
    }

    nav.open .logo {
        display: none;
    }

    nav.open ul{
        display: flex;
    }

    nav button#menuButton {
        display: flex;
    }

    footer {
        padding: 85px 42px;
    }

    footer .bottom {
        flex-direction: column-reverse;
        gap: 14px;
    }
}

@media screen and (max-width: 576px){
    nav ul li a {
        font-size: 12px;
    }
    
    nav .logo a {
        font-size: 18px;
    }

    .main .left h3 {
        font-size: 16px;
    }
        
    nav button#menuButton {
        margin-left: 15px;
    } 
}