/* Custom styles that complement Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #0A192F;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #38B2AC;
}

/* Image aspect ratios for consistency */
.aspect-square {
    aspect-ratio: 1 / 1;
}
