/* Custom styles to complement Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    /* Prevent layout shift on font load */
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

/* Mobile Menu Transitions */
#mobile-menu {
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

/* Geometric shape hover effects */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #1e293b; 
}
::-webkit-scrollbar-thumb:hover {
    background: #fbbf24; 
}
