 :root {
            --primary-color: #004080;
            --secondary-color: #0055aa;
            --accent-color: #fdbd33;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --shadow-light: rgba(0, 0, 0, 0.1);
            --shadow-medium: rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Quicksand', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Section communes */
        .section-modern {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .section-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 64, 128, 0.02) 0%, rgba(255, 215, 0, 0.05) 100%);
            z-index: -1;
        }

        .section-header {
            margin-bottom: 60px;
            position: relative;
        }

        
        /* .subtitle {
            color: var(--accent-color);
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
        } */

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
        }

        /* Section Artistes */
        .artistes-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .artiste-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            background: white;
            box-shadow: 0 10px 30px var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            height: 100%;
        }

        .artiste-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 64, 128, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .artiste-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px var(--shadow-medium);
        }

        .artiste-card:hover::before {
            opacity: 1;
        }

        .artiste-image {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .artiste-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .artiste-card:hover .artiste-image img {
            transform: scale(1.1);
        }

        .artiste-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 64, 128, 0.8));
            color: white;
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .artiste-card:hover .artiste-overlay {
            transform: translateY(0);
        }

        .artiste-card .card-body {
            padding: 30px 25px;
            position: relative;
            z-index: 2;
        }

        .artiste-card .card-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .artiste-card .card-text {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .btn-artiste {
            background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
            border: none;
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-artiste a:hover {
           color: black; 
    
        }


        .btn-artiste::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-artiste:hover::before {
            left: 100%;
        }

        .btn-artiste:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 64, 128, 0.3);
        }

        /* Section Activités */
        .activites-section {
            background: white;
            position: relative;
        }

        .activites-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23004080' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: 0;
        }

        .activite-card {
            border: none;
            border-radius: 25px;
            overflow: hidden;
            background: white;
            box-shadow: 0 15px 35px var(--shadow-light);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            height: 100%;
        }

        .activite-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px var(--shadow-medium);
        }

        .activite-image {
            position: relative;
            overflow: hidden;
        }

        .activite-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .activite-card:hover .activite-image img {
            transform: scale(1.05);
        }

        .activite-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--accent-color), #ffed4a);
            color: var(--primary-color);
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .activite-card .card-body {
            padding: 35px 30px;
            position: relative;
        }

        .activite-card .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .activite-date {
            background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .activite-card .card-text {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .btn-activite {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-activite::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn-activite:hover::before {
            left: 0;
        }

        .btn-activite:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 64, 128, 0.3);
        }

        /* Animations et effets */
        .floating-icon {
            position: absolute;
            opacity: 0.1;
            font-size: 4rem;
            color: var(--primary-color);
            animation: float 6s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            top: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-icon:nth-child(3) {
            bottom: 20%;
            left: 15%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-modern {
                padding: 60px 0;
            }
            
            .artiste-card, .activite-card {
                margin-bottom: 30px;
            }
        }