/* Styles pour la page "Le mot du Président" */

.president-container {
    padding: 2rem 0;
    background-color: #f9f9f9;
}

.president-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-title {
    color: #006400;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #006400;
}

.president-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.president-image-container {
    text-align: center;
    padding: 1rem;
    background-color: #f2f8f2;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.president-image {
    max-width: 250px;
    border-radius: 50%;
    border: 5px solid #006400;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.president-image:hover {
    transform: scale(1.05);
}

.president-info {
    margin-bottom: 1rem;
}

.president-name {
    color: #006400;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.president-position {
    color: #555;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.4;
}

.president-message {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #006400;
}

.message-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.message-content p {
    margin-bottom: 1.5rem;
}

.signature {
    text-align: right;
    font-style: italic;
    margin-top: 2rem;
    font-weight: 600;
    color: #006400;
}

/* Animation lors du chargement de la page */
.president-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (min-width: 768px) {
    .president-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .president-image-container {
        flex: 1;
        max-width: 300px;
    }
    
    .president-message {
        flex: 2;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .president-name {
        font-size: 1.5rem;
    }
    
    .message-content {
        font-size: 1rem;
    }
}
