/* Navbar base */
.custom-navbar {
    font-family: var(--font-primary), sans-serif;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 1000;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

/* Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*font-size: 1.1rem;*/
    font-weight: 300;
    /*max-width: 2000px;*/
    margin: 0 auto;
    padding: 0 1rem;
}

/* Brand */
/*.brand {*/
/*    font-weight: bold;*/
/*    font-size: 1.5rem;*/
/*    text-decoration: none;*/
/*    color: var(--text-color);*/
/*    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);*/
/*}*/

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-color);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 160px;
    border: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 12px;
}

a {
    display: block;
    /*padding: 0.5rem 1rem;*/
    color: var(--text-color);
    text-decoration: none;
}

.dropdown-menu li a:hover {
    color: #959595;
}
.dropdown:hover .dropdown-menu {
    display: block;
}


/* Hamburger button */
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        /*background-color: #222;*/
        background-color: var(--background-color);
        width: 100%;
        padding: 20px;
        display: none;
    }
    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        border: none;
        /*background-color: transparent;*/
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }
}