/* Custom Styles for Cecinas La Osorno */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Hero Video Animation */
@keyframes flyToCorner {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(calc(-50vw + 80px), calc(-50vh + 80px)) scale(0.1);
        opacity: 0;
    }
}

.animate-fly-to-corner {
    animation: flyToCorner 4s ease-in-out forwards;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Utility for dynamic classes added by JS */
.hidden {
    display: none !important;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}