/* ===================================
   ACTIVITÉS PAGE STYLES
   =================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95), rgba(59, 130, 246, 0.85)), 
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.7);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

/* Activities Intro */
.activities-intro {
    padding: 60px 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
}

.intro-text strong {
    color: #1a2332;
    font-weight: 600;
}

/* Activities Grid */
.activities-grid-section {
    padding: 80px 0;
    background: #f9fafb;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.activity-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 20px;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.activity-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.activity-content h3 {
    font-size: 1.25rem;
    color: #1a2332;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.activity-content p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Sectors Section */
.sectors-section {
    padding: 80px 0;
    background: white;
}

.sectors-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sectors-section .section-header h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 15px;
}

.sectors-section .section-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sector-tag {
    background: linear-gradient(135deg, #1a2332, #253347);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: default;
}

.sector-tag:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332, #253347);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-large i {
    margin-right: 10px;
}

/* Active nav link */
.nav-links a.active {
    color: #3b82f6;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero .hero-subtitle {
        font-size: 1rem;
    }

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

    .activity-card {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .activity-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .activity-content h3 {
        font-size: 1.1rem;
    }

    .sectors-section .section-header h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .sector-tag {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .intro-text {
        font-size: 1rem;
    }

    .activities-grid-section,
    .sectors-section,
    .cta-section {
        padding: 50px 0;
    }
}
