/* Styles pour la section ateliers */

#ateliers-intro {
    position: relative;
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

#ateliers-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/exemple_montagne_2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -1;
    filter: blur(1px);
    transition: opacity 0.5s ease, filter 0.5s ease;
    border-radius: 12px;
}

#ateliers-intro .container {
    position: relative;
    z-index: 2;
}

#ateliers-intro .btn-rounded {
    transition: all 0.3s ease;
    background-color: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#ateliers-intro .btn-rounded:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--secondary);
}

/* Animation d'entrée pour la section ateliers */
#ateliers-intro .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#ateliers-intro .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #ateliers-intro {
        padding: 3rem 0;
    }
    
    #ateliers-intro::before {
        background-attachment: scroll;
    }
}