/* Custom styles that complement Tailwind */

body {
    background-color: #f9f7f2;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #0f3d3e;
}

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

/* Animation utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

/* Image aspect ratio helpers */
.aspect-tall {
    aspect-ratio: 4/5;
}
