/* Elite Header Styles */

/* Sticky Glassmorphism Navbar */
.elite-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    /* Above everything else */
    background: rgba(255, 255, 255, 0.95);
    /* Slightly clearer for readability */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 15px 0;
}

/* Brand Logo */
.elite-navbar .navbar-brand img {
    height: 45px;
    /* Slightly larger */
    transition: transform 0.3s ease;
}

.elite-navbar .navbar-brand:hover img {
    transform: scale(1.05);
}

/* Navigation Links */
.elite-nav-link {
    font-family: 'Inter', sans-serif;
    /* Modern sans-serif */
    font-weight: 600;
    font-size: 0.95rem;
    color: #484848 !important;
    /* Dark grey for readability */
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.elite-nav-link i {
    font-size: 1.1rem;
    color: var(--primary);
    transition: color 0.2s ease;
}

.elite-nav-link:hover,
.elite-nav-link.active {
    color: var(--primary) !important;
}

/* Elite Buttons */
.elite-btn-primary {
    background: var(--primary-grad);
    border: none;
    color: white !important;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.3);
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.elite-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 95, 0.4);
    filter: brightness(1.1);
}

.elite-btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.elite-btn-outline:hover {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.2);
    transform: translateY(-1px);
}

/* Auth User Dropdown/Profile */
.elite-user-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dropdown-menu-elite {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px;
    margin-top: 15px;
    animation: slideUp 0.3s forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Toggler */
.navbar-toggler {
    border: none;
    outline: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger-icon {
    font-size: 2rem;
    color: #1a1a1a;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1050;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #64748b;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
    transition: transform 0.2s;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--primary);
}

.mobile-bottom-nav .nav-item:hover {
    color: var(--primary);
}

.mobile-bottom-nav .nav-item:active i {
    transform: scale(0.9);
}

/* Add padding to body so content isn't hidden behind nav on mobile */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}