/* 1. GOOGLE FONTS & GLOBAL RESET */



@import "./fonts.css";   

:root {
    --brand-pink: #f2a2ab;
}


/* 2. TEXT SIZE IMPROVEMENTS (Fixing the small text issue) */

/* Main Navigation Links */
.nav-link {
    font-size: 14px !important; /* Increased from 11px for better legibility */
    font-weight: 600 !important;
    letter-spacing: 0.03em;
}

/* Admin Sidebar & Management Links */
.sidebar-item, .management-link, [aria-label="Sidebar"] a {
    font-size: 15px !important; /* Larger for easy clicking on Dashboard */
    font-weight: 600;
}

/* Dashboard Card Labels (e.g., "DAILY REVENUE") */
.stat-label {
    font-size: 12px !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* 3. NAVIGATION & GLASSMORPHISM */
.nav-glass, .sticky-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dark .nav-glass, .dark .sticky-nav {
    background: rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dropdown visibility on hover */
.dropdown-trigger:hover .dropdown-menu { 
    display: block; 
    animation: fadeIn 0.2s ease-out;
}

/* 4. ANIMATIONS */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-bounce-slow { animation: bounce-slow 4s ease-in-out infinite; }
.float-animation { animation: float 6s ease-in-out infinite; }
.animate-marquee { animation: marquee 30s linear infinite; }
.animate-marquee:hover { animation-play-state: paused; }

/* 5. VISUAL UI ELEMENTS (Glows and Glass) */
.glass-circle {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.4;
}

.premium-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.dark .premium-glass {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-bg {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
}

/* 6. MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .nav-link {
        font-size: 16px !important; /* Even larger on mobile for touch */
    }
    
    .mobile-nav-link {
        padding: 1rem 0;
        font-size: 18px !important;
    }
}




