/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    box-sizing: border-box;
}

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
    padding: 10px 20px;
    position: sticky;
    align-items: center;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-height: 80px;
}

.menu {
    display: flex;
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    font-size: 15px;
}

.menu-list li a {
    
    color:#00008b;
    font-size: 14px;
    font-weight: 900;
    font-style: italic;
    text-decoration: underline;
    
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #f60808;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .menu-list {
        display:block;
        border: 5px 4px #f60808;
        flex-direction: column;
        background: none;
        font-size: small;        
        align-items: flex-end;
    }
    .menu-list li a {
        text-decoration: none;
        color:#00008b;
        font-size: 14px;
        font-weight: 900;
        font-style: italic;
    }
    .logo {
        max-height: 170px;
    }
/* Bouton de menu hamburger */
.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 30px;
    background: none;
    border:none;
    color: rgb(184, 15, 15);
    padding: 5px;
}


}

/* Containers Styles */
.container {
    padding: 10px;
    text-align: center;
}

.gradient-background {
    background: linear-gradient(60deg, #2422a3, #8b3e74);
    color: #fff;
    
    
}

.white-background {
    background: #fff;
    color: #000;
}

.title {
    font-size: 70px;
    margin-bottom: 0px;
}

.subtitle li {
    font-size: 16px;
    margin-bottom: 20px;     
    text-decoration: underline;
}

.images-slide {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.images-slide img {
    width: auto;
    max-height: 150px;
    border-radius: 10px;
}


.images-row {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.images-row img {
    
    max-height: 120px;
    border-radius: 10px;
}
/* Responsivité pour les petits écrans */
@media (max-width: 768px) {
    .ir1{
        max-width: 90%;
    }

}

/* Responsivité pour les très petits écrans */
@media (max-width: 480px) {
    .images-row {
        display: flex;
        justify-content: center;
        gap: 3px;
        
    }
    .images-row img {
        max-width: 90%;
    
}
}
/* Section Styles */
.section-title {
    font-size: 24px;
    color: #00008b;
    margin-bottom: 20px;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2;
}

.news-list li a {
    color:red;

}
/* Button Style */
.calendar-button {
    background: #fff;
    color: #dda0dd;
    border: 2px solid #dda0dd;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Footer Styles */
footer {
    background: #fff;
    padding: 20px;
    text-align: center;
}

.footer-menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-menu li a {
    color:#00008b;
    font-size: 17px;   
    

}

.footer-line {
    border: 1px solid #dcdcdc;
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content:space-around;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    max-height: 80px;
}
