/* css/style.css */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Manrope', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #111316;
}
::-webkit-scrollbar-thumb {
    background: #333538;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e9c349;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* AOS elements start hidden to avoid flickering */
[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}


/* Visiblity fallback */
.visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Nav links hover effect */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #e9c349;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Nav Link stagger */
#mobile-menu a {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

#mobile-menu:not(.translate-x-full) a {
    opacity: 1;
    transform: translateY(0);
}

#mobile-menu:not(.translate-x-full) a:nth-child(1) { transition-delay: 0.1s; }
#mobile-menu:not(.translate-x-full) a:nth-child(2) { transition-delay: 0.2s; }
#mobile-menu:not(.translate-x-full) a:nth-child(3) { transition-delay: 0.3s; }
#mobile-menu:not(.translate-x-full) a:nth-child(4) { transition-delay: 0.4s; }
