/* Updated Header Styles */

.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    min-height: 70px;
}

/* Header Brand/Logo */
.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Fredoka One', cursive;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-brand:hover {
    transform: scale(1.05);
}

.header-brand i {
    font-size: 32px;
    color: #4ecdc4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-name {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* Main Navigation - Top Right */
.main-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid transparent;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    font-family: 'Nunito', sans-serif;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-btn.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }
    
    .header-brand {
        font-size: 24px;
    }
    
    .header-brand i {
        font-size: 28px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .header-brand {
        font-size: 20px;
    }
    
    .header-brand i {
        font-size: 24px;
    }
    
    .nav-btn {
        padding: 8px 12px;
        font-size: 13px;
        gap: 6px;
    }
    
    .nav-btn i {
        font-size: 16px;
    }
}

/* Remove old top-nav styles if they exist */
.top-nav,
.nav-brand,
.search-container,
.utility-nav {
    display: none !important;
}

