/*
Theme Name: Astra Child Sup Ingenium
Theme URI: https://wpastra.com/
Template: astra
Author: Cecile
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: Thème enfant d’Astra pour Sup Ingenium, utilisé pour les pages de formation et personnalisations CSS/Template.
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.11.10.1755910998
Updated: 2025-08-23 01:03:18

*/
/* Section formation générale */
.formation-section {
    padding: 60px 20px;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background: #f9fafc;
    color: #1A2A4E;
}

/* Sous-titre */
.formation-section .subtitle {
    text-align: center;
    font-size: 2em;
    color: #cf729B;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Texte d’introduction */
.formation-section .intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
    line-height: 1.7;
    color: #333;
}

/* Groupes de cartes */
.formation-section .card-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

/* Cartes individuelles */
.formation-section .info-card {
    background: #ffffff;
    flex: 1 1 300px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

/* Hover sur cartes */
.formation-section .info-card:hover {
    transform: translateY(-5px);
}

/* Titres dans les cartes */
.formation-section .info-card h3 {
    color: #cf729B;
    margin-bottom: 15px;
}

/* Listes dans les cartes */
.formation-section .info-card ul {
    padding-left: 20px;
}

/* Grille des jours */
.formation-section .days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

/* Cartes des jours */
.formation-section .day-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

/* Hover sur cartes des jours */
.formation-section .day-card:hover {
    transform: translateY(-5px);
}

/* Titres des jours */
.formation-section .day-card h4 {
    color: #cf729B;
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Paragraphes des jours */
.formation-section .day-card p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Boutons liens */
.formation-section .link-btn {
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
    padding: 8px 15px;
    background: #1A2A4E;
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.formation-section .link-btn:hover {
    background: #cf729B;
}

/* Section "Plus loin" */
.formation-section .plus-loin {
    background: #ffffff;
    flex: 1 1 300px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .formation-section .card-group {
        flex-direction: column;
    }
}

