/* contact-hero.css */
.hero-glass-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container des images */
.hero-bg-slideshow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    background: #000;
}

.hero-bg-slideshow img {
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out; /* Effet de fondu entre les images */
}

/* Effet Zoom (Ken Burns) */
.hero-bg-slideshow img.active {
    opacity: 1;
    animation: kenburns 8s ease-in-out infinite alternate;
}

@keyframes kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

/* Overlay Glassmorphism */
.glass-overlay {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(1px) saturate(150%);
    -webkit-backdrop-filter: blur(1px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 85%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.glass-title {
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}
