/* ================= MOBILE BOTTOM NAV ================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    height: 65px;
     background: rgba(26, 26, 26, 0.384);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Menu Overlay Styles */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.664);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    backdrop-filter: blur(10px);
}
.menu-overlay.active {
    right: 0;
}
.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}
.menu-links {
    list-style: none;
    padding: 0;
    text-align: left;
}
.menu-links li {
    margin: 12px 0;
}
.menu-links a {
    color: white;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0px;
    transition: all 0.3s ease;
    display: inline-block;
}
.menu-links a:hover {
    color: #98f0f0;
    transform: translateX(10px);
    text-shadow: 0px 0px 10px rgba(224, 128, 2, 0.5);
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 60px;
}

.mobile-nav-link i {
    font-size: 1.5rem;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: #fff;
}

.mobile-nav-link.active i {
    color: var(--accent-gold);
    transform: translateY(-4px);
    filter: drop-shadow(0 0 8px rgba(224, 128, 2, 0.6));
}



        /* Adjust top header for mobile */
        @media (max-width: 991px) {
            .navbar-toggler { display: none !important; }
            .navbar-collapse { display: none !important; }
            /* Center Logo on mobile since menu is gone */
            .custom-navbar .container { justify-content: center; }
            .mobile-bottom-nav { display: flex; }
        }
        @media (min-width: 992px) {
            .mobile-bottom-nav { display: none; }
            .navbar-toggler { display: block !important; border: none; }
            .navbar-nav { display: none !important; }
            .navbar-collapse { justify-content: flex-end; }
            .custom-navbar .container { justify-content: space-between; }
        }
        
        @media (min-width: 992px) {
        }

        /* Custom Text Menu Button */
        .custom-menu-btn {
            border: none !important;
            background: transparent !important;
            color: white !important;
            display: flex; 
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            padding: 5px;
            transition: color 0.3s ease;
        }
        .custom-menu-btn:hover {
            color: var(--accent-gold) !important;
             border: none !important;
        }

        .custom-menu-btn:focus, .custom-menu-btn:active {
            outline: none !important;
            box-shadow: none !important;
            border: none !important;
        }



        
        /* ================= FIXED NAVBAR & TOPBAR ================= */
        .header-wrapper {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 2000;
            transition: all 0.4s ease;
        }

        .header-hidden {
            transform: translateY(-100%);
        }

        .top-bar {
            background: transparent;
            backdrop-filter: blur(5px);
            color: white;
            font-size: 0.8rem;
            transition: all 0.4s ease;
        }

        .custom-navbar {
            padding: 15px 0;
            transition: all 0.4s ease;
            background:transparent;
           
            
        }

        /* Scrolled State */
        .header-scrolled .top-bar {
            margin-top: -100px; /* Hides top bar on scroll */
            opacity: 0;
        }

       

        .nav-link {
            color: rgb(0, 0, 0) !important;
            font-weight: 900;
            margin: 0 15px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.85rem;
        }
