/* ===========================
   MENU HORIZONTAL
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.98), rgba(44, 134, 64, 0.98));
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(44, 134, 64, 0.3);
    border-bottom: 3px solid var(--accent-color);
    padding: 0 !important;
    flex-wrap: nowrap !important;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    height: 120px;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: auto;
}

.nav-brand a {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(174, 255, 0, 0.3));
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 5px;
    margin: 0 !important;
    padding: 0 !important;
    margin-left: auto !important;
}

.nav-link {
    display: block;
    padding: 12px 25px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
}
