/* Enhanced Navigation Styles 2025 */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    z-index: 1001;
}

.logo-text {
    color: #fff;
}

.logo-highlight {
    color: var(--highlight, #ff4500);
}

/* Desktop Navigation */
@media screen and (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        gap: 0.75rem;
        margin: 0;
        padding: 0;
        list-style: none;
        align-items: center;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        color: #fff;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        padding: 0.5rem 0.75rem;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
        border-radius: 4px;
    }

    .nav-menu a:hover {
        color: var(--highlight, #ff4500);
        background: rgba(255, 69, 0, 0.1);
    }

    .nav-menu a.active {
        color: var(--highlight, #ff4500);
        background: rgba(255, 69, 0, 0.15);
    }

    /* Hide mobile elements on desktop */
    .kolam-nav,
    .kolam-toggle {
        display: none;
    }
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
}