/* Custom CSS for Juan Carlos Hulin - Kinesiología */

/* Image container and overlays */
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.4), transparent);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.group:hover .image-overlay {
    opacity: 0;
}

/* Navbar scroll effect */
.scrolled-nav {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background-color: rgba(255, 255, 255, 0.98);
}

/* Smooth scroll behavior is handled by Tailwind's scroll-smooth */
