/* Custom CSS for El Milagro */

html {
    scroll-behavior: smooth;
}

body {
    /* Custom subtle grain or texture could go here, keeping it clean for now */
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fdf4f6;
}
::-webkit-scrollbar-thumb {
    background: #db6d88;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a53353;
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0; /* Start hidden for animation */
}

/* Utility to hide scrollbar but keep functionality if needed */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
