/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #020617;
    border-bottom: 1px solid #1e293b;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO */
.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
}

.blue { color: #3b82f6; }
.brown { color: #f59e0b; }
.white { color: #ffffff; }

/* MENU */
.menu {
    display: flex;
    align-items: center;
}

.menu a {
    margin-left: 20px;
    text-decoration: none;
    color: #e2e8f0;
    font-size: 14px;
    position: relative;
}

/* ACTIVE */
.menu a.active {
    color: #3b82f6;
}

.menu a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3b82f6;
}

/* BUTTON */
.btn.mode {
    margin-left: 20px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #16a34a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 13px;
}

/* PROFILE */
.profile-btn {
    margin-left: 20px;
    cursor: pointer;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 8px;
    min-width: 150px;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #1e293b;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        flex-direction: column;
        background: #020617;
        display: none;
        border-top: 1px solid #1e293b;
    }

    .menu a, .btn.mode, .profile-btn {
        margin: 10px 0;
    }

    .menu.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}
