/* Custom styles beyond Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Thin scrollbars for webkit */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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

/* Custom focus styles */
a:focus-visible, button:focus-visible {
    outline: 2px solid #a36558;
    outline-offset: 4px;
    border-radius: 4px;
}
