body {
    font-family: 'Inter', sans-serif;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d35400;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b84a00;
}

.dark ::-webkit-scrollbar-track {
    background: #374151;
}

.dark ::-webkit-scrollbar-thumb {
    background: #d35400;
}

* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

button:focus,
a:focus {
    outline: 2px solid #d35400;
    outline-offset: 2px;
}

#mobile-menu {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .bg-lockitin-orange {
        background-color: #000;
    }
    
    .text-lockitin-orange {
        color: #000;
    }
    
    .border-lockitin-orange {
        border-color: #000;
    }
}
