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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FDFBF7;
}
::-webkit-scrollbar-thumb {
    background: #d4b8a8;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b07d62;
}

/* Animation Utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image styling */
img {
    max-width: 100%;
    height: auto;
}

/* Form focus styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(196, 154, 133, 0.2);
}
