/* Hero Section - CORRIGÉ */
.palmares-hero {
    background: linear-gradient(135deg, #6ac27e 0%, #1e7e34 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* AJOUTEZ CE CONTENEUR */
.palmares-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.palmares-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}
.hero-content{
  max-width: 1172px;
}
.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

        /* Section Actualités - Design Unusual */
        .actualites-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .actualites-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }

        /* Carte Actualité - Design Créatif */
        .news-card-unusual {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            border: 1px solid rgba(44, 162, 70, 0.1);
        }

        @media (min-width: 768px) {
            .news-card-unusual {
                flex-direction: row;
                height: auto;
            }
            
            .news-card-unusual:nth-child(even) {
                flex-direction: row-reverse;
            }
        }

        .news-card-unusual:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .news-visual {
            position: relative;
            overflow: hidden;
            flex: 0 0 40%;
            min-height: 250px;
        }

        @media (min-width: 768px) {
            .news-visual {
                min-height: auto;
            }
        }

        .news-image {
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .news-card-unusual:hover .news-image {
            transform: scale(1.05);
        }

        .news-date-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--secondary);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }

        .news-category {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 6px 12px;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .news-content-unusual {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .news-title-unusual {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary);
            line-height: 1.3;
            position: relative;
            padding-bottom: 15px;
        }

        .news-title-unusual:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }

        .news-desc-unusual {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 1rem;
            flex-grow: 1;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

      

        .news-btn-unusual {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            box-shadow: 0 4px 10px rgba(188, 177, 34, 0.3);
        }

        .news-btn-unusual:hover {
            background: #a8951e;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(188, 177, 34, 0.4);
        }

        .news-btn-unusual i {
            transition: transform 0.3s ease;
        }

        .news-btn-unusual:hover i {
            transform: translateX(5px);
        }

        /* Section Pagination */
        .pagination-section {
            padding: 40px 0;
            text-align: center;
        }

        .pagination {
            display: inline-flex;
            gap: 10px;
            list-style: none;
        }

        .page-item {
            margin: 0;
        }

        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

        .page-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .page-link.active {
            background: var(--secondary);
            color: white;
        }

    



  

        .newsletter-form {
            display: flex;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-family: 'Montserrat', sans-serif;
        }

        .newsletter-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-btn:hover {
            background-color: #a8951e;
        }


        /* Responsive */
        @media (max-width: 768px) {
            .news-hero h1 {
                font-size: 2.8rem;
            }
            
            .news-title-unusual {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .news-hero h1 {
                font-size: 2.2rem;
            }
            
            .news-content-unusual {
                padding: 20px;
            }
            
            .news-title-unusual {
                font-size: 1.3rem;
            }
        }