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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #075a42;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #064e3b;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Asymmetric Layout Fixes */
@media (min-width: 1024px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 7fr 5fr;
        align-items: center;
        height: 80vh;
    }
}
