/* ============================================
   AIPAC - MAIN STYLESHEET
   Variables CSS et styles de base
   ============================================ */

:root {
    /* Couleurs principales - Côte d'Ivoire */
    --primary-green: #2e7d32;
    --primary-green-dark: #1b5e20;
    --accent-orange: #ff6f00;
    --accent-orange-light: #ff8f00;
    --accent-red: #d32f2f;
    --accent-white: #ffffff;
    
    /* Couleurs de fond */
    --bg-white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #1a1a1a;
    
    /* Couleurs de texte */
    --text-dark: #212121;
    --text-light: #757575;
    --text-muted: #9e9e9e;
    
    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Espacements */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
}

/* ============================================
   RESET ET BASE
   ============================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   FLASH INFO BAR
   ============================================ */

.flash-info-bar {
    background: linear-gradient(135deg, #1e1e1e 0%, #1d1d1c 50%, #121212 100%);
    color: white;
    padding: 12px 0;
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.flash-info-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.flash-label {
    font-weight: 700;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.flash-content {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-qui-sommes {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 600;
    flex-shrink: 0;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-qui-sommes:hover {
    color: #ffed4e;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
    color: #ffd700;
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid var(--primary-green);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;

    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-menu a:hover {
    color: var(--primary-green);
    background: rgba(46, 125, 50, 0.1);
}

/* User Menu Dropdown */
.user-menu-container {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.user-menu-container.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    border-radius: 6px;
    list-style: none;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-menu-container.active .user-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-dropdown li {
    margin: 0;
}

.user-menu-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 0;
}

.user-menu-dropdown a:hover {
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-green);
}

.user-menu-dropdown .text-danger {
    color: #d32f2f !important;
}

.user-menu-dropdown a:hover .text-danger {
    color: #b71c1c !important;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    min-height: calc(100vh - 200px);
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h60v60H0z" fill="none"/><path d="M30 0l30 30-30 30L0 30z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 3em;
    margin: 0;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ============================================
   CONTENT SECTION
   ============================================ */

.content-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 60vh;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #b0b0b0;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-column a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-icon {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.footer-social .social-icon:hover {
    background: var(--accent-orange);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, #ff6f00 0%, #ff6f00 20%, #2e7d32 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    padding: 30px 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2em;
    font-weight: 800;

    margin-bottom: 15px;
    color: white;
    /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); */
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1em;
    font-weight: 500;
    color: white;
    /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); */
    opacity: 0.95;
}

/* ============================================
   WELCOME BANNER
   ============================================ */

.welcome-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.welcome-banner.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.welcome-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.welcome-banner-content {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.welcome-banner-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 2;
}

.welcome-banner-close:hover {
    background: #f5f5f5;
    color: var(--text-dark);
}

.welcome-banner-header {
    padding: 30px 30px 20px;
    border-bottom: 2px solid var(--primary-green);
}

.welcome-banner-header h2 {
    color: var(--primary-green);
    font-size: 1.8em;
    margin: 0;
    font-weight: 700;
}

.welcome-banner-body {
    padding: 30px;
}

.welcome-banner-message {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.welcome-banner-photo {
    flex-shrink: 0;
}

.welcome-banner-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-green);
}

.welcome-banner-text {
    flex: 1;
}

.welcome-banner-text p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.welcome-banner-signature {
    text-align: right;
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* ============================================
   FILTER SECTION
   ============================================ */

.filter-section {
    padding: 30px 0;
    background: var(--bg-white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.categories-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 12px 24px;
    background: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid #e0e0e0;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   NEWS SECTION
   ============================================ */

.combined-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.news-compact-full {
    margin-bottom: 50px;
}

.section-title-compact {
    font-size: 2em;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.news-grid-compact-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.news-card-compact {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image-compact {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.news-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card-compact:hover .news-image-compact img {
    transform: scale(1.1);
}

.news-content-compact {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content-compact h3 {
    color: var(--text-dark);
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-content-compact p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    align-self: flex-start;
}

.read-more:hover {
    color: var(--primary-green-dark);
    transform: translateX(5px);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.placeholder-icon {
    font-size: 4em;
    opacity: 0.3;
}

.no-content {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

/* ============================================
   CAROUSEL
   ============================================ */

.main-grid-section {
    padding: 0 0 60px;
    background: var(--bg-white);
}

.carousel-section-full {
    width: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    color: var(--text-light);
    font-size: 1.2em;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2em;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--primary-green);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-md);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */

.combined-bottom-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.projects-compact {
    margin-bottom: 60px;
}

.projects-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card-compact {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.project-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image-compact {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.project-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card-compact:hover .project-image-compact img {
    transform: scale(1.1);
}

.project-content-compact {
    padding: 25px;
}

.project-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.project-status.status-en_cours {
    background: #e3f2fd;
    color: #1976d2;
}

.project-status.status-termine {
    background: #e8f5e9;
    color: #2e7d32;
}

.project-status.status-planifie {
    background: #fff3e0;
    color: #f57c00;
}

.project-content-compact h3 {
    color: var(--text-dark);
    font-size: 1.3em;
    margin-bottom: 12px;
    font-weight: 700;
}

.project-content-compact p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.project-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--primary-green-dark);
    transform: translateX(5px);
}

/* ============================================
   MISSIONS SECTION
   ============================================ */

.missions-compact-full {
    margin-bottom: 60px;
}

.missions-grid-compact-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card-compact {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.mission-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-green);
}

.mission-icon-compact {
    font-size: 3em;
    margin-bottom: 20px;
}

.mission-card-compact h3 {
    color: var(--primary-green);
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-card-compact p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-compact-full {
    margin-bottom: 60px;
}

.partners-grid-compact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.partner-item-compact {
    flex: 1 1 auto;
    min-width: 150px;
    max-width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-item-compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-item-compact img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-item-compact span {
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
}

/* ============================================
   FLOATING AGENDA
   ============================================ */

.floating-agenda {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.agenda-icon-wrapper {
    position: relative;
    cursor: pointer;
}

.agenda-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.agenda-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.agenda-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-orange);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    font-weight: 700;
    border: 2px solid white;
}

.agenda-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-height: 500px;
    overflow-y: auto;
}

.floating-agenda:hover .agenda-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.agenda-popup-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.agenda-popup-header h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 700;
}

.agenda-close {
    cursor: pointer;
    font-size: 1.5em;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.agenda-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.agenda-popup-content {
    padding: 20px;
}

.agenda-popup-item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    gap: 15px;
}

.agenda-popup-item:last-child {
    border-bottom: none;
}

.agenda-popup-date {
    flex-shrink: 0;
    background: var(--primary-green);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85em;
    font-weight: 700;
    text-align: center;
    min-width: 80px;
}

.agenda-popup-content-text {
    flex: 1;
}

.agenda-popup-content-text h4 {
    color: var(--text-dark);
    font-size: 1em;
    margin-bottom: 5px;
    font-weight: 700;
}

.agenda-popup-location {
    color: var(--text-light);
    font-size: 0.9em;
    margin: 0;
}

/* ============================================
   ABOUT PAGE STYLES - SIMPLE
   ============================================ */

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 2em;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-green);
}

/* President Section */
.president-info-simple {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.president-photo-simple {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-green);
    flex-shrink: 0;
}

.president-details-simple {
    flex: 1;
    min-width: 300px;
}

.president-details-simple h3 {
    font-size: 1.8em;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.president-title-simple {
    font-size: 1.1em;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.president-details-simple p {
    color: var(--text-dark);
    line-height: 1.8;
    text-align: justify;
}

/* Missions Section */
.missions-list-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.mission-item-simple {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.mission-icon-simple {
    font-size: 2.5em;
    flex-shrink: 0;
    line-height: 1;
}

.mission-item-simple h3 {
    color: var(--primary-green);
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 700;
}

.mission-item-simple p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* Visions Section */
.visions-list-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.vision-item-simple {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
}

.vision-item-simple h3 {
    color: var(--primary-green);
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.vision-item-simple p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* Partners Section */
.partners-list-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.partner-item-simple {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.partner-item-simple img {
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
}

.partner-item-simple span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1em;
}

.partner-item-simple p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95em;
}

/* Responsive pour About Page */
@media (max-width: 768px) {
    .president-info-simple {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .president-photo-simple {
        width: 150px;
        height: 150px;
    }
    
    .president-details-simple {
        text-align: center;
    }
    
    .missions-list-simple,
    .visions-list-simple,
    .partners-list-simple {
        grid-template-columns: 1fr;
    }
    
    .mission-item-simple {
        flex-direction: column;
        text-align: center;
    }
    
    .about-section h2 {
        font-size: 1.6em;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .flash-info-bar .container {
        flex-wrap: wrap;
        text-align: center;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-section {
        padding: 40px 0;
        min-height: 200px;
    }
    
    .hero-content {
        padding: 20px 30px;
    }
    
    .hero-title {
        font-size: 1.5em;
    }
    
    .hero-subtitle {
        font-size: 0.9em;
    }
    
    .news-grid-compact-full,
    .projects-grid-compact,
    .missions-grid-compact-full {
        grid-template-columns: 1fr;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .floating-agenda {
        bottom: 20px;
        right: 20px;
    }
    
    .agenda-popup {
        width: 300px;
        right: -50px;
    }
}

