li {
    list-style: none;

}

a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;

}

a:hover {
    color: orange;
}

header {
    position: relative;
    padding: 0 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar {
    width: 100%;
    height: 90px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 5px;
}

.navbar .logo img {
    color:  #7a522f;
    width: 80px;
}

.navbar .links {
    display: flex;
    gap: 2rem;

}


.navbar .links li a{
    color: #7a522f;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.navbar .toggle_btn {
    color: #7a522f;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}


.action_btn {
    background-color: orange;
    color: #fff;
    padding: 0.5rem 1rem;
    border: 0;
    outline: 0;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.action_btn:hover {
    scale: 1.05;
    color: #fff;
}

.action_btn:active {
    scale: 0.95;
}

/* DROPDOWN MENU */
.dropdown-menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.658);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-menu.open {
    height: 240px;
}

.dropdown-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a522f;
}

.dropdown-menu  li a{
    color: #7a522f;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.dropdown-menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* RESPONSIVE */
@media(max-width: 992px) {

    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown-menu {
        display: block;
        z-index: 3;
    }
}

@media(max-width: 576px) {
    .dropdown-menu {
        left: 2rem;
        width: unset;
    }
}
