/* General styles for the navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    flex-shrink: 0;
}

.navbar-logo .logo {
    height: 90px;
}

.navbar-burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
}

.navbar-burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    list-style: none;
}

.navbar-menu a {
  
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-menu a:hover {
    background-color: rgba(108, 79, 112, 0.8);
    color: #ffffff;
    border-radius: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-content a:hover {
    background-color: rgba(108, 79, 112, 0.8);
    color: #ffffff;
    border-radius: 5px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-logo .logo {
        height: 60px;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .navbar-menu.active {
        display: flex !important;
        top: 84px;
    }

    .navbar-menu li {
        width: 100%;
        text-align: left;
        margin: 5px 0;
        padding-left: 20px;
    }

    .navbar-menu a {
        font-size: 14px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
    }

    .dropdown-content a {
        padding-left: 30px;
        font-size: 13px;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .dropdown-content a:hover {
        background-color: transparent;
        color: #6c4f70;
        border-radius: 0;
    }

    .navbar-burger {
        display: flex;
    }

    .navbar-burger.active + .navbar-menu {
        display: flex;
    }

    .navbar-menu .dropdown-content {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .navbar-menu .dropdown-content a {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .navbar-menu .dropdown-content a:hover {
        background-color: transparent;
        color: #6c4f70;
        border-radius: 0;
    }
}
