<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Styles pour la page Conseils/Ateliers */

/* Animation au dÃ©filement */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Style pour la section programme dÃ©taillÃ© avec fond montagne */
.program-background {
    position: relative;
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.program-background::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);
}

.program-background .container {
    position: relative;
    z-index: 2;
}

/* Styles pour la timeline du programme */
.program-timeline {
    position: relative;
    padding: 20px 0;
    max-width: 90%;
    margin: 0 auto;
}

.program-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 4px;
    background: var(--secondary);
    background: linear-gradient(to bottom, rgba(38, 92, 75, 0.2), var(--secondary), rgba(38, 92, 75, 0.2));
    border-radius: 4px;
    z-index: 0;
}

.program-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 100px;
    transition: all 0.4s ease;
}

.program-item:hover {
    transform: translateX(5px);
}

.program-number {
    position: absolute;
    left: 30px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.8), 0 0 0 8px rgba(38, 92, 75, 0.1);
    transition: all 0.4s ease;
}

.program-item:hover .program-number {
    background-color: var(--secondary);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.9), 0 0 0 10px rgba(38, 92, 75, 0.2);
    z-index: 2;
}

.program-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 3px solid transparent;
    transition: all 0.4s ease;
}

.program-item:hover .program-content {
    border-left: 3px solid var(--secondary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.program-content h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.program-item:hover .program-content h4 {
    color: var(--secondary);
}

.program-content ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.program-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
    transition: transform 0.3s ease;
}

.program-content ul li:hover {
    transform: translateX(3px);
}

.program-content ul li:before {
    content: 'â€¢';
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: -15px;
    transition: all 0.3s ease;
}

.program-content ul li:hover:before {
    color: var(--primary);
    transform: scale(1.2);
}

/* Style des cartes d'atelier */
.workshop-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    overflow: hidden;
    height: 100%;
    padding: 1.8rem;
    border: 1px solid rgba(38, 92, 75, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Styles pour les sections des cartes */
.workshop-header {
    margin-bottom: 1.5rem;
}

.workshop-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.workshop-footer {
    margin-top: 1.5rem;
}

.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-left: 4px solid var(--secondary);
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    transition: width 0.4s ease;
}

.workshop-card:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

/* Alignement des Ã©lÃ©ments dans les cartes */
.workshop-title {
    min-height: 5.5rem;
    display: flex;
    align-items: flex-start;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.workshop-objective {
    min-height: 5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.workshop-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    align-items: center;
    min-height: 3rem;
}

.workshop-price, .workshop-duration {
    font-weight: 600;
    color: var(--primary);
}

.workshop-list {
    margin-bottom: 2rem;
    min-height: 12rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 1.2rem;
}

.workshop-list li {
    margin-bottom: 0.8rem;
    line-height: 1.4;
    position: relative;
}

.workshop-button {
    margin-top: auto;
    align-self: center;
    width: 100%;
    position: relative;
    bottom: 0;
}

/* Standardisation des titres de section dans les cartes */
.workshop-card h5, .section-title {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Style spÃ©cial pour le bloc bonus */
.workshop-details:last-child {
    background-color: rgba(38, 92, 75, 0.15);
    border-left: 3px solid var(--secondary);
    padding: 1rem;
    margin-top: 1.5rem;
    font-style: italic;
    display: block;
    min-height: auto;
}

.workshop-details:last-child .workshop-price {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    color: var(--secondary);
}

/* Style des titres et contenus */
.workshop-title {
    color: var(--primary);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.workshop-card:hover .workshop-title {
    color: var(--secondary);
}

.workshop-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    transition: width 0.4s ease;
}

.workshop-card:hover .workshop-title:after {
    width: 80px;
}

.workshop-objective {
    font-style: italic;
    margin-bottom: 1.2rem;
    color: var(--dark);
    font-size: 1.05rem;
    line-height: 1.5;
    padding-left: 0.5rem;
    border-left: 2px solid rgba(38, 92, 75, 0.3);
}

.workshop-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: rgba(38, 92, 75, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.workshop-details:hover {
    background-color: rgba(38, 92, 75, 0.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.workshop-price, .workshop-duration {
    font-weight: bold;
    color: var(--primary);
    font-size: 1.05rem;
}

/* Style pour le contenu de l'activitÃ© */
.activity-content {
    padding: 2rem;
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(38, 92, 75, 0.1);
}

.activity-content:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.activity-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--secondary);
    transition: height 0.4s ease;
}

.activity-content:hover::before {
    height: 100%;
}

.activity-content .activity-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: color 0.3s ease;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(38, 92, 75, 0.1);
}

.activity-content:hover .activity-title {
    color: var(--secondary);
}

.activity-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    text-align: justify;
    transition: transform 0.3s ease;
}

.activity-content:hover p {
    transform: translateX(5px);
}

.activity-content .activity-icon {
    color: var(--secondary);
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.activity-content:hover .activity-icon {
    transform: rotate(10deg);
}

/* Style pour le rÃ©sumÃ© de l'atelier */
.workshop-summary {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    padding: 1.8rem;
    border: 1px solid rgba(38, 92, 75, 0.15);
    position: relative;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: -1px; /* Alignement parfait avec activity-content */
}

.workshop-summary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    border-left: 4px solid var(--secondary);
}

.summary-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background-color: rgba(38, 92, 75, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.summary-item:hover {
    background-color: rgba(38, 92, 75, 0.15);
    transform: translateX(5px);
}

.summary-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(38, 92, 75, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.summary-item:hover .summary-icon {
    background-color: var(--secondary);
    color: white;
    transform: rotate(10deg);
}

.summary-content {
    flex: 1;
}

.summary-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.summary-content p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0;
}

.workshop-button {
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.workshop-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.workshop-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.workshop-button:hover::before {
    left: 100%;
}

/* Style pour les listes Ã&nbsp; puces */
.workshop-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Style pour le conteneur parent des activity-content et workshop-summary */
.row.g-0 {
    align-items: stretch;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.row.g-0:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* AmÃ©lioration de la cohÃ©rence visuelle entre activity-content et workshop-summary */
.col-lg-8 .activity-content, .col-lg-4 .workshop-summary {
    transition: all 0.4s ease;
}

.row.g-0:hover .activity-content, .row.g-0:hover .workshop-summary {
    border-color: rgba(38, 92, 75, 0.25);
}

.workshop-list li {
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 0.5rem;
    transition: transform 0.2s ease;
}

.workshop-list li:hover {
    transform: translateX(3px);
}

.workshop-list li:before {
    content: 'â€¢';
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: -1rem;
    transition: color 0.2s ease;
}

.workshop-list li:hover:before {
    color: var(--primary);
}

/* Styles pour les titres de section dans les cartes */
.workshop-card h5 {
    color: var(--secondary);
    margin-top: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.15rem;
    position: relative;
    display: inline-block;
}

.workshop-card h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.workshop-card:hover h5::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .workshop-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .workshop-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .workshop-title {
        font-size: 1.3rem;
    }
    
    .workshop-objective {
        font-size: 1rem;
    }
    
    .activity-content, .workshop-summary {
        margin-bottom: 1.5rem;
    }
    
    .activity-content {
        padding: 1.5rem;
    }
    
    .workshop-summary {
        padding: 1.5rem;
    }
    
    /* Responsive pour la timeline du programme */
    .program-timeline {
        max-width: 100%;
    }
    
    .program-timeline::before {
        left: 30px;
    }
    
    .program-item {
        padding-left: 70px;
    }
    
    .program-number {
        left: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .program-content {
        padding: 15px 20px;
    }
    
    .program-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .workshop-card {
        padding: 1.2rem;
    }
    
    .workshop-title {
        font-size: 1.2rem;
    }
    
    .workshop-list li {
        margin-bottom: 0.8rem;
    }
    
    .activity-content, .workshop-summary {
        padding: 1.2rem;
    }
}</pre></body></html>