
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.85;
    color: #333;
    background-color: #fafafa;
    background-image: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

/* Menu - étiquette English */
.language-toggle {
    position: fixed;
    top: 25px;
    right: 25px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 11px 24px;
    border-radius: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
    font-size: 0.98em;
    letter-spacing: 0.4px;
    border: 1px solid rgba(0,0,0,0.05);
}

.language-toggle:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.language-toggle i {
    margin-right: 6px;
    font-size: 0.95em;
}

/* Header avec slider fade */
.header-container {
    position: relative;
    height: 520px;
    overflow: hidden;
    margin-bottom: 70px;
    background-color: #002d5a;
}

.header-slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Animation de zoom subtil sur les slides */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    /* animation: zoomSlide 12s ease-in-out infinite; */
    transform: scale(1.05);
}

@keyframes zoomSlide {
    0%, 100% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.12);
    }
}

.slide.active {
    opacity: 0.15;
}


a {
    color: rgb(59, 107, 175);
    font-family: 'Montserrat', sans-serif; 
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    padding: 20px;
    width: 90%;
    max-width: 1100px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    margin-bottom: 32px;
}

.logo {
    max-width: 350px;
    max-height: 250px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.header-title {
    color: #fff;
    font-size: 2.75em;
    font-weight: 300;
    margin-bottom: 14px;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.25);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
}

.header-subtitle {
    color: #f8f9fa;
    font-size: 1.3em;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 1.2px;
    font-family: 'Montserrat', sans-serif;
}

/* Section Communiqué */
.communique-section {
    max-width: 950px;
    margin: 0 auto 60px;
    padding: 55px 70px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.04);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.communique-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.section-title {
    text-align: center;
    font-size: 2.3em;
    color: #002d5a;
    margin-bottom: 38px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
}

.communique-content {
    font-size: 1.15em;
    line-height: 2;
    color: #444;
    font-family: 'Cormorant Garamond', serif;
}

.communique-content p {
    margin-bottom: 22px;
    text-align: justify;
}

.communique-content strong {
    color: #002d5a;
    font-weight: 600;
    font-size: 1.08em;
    display: block;
    margin-bottom: 10px;
}

/* Galerie de photos */
.gallery-section {
    max-width: 1250px;
    margin: 0 auto 65px;
    padding: 0 25px;
}

.gallery-title {
    text-align: center;
    font-size: 1.7em;
    color: #002d5a;
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 0.8px;
    font-family: 'Cormorant Garamond', serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.09);
    height: 240px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 45, 90, 0.88);
    color: white;
    padding: 12px;
    font-size: 0.95em;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    letter-spacing: 0.5px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Section téléchargement SOBRE */
.download-section {
    max-width: 850px;
    margin: 0 auto 80px;
    background: #fafafa;
    padding: 50px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.download-title {
    text-align: center;
    font-size: 1.75em;
    color: #002d5a;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.8px;
    font-family: 'Cormorant Garamond', serif;
}

.download-box {
    background: #fff;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 35px;
    text-align: center;
    margin-bottom: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.download-box:hover {
    border-color: #0056b3;
    box-shadow: 0 4px 15px rgba(0,123,255,0.12);
}

.download-icon {
    font-size: 3.2em;
    color: #007bff;
    margin-bottom: 18px;
    opacity: 0.85;
}

.download-link {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 15px 45px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #007bff;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.download-link:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,86,179,0.3);
}

.download-link i {
    margin-right: 10px;
    font-size: 1.15em;
}

.instructions-box {
    background: #f0f7ff;
    padding: 22px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.instructions-title {
    font-weight: 600;
    color: #002d5a;
    margin-bottom: 10px;
    font-size: 1.15em;
    font-family: 'Montserrat', sans-serif;
}

.instructions-text {
    color: #555;
    line-height: 1.8;
    font-family: 'Cormorant Garamond', serif;
}

.instructions-text strong {
    color: #002d5a;
    font-weight: 600;
}

/* Espacement après formulaire */
.spacing-after-form {
    height: 50px;
    background: linear-gradient(to bottom, #fafafa 0%, #f5f5f5 100%);
}

/* Footer minimaliste */
footer {
    background: #002d5a;
    color: rgba(255, 255, 255, 0.7);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9em;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-text {
    margin-bottom: 8px;
}

.last-update {
    color: #d4af37;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .header-container {
        height: 440px;
    }

    .header-title {
        font-size: 2.2em;
    }

    .header-subtitle {
        font-size: 1.15em;
    }

    .communique-section {
        padding: 45px 45px;
    }

    .download-section {
        padding: 40px 35px;
    }

    .logos-container {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-container {
        height: 390px;
    }

    .logos-container {
        flex-direction: column;
        gap: 28px;
    }

    .communique-section {
        padding: 35px 30px;
    }

    .section-title {
        font-size: 1.9em;
    }

    .download-section {
        padding: 35px 25px;
    }

    .download-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .header-container {
        height: 330px;
    }

    .header-title {
        font-size: 1.85em;
        letter-spacing: 1.5px;
    }

    .header-subtitle {
        font-size: 1.05em;
    }

    .download-section {
        padding: 30px 20px;
        margin-bottom: 60px;
    }

    .download-link {
        padding: 13px 35px;
        font-size: 1em;
        width: 100%;
        display: block;
    }

    .gallery-item {
        height: 210px;
    }

    .spacing-after-form {
        height: 30px;
    }

    footer {
        padding: 20px 0;
    }
}
