/**
 * Custom Hero Image Override
 * Adds the uploaded hero image to the homepage
 */

.hero-section-enhanced {
    background-image: url('https://wildrover.life/wp-content/uploads/2025/06/IMG_1809-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Ensure the overlay still works for text readability */
.hero-section-enhanced .hero-overlay {
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
}

/* Mobile optimization */
@media (max-width: 768px) {
    .hero-section-enhanced {
        background-attachment: scroll; /* Better performance on mobile */
    }
}