/* Style général */
.mot-president {
    font-family: 'Poppins', 'Playfair Display', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f9f9f9;
}

/* Bannière Hero */
.banniere-hero {
    position: relative;
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/banner-president.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.overlay-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 87, 146, 0.8) 0%, rgba(0, 40, 85, 0.9) 100%);
    z-index: 1;
}

.contenu-hero {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.titre-hero {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sous-titre-hero {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.decoration-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.element-deco {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.element-3 {
    width: 70px;
    height: 70px;
    top: 60%;
    left: 30%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 2s;
}

/* Section Président */
.section-president {
    padding: 80px 0;
    position: relative;
}

.carte-president {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    padding: 40px;
}

.carte-president::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #005792, #00a8e8);
}

/* Photo du Président */
.photo-president {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.cadre-photo {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cadre-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.cadre-photo:hover img {
    transform: scale(1.03);
}

.ornement-photo {
    position: absolute;
    background: #005792;
    border-radius: 50%;
    z-index: -1;
}

.ornement-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
    opacity: 0.2;
}

.ornement-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    opacity: 0.1;
}

.signature-president {
    margin-top: 30px;
    text-align: center;
    font-style: italic;
    color: #555;
    position: relative;
    padding-top: 20px;
}

.signature-president::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #005792, transparent);
}

.titre-signature {
    font-weight: 600;
    color: #005792;
    margin-top: 5px;
}

.fleurons-signature {
    margin-top: 10px;
    color: #00a8e8;
}

/* Message du Président */
.message-president {
    flex: 2;
    min-width: 300px;
}

.introduction-message {
    margin-bottom: 40px;
}

.salutation {
    margin-bottom: 5px;
    color: #005792;
    font-weight: 500;
}

.bienvenue {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    color: #333;
}

.paragraphe-message {
    margin-bottom: 30px;
    text-align: justify;
}

.encadre-special {
    background: #f0f7ff;
    border-left: 4px solid #005792;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.encadre-special::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-top: 2px solid #005792;
    border-right: 2px solid #005792;
    border-radius: 0 8px 0 0;
}

.icone-encadre {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: #005792;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.paragraphe-accentue {
    background: linear-gradient(135deg, #005792, #00a8e8);
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 87, 146, 0.3);
}

.section-icones {
    margin: 40px 0;
}

.element-icone {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.element-icone i {
    font-size: 1.8rem;
    color: #005792;
    margin-top: 5px;
}

.liste-message ul {
    list-style-type: none;
    padding-left: 0;
}

.liste-message li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.liste-message li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #00a8e8;
}

.conclusion-message {
    margin-top: 50px;
    font-size: 1.1rem;
}

.appel-final {
    font-weight: 600;
    font-style: italic;
    color: #005792;
    margin-top: 20px;
    padding: 20px;
    background: #f5f9ff;
    border-radius: 8px;
    border-left: 4px solid #00a8e8;
}

/* Section Citation */
.section-citation {
    padding: 60px 0;
    background: linear-gradient(135deg, #005792, #00a8e8);
    color: white;
}

.cadre-citation {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cadre-citation blockquote {
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    margin: 0;
    padding: 0 50px;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
}

.guillemet-gauche, .guillemet-droit {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
}

.guillemet-gauche {
    top: -20px;
    left: 0;
}

.guillemet-droit {
    bottom: -40px;
    right: 0;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 992px) {
    .titre-hero {
        font-size: 2.5rem;
    }
    
    .sous-titre-hero {
        font-size: 1.2rem;
    }
    
    .carte-president {
        flex-direction: column;
        padding: 30px;
    }
    
    .cadre-citation blockquote {
        font-size: 1.5rem;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .banniere-hero {
        height: 60vh;
    }
    
    .titre-hero {
        font-size: 2rem;
    }
    
    .photo-president {
        min-width: 100%;
    }
    
    .cadre-citation blockquote {
        font-size: 1.3rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .banniere-hero {
        height: 50vh;
    }
    
    .titre-hero {
        font-size: 1.8rem;
    }
    
    .carte-president {
        padding: 20px;
    }
    
    .encadre-special {
        padding: 15px;
    }
    
    .paragraphe-accentue {
        padding: 15px;
    }
}