header {
    align-items: center;
    justify-content: space-around;
    padding: 5px;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 100;
    height: 90px;
}

.top-media{
    padding-top: 10px;
}

.top-media p{
    &:hover{
        color: #e75608;
    }
}

.top-media a{
    padding-left: 10px;
    font-size: 22px;
    &:hover{
        color: #e75608;
    }
}

.Logo {
    align-items: center;
    gap: 10px;
    /* flex-direction: column; */
}

.Logo span{
    font-size: 1.5rem;
}

.links {
   gap: 40px;
   align-items: baseline;

}

.links a {
    text-decoration: none;
    color: #fff; 
    &:hover{
        color: #e75608;
    }
}


.links button{
    /*margin-top: -10px;*/
    padding: 10px;
    background-color: #bb4809;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    color: #fff;
}

.nested-links {
    display: none;
    position: absolute; 
    top: 42px;
    background-color: #000;
    box-shadow: 0 2px 5px rgba(89, 97, 67, 0.1);
    border-radius: 10px;
    z-index: 1000; 
    padding: 20px;
}

.menu-item:hover .nested-links {
    display: block; 
}

.hamburger {
    display: none;
    cursor: pointer;
}

.links li {
    margin: 15px 0px; 
}

/* ============== Responsive ==============  */

@media screen and (max-width: 980px) {
    .links{
        gap: 23px;
    }
}


@media screen and (max-width: 768px) {
    /* .Logo {
        flex-direction: row;
    } */

    header{
        background-color: #000;
        padding: 5px 20px;
        justify-content: space-between;
    }

    .top-media{
        display: none;
    }

    .hr{
        display: none;
    }

    .links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 49px; 
        left: 0;
        right: 0;
        background-color: #000;
        padding: 10px 20px;
        gap: 0;
    }

    .nested-links {
        border-radius: 10px;
        position: absolute; 
        top: 80px;
        left: 160px;
        background-color: #000;
        box-shadow: 0 6px 8px rgba(250, 248, 248, 0.1);
        padding: 0;
        z-index: 1000;
    }

    .links.active {
        display: none; 
    }

    .hamburger {
        display: block; 
    }

    .links li {
        margin: 10px 20px; 
    }
}