/* style.css */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Base styling for animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero image overlay effect */
.hero-bg {
    background-color: #58595B; /* Fallback */
    background-image: linear-gradient(rgba(27, 50, 80, 0.8), rgba(27, 50, 80, 0.8)), url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Image placeholder styling */
.img-placeholder {
    background-color: #E5E7EB;
    border: 2px dashed #58595B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #58595B;
    font-weight: bold;
}