/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

/* Styles pour le header */
header {
    background: linear-gradient(135deg, #6AB7F5, #A3D8F4);
    color: black;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Styles pour le container du header */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

/* Styles pour le logo */
.logo-container img {
    max-width: 150px;
    height: auto;
}

/* Styles pour le texte du header */
.header-text {
    flex: 2;
    text-align: center;
}

/* Navigation rapide pour les cycles */
.quick-nav {
    text-align: center;
    margin: 20px 0;
}

.quick-nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #6AB7F5;
    font-weight: bold;
}

.quick-nav a:hover {
    text-decoration: underline;
}

/* Styles pour le bouton de retour à l'accueil */
.back-container {
    text-align: center;
    margin: 20px 0;
}

.back-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6AB7F5;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-btn:hover {
    background-color: #549ac4;
}

/* Styles pour le container principal */
.programmes-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

/* Styles pour les colonnes des cycles */
.cycle-column {
    flex: 1;
    min-width: 250px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Couleurs spécifiques pour chaque cycle */
.cycle-1 {
    background-color: #A3CBE3; /* Bleu pastel */
}

.cycle-2 {
    background-color: #F3B0B0; /* Rose pastel */
}

.cycle-3 {
    background-color: #B3E6C1; /* Vert pastel */
}

.cycle-4 {
    background-color: #D7BDE2; /* Violet pastel */
}

/* Styles pour la galerie */
.gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    text-align: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

/* Styles pour les descriptions */
.description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Ajout d'espace en bas de la page */
main {
    padding-bottom: 50px;
}

/* Styles pour le footer */
footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}
