/* Custom styles for specific design requirements */
html {
    scroll-behavior: smooth;
}

body {
    /* Ensures text doesn't get cut off by transforms */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1E1E24;
}
::-webkit-scrollbar-thumb {
    background: #FF6B4A;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #E85A3C;
}

/* Animation classes for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Geometric decorative elements */
.geo-square {
    position: absolute;
    z-index: 0;
}

/* Fix for Tailwind shadow-hard on dark backgrounds if needed */
.shadow-hard {
    box-shadow: 8px 8px 0px 0px rgba(18, 18, 18, 1);
}

/* Mobile menu transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
