/* Language Selector */
.language-selector {
    color: #9CA3AF;
    transition: color 0.3s ease;
}
.language-selector.active {
    color: white;
    font-weight: bold;
}

/* Custom CSS for animations and effects */
.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://www.mauriciodelpozo.com/images/848A8138.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.gallery-item {
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Modal styles */
#galleryModal {
    transition: opacity 0.3s ease;
}

#galleryModal img {
    transition: transform 0.3s ease;
}

#galleryModal img:hover {
    transform: scale(1.02);
}
