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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* Header styles are now in header.css */

/* ============================================
   ACTUALITÉS HEADER
   ============================================ */

.actualites-header {
    background: linear-gradient(135deg, #000000 0%, #1AA45A 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.actualites-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.actualites-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

/* ============================================
   ACTUALITÉS CONTENT
   ============================================ */

.actualites-content {
    padding: 60px 40px;
    background: #f8f9fa;
    min-height: 60vh;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #000000 0%, #1AA45A 100%);
}

.article-content {
    padding: 25px;
}

.article-date {
    font-size: 12px;
    color: #666666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-resume {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-link {
    color: #1AA45A;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #158a4d;
}

.loading-message {
    text-align: center;
    padding: 60px 20px;
    color: #666666;
    font-size: 18px;
}

.no-articles {
    text-align: center;
    padding: 60px 20px;
    color: #666666;
}

.no-articles h3 {
    color: #000000;
    margin-bottom: 15px;
}

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

.footer-section {
    background: #000000;
    color: #ffffff;
    position: relative;
    margin-top: 20px;
}

.flags-row {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.flag-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.flag-icon:hover {
    transform: scale(1.2);
    border-color: #1AA45A;
}

.footer-main {
    padding: 60px 40px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: none;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icon:hover {
    background: #1AA45A;
    transform: translateY(-3px);
    color: #ffffff;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1AA45A;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #1AA45A;
    padding-left: 5px;
}

.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

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

.footer-contacts a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-contacts a:hover {
    color: #1AA45A;
}

.footer-copyright {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

/* Scroll to Top styles are now in scroll-to-top.css */

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px;
    }

    .actualites-header {
        padding: 60px 20px;
    }

    .actualites-title {
        font-size: 32px;
    }

    .actualites-subtitle {
        font-size: 16px;
    }

    .actualites-content {
        padding: 40px 20px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-title {
        font-size: 20px;
    }
}

