/* ============================================= */
/* FOKAL-ONG - STYLES COMPLETS & MODERNES       */
/* ============================================= */

/* ===== VARIABLES ===== */
:root {
    --primary: #2e7d32;
    --primary-light: #4caf50;
    --primary-dark: #1b5e20;
    --primary-50: #e8f5e9;
    --primary-100: #c8e6c9;
    --secondary: #1565c0;
    --secondary-dark: #0d47a1;
    --dark: #1a237e;
    --white: #ffffff;
    --light: #f8faf8;
    --light-gray: #f0f2f0;
    --text: #2d3748;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 1.05rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================= */
/* ===== HEADER / NAVIGATION ===== */
/* ============================================= */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 30px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(46, 125, 50, 0.06);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 80px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-brand .logo {
    height: 50px;
    width: 50px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: var(--primary-50);
    padding: 4px;
    transition: var(--transition);
}

.nav-brand a:hover .logo {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 4px 15px rgba(46,125,50,0.2);
}

.nav-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-brand .brand-text .brand-name {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-brand .brand-text .brand-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
    -webkit-text-fill-color: var(--text-light);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
    align-items: center;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--primary);
    background: var(--primary-50);
}

.nav-menu li a:hover::before {
    transform: translateX(-50%) scale(1);
}

.nav-menu li a.active {
    color: var(--primary);
    background: var(--primary-50);
    font-weight: 700;
}

.nav-menu li a.active::before {
    transform: translateX(-50%) scale(1);
    width: 20px;
    height: 3px;
    border-radius: 3px;
    bottom: 4px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--primary-50);
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================= */
/* ===== HERO SECTION (ACCUEIL) - FULLSCREEN ===== */
/* ============================================= */
.hero {
    position: relative;
    min-height: 100vh; /* ← 100% de la hauteur de l'écran */
    height: 100vh; /* ← Force la hauteur exacte */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    /* Image de fond + dégradé */
    background: 
        linear-gradient(160deg, rgba(27, 94, 32, 0.80), rgba(13, 27, 94, 0.85)),
        url('https://images.unsplash.com/photo-1502082553048-f009c37129b9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(26, 35, 126, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(27, 94, 32, 0.70), rgba(13, 27, 94, 0.78));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    max-width: 900px;
    animation: heroFadeIn 1s ease;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4.2rem;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== INDICATEUR DE SCROLL ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 14px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.9);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* ===== FLÈCHE VERS LE BAS ===== */
.hero-arrow-down {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 2rem;
    animation: arrowBounce 2s infinite;
    cursor: pointer;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .hero-arrow-down {
        bottom: 80px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
}

/* ============================================= */
/* ===== BOUTONS ===== */
/* ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.btn:active::after {
    transform: scale(2);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(46,125,50,0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46,125,50,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46,125,50,0.3);
}

.btn-link {
    color: var(--primary);
    padding: 8px 0;
    border: none;
    background: none;
    font-weight: 600;
    border-radius: 0;
}

.btn-link i {
    transition: var(--transition);
}

.btn-link:hover i {
    transform: translateX(6px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ============================================= */
/* ===== BOUTON OUTLINE PRIMARY ===== */
/* ============================================= */

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.25);
}

.btn-outline-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

/* ============================================= */
/* ===== DOMAINES LINKS ===== */
/* ============================================= */

.domaines-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.domaines-links .btn-outline-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 50px;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--text-light);
}

.domaines-links .btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.25);
}

.domaines-links .btn-outline-primary:active {
    transform: translateY(-1px);
}

/* Version avec icône */
.btn-outline-primary i {
    font-size: 1rem;
    transition: var(--transition);
}

.btn-outline-primary:hover i {
    transform: translateX(3px);
}

/* ============================================= */
/* ===== RESPONSIVE DOMAINES LINKS ===== */
/* ============================================= */

@media (max-width: 768px) {
    .domaines-links {
        gap: 10px;
    }
    
    .domaines-links .btn-outline-primary {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .domaines-links {
        flex-direction: column;
        align-items: center;
    }
    
    .domaines-links .btn-outline-primary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ============================================= */
/* ===== SECTIONS ===== */
/* ============================================= */
.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.separator {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 16px auto 0;
    border-radius: 3px;
    position: relative;
}

.separator::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -4px;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--white);
}

.bg-light {
    background: var(--white);
}

.bg-gray {
    background: var(--light);
}

/* ============================================= */
/* ===== SECTION: PRÉSENTATION ===== */
/* ============================================= */
.presentation-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.presentation-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* ============================================= */
/* ===== SECTION: VISION & MISSION ===== */
/* ============================================= */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.vm-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(46,125,50,0.05);
    position: relative;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(46,125,50,0.1);
}

.vm-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    background: var(--primary-50);
    transition: var(--transition);
}

.vm-card:hover .vm-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.vm-card h3 {
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.vm-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.vm-card ul li {
    margin-bottom: 14px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
}

.vm-card ul li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================= */
/* ===== SECTION: DOMAINES D'INTERVENTION ===== */
/* ============================================= */
.domaines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.domaine-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid var(--primary);
    position: relative;
}

.domaine-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.domaine-card .domaine-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: var(--primary-50);
    transition: var(--transition);
}

.domaine-card:hover .domaine-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.domaine-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.domaine-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== DOMAINES DÉTAILLÉS ===== */
.domaines-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.domaines-intro .intro-text {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.9;
}

.domaine-detail {
    margin-bottom: 50px;
    padding: 50px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(46,125,50,0.06);
}

.domaine-detail:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(46,125,50,0.12);
}

.domaine-header {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 30px;
}

.domaine-icon-large {
    font-size: 2.8rem;
    color: var(--primary);
    width: 100px;
    height: 100px;
    background: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.domaine-detail:hover .domaine-icon-large {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.domaine-title h2 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.domaine-body p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.sous-domaines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.sous-domaine {
    padding: 20px 24px;
    background: var(--light);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-light);
    transition: var(--transition);
}

.sous-domaine:hover {
    background: var(--primary-50);
    transform: translateX(5px);
}

.sous-domaine h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sous-domaine h4 i {
    color: var(--primary);
    font-size: 1.1rem;
}

.sous-domaine p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-light);
}

/* ============================================= */
/* ===== SECTION: VALEURS ===== */
/* ============================================= */
.valeurs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.valeur-item {
    background: var(--white);
    padding: 16px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.valeur-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-dark);
}

.valeur-item i {
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.valeur-item:hover i {
    color: var(--white);
}

.valeurs-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.valeur-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(46,125,50,0.05);
}

.valeur-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46,125,50,0.1);
}

.valeur-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: var(--primary-50);
    transition: var(--transition);
}

.valeur-card:hover .valeur-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.valeur-card h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.valeur-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    margin-bottom: 0;
}

/* ============================================= */
/* ===== SECTION: PARTENAIRES ===== */
/* ============================================= */

.partenaires {
    padding: 80px 0;
}

.partenaires-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.partenaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.partenaire-card {
    background: var(--white);
    padding: 30px 20px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(46, 125, 50, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 180px;
    justify-content: center;
}

.partenaire-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 125, 50, 0.15);
}

.partenaire-logo {
    max-width: 100px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 8px;
    filter: grayscale(0%);
    transition: var(--transition);
}

.partenaire-card:hover .partenaire-logo {
    transform: scale(1.05);
}

.partenaire-nom {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 40px;
}

.partenaire-sigle {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-50);
    padding: 3px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* Version avec icônes (fallback si pas d'images) */
.partenaire-card.no-logo .partenaire-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

/* ============================================= */
/* ===== RESPONSIVE PARTENAIRES ===== */
/* ============================================= */

@media (max-width: 768px) {
    .partenaires-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .partenaire-card {
        padding: 20px 15px;
        min-height: 140px;
    }
    
    .partenaire-logo {
        max-width: 70px;
        max-height: 50px;
    }
    
    .partenaire-nom {
        font-size: 0.7rem;
        max-height: 32px;
    }
    
    .partenaire-sigle {
        font-size: 0.6rem;
        padding: 2px 10px;
    }
}

@media (max-width: 480px) {
    .partenaires-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partenaire-card {
        padding: 15px 10px;
        min-height: 120px;
    }
    
    .partenaire-logo {
        max-width: 60px;
        max-height: 40px;
    }
    
    .partenaire-nom {
        display: none;
    }
    
    .partenaire-sigle {
        font-size: 0.55rem;
        padding: 2px 8px;
    }
}

/* ============================================= */
/* ===== SECTION: RÉALISATIONS ===== */
/* ============================================= */
.realisations-list {
    max-width: 850px;
    margin: 0 auto;
}

.realisation-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    align-items: flex-start;
}

.realisation-item:hover {
    padding-left: 15px;
}

.realisation-item:last-child {
    border-bottom: none;
}

.realisation-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.realisation-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.realisation-item p strong {
    color: var(--text);
}

/* ============================================= */
/* ===== PUBLICATIONS ===== */
/* ============================================= */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.publication-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(46,125,50,0.05);
}

.publication-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(46,125,50,0.1);
}

.publication-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.publication-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.publication-card:hover .publication-image img {
    transform: scale(1.05);
}

.publication-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    z-index: 1;
    text-transform: uppercase;
}

.publication-content {
    padding: 28px;
}

.publication-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--primary-dark);
}

.publication-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.publication-excerpt {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================= */
/* ===== PAGE HEADER ===== */
/* ============================================= */
.page-header {
    background: linear-gradient(160deg, var(--primary-dark), var(--secondary-dark));
    color: var(--white);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2.6rem;
}

.page-header p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 0;
}

/* ============================================= */
/* ===== SECTION: BUREAUX ===== */
/* ============================================= */
.bureaux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bureau-card {
    background: var(--white);
    padding: 30px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.bureau-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bureau-card h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bureau-card h3 i {
    color: var(--primary);
}

.bureau-card p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.bureau-card p strong {
    color: var(--text);
}

.bureau-card p i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.bureau-card em {
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* ============================================= */
/* ===== SECTION: CONTACT ===== */
/* ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-tagline {
    font-style: italic;
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.15rem;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(46,125,50,0.05);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
    border-color: rgba(46,125,50,0.1);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-text h3 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text);
}

.contact-text p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-text a {
    color: var(--primary);
}

.contact-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-message {
    margin-top: 40px;
    padding: 28px;
    background: var(--primary-50);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 500;
}

.contact-message p {
    margin: 0;
    color: var(--primary-dark);
}

/* ===== FORMULAIRE ===== */
.contact-form-container h2 {
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 22px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    font-family: inherit;
    color: var(--text);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(46,125,50,0.08);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== ALERTS ===== */
.alert {
    padding: 18px 24px;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: var(--primary-50);
    color: var(--primary-dark);
    border: 1px solid var(--primary-100);
}

.alert-error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f8d7da;
}

/* ============================================= */
/* ===== SECTION: CTA ===== */
/* ============================================= */
.cta {
    background: linear-gradient(160deg, var(--primary-dark), var(--secondary-dark));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(76,175,80,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(26,35,126,0.1) 0%, transparent 50%);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 40px;
    font-size: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================= */
/* ===== FILTRES ===== */
/* ============================================= */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 45px;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(46,125,50,0.3);
}

.filter-btn.active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ============================================= */
/* ===== EMPTY STATE ===== */
/* ============================================= */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--border);
    display: block;
}

/* ============================================= */
/* ===== FOOTER ===== */
/* ============================================= */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 45px;
    padding-bottom: 45px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 22px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 14px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 3px;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(46,125,50,0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.9rem;
}

/* ============================================= */
/* ===== UTILITAIRES ===== */
/* ============================================= */
.text-center { text-align: center; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }
.mb-4 { margin-bottom: 40px; }
.m-2 { margin: 10px; }
.m-3 { margin: 15px; }

/* ============================================= */
/* ===== RESPONSIVE ===== */
/* ============================================= */
@media (max-width: 1024px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }
    .hero h1 { font-size: 3.2rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 66px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        box-shadow: var(--shadow-lg);
        padding: 10px 0;
        border-radius: 0 0 var(--radius) var(--radius);
        border-top: 1px solid var(--border);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        padding: 14px 24px;
        border-radius: 0;
        font-size: 1rem;
    }
    
    .nav-menu li a::before {
        display: none;
    }
    
    .nav-menu li a.active {
        background: var(--primary-50);
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .vm-grid,
    .domaines-grid,
    .valeurs-grid-full,
    .publications-grid,
    .bureaux-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .domaine-header {
        flex-direction: column;
        text-align: center;
    }
    
    .domaine-detail {
        padding: 30px 20px;
    }
    
    .sous-domaines {
        grid-template-columns: 1fr;
    }
    
    
    .domaine-detail .domaine-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .domaine-title h2 {
        font-size: 1.4rem;
    }
    
    .page-header {
        padding: 60px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 1.6rem;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .btn-lg {
        padding: 16px 32px;
    }
    
    .publication-image {
        height: 200px;
    }
    
    .valeurs-grid {
        gap: 12px;
    }
    
    .valeur-item {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        height: 65px;
        padding: 0 16px;
    }
    
    .nav-brand .logo {
        height: 38px;
        width: 38px;
    }
    
    .nav-brand .brand-text .brand-name {
        font-size: 1rem;
    }
    
    .nav-brand .brand-text .brand-sub {
        font-size: 0.6rem;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    
    .section-header h2 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .domaine-detail {
        padding: 20px 16px;
    }
    
    .bureau-card {
        padding: 20px 18px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .publication-content {
        padding: 20px;
    }
    
    .publication-image {
        height: 180px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .partenaire-item {
        padding: 14px 16px;
    }
    
    .partenaire-item span {
        font-size: 0.85rem;
    }
}


/* ============================================= */
/* ===== SECTION: VISION (PAGE À PROPOS) ===== */
/* ============================================= */
.vision-section {
    text-align: center;
}

.vision-content {
    max-width: 850px;
    margin: 0 auto;
}

.vision-icon-large {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 30px;
    display: inline-block;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.08);
        opacity: 0.8;
    }
}

.vision-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* ============================================= */
/* ===== SECTION: MISSION ===== */
/* ============================================= */
.mission-list {
    max-width: 900px;
    margin: 0 auto;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    padding: 22px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.mission-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border-left-color: var(--primary);
}

.mission-item i {
    color: var(--primary);
    font-size: 1.6rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: var(--transition);
}

.mission-item:hover i {
    color: var(--primary-light);
    transform: scale(1.2);
}

.mission-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.mission-item p strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* ============================================= */
/* ===== SECTION: VISION & MISSION (ALTERNATIVE) ===== */
/* Pour la page d'accueil qui utilise .vm-card */
/* ============================================= */
.vm-card ul li {
    margin-bottom: 12px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.98rem;
    line-height: 1.6;
}

.vm-card ul li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================= */
/* ===== GALERIE LIGHTBOX ===== */
/* ============================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    border: none;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(255,255,255,0.2);
    color: #ff4444;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    background: rgba(0,0,0,0.5);
    padding: 8px 22px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================= */
/* ===== GALERIE PAGE ===== */
/* ============================================= */
.gallery-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 14px 24px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    display: inline-block;
}

.gallery-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.gallery-info i {
    color: var(--primary);
    margin-right: 6px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    color: var(--white);
    width: 100%;
    transform: translateY(15px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content i {
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: block;
}

.gallery-overlay-content h4 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
    font-weight: 600;
}

.gallery-category {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.gallery-date {
    display: block;
    font-size: 0.82rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.gallery-link {
    display: inline-block;
    color: #a5d6a7;
    text-decoration: underline;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
}

.gallery-link:hover {
    color: var(--white);
}

/* ============================================= */
/* ===== PAGINATION ===== */
/* ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 22px;
    background: var(--white);
    color: var(--text);
    border: 2px solid var(--border);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}

.pagination-number:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-number.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(46,125,50,0.25);
}

.pagination-dots {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================= */
/* ===== PAGE DÉTAIL PUBLICATION ===== */
/* ============================================= */
.publication-detail {
    background: var(--light);
}

.publication-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.publication-main {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.publication-main-image {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.publication-main-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.publication-main-image:hover img {
    transform: scale(1.03);
}

.publication-main-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    padding: 50px 24px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.publication-main-image:hover .image-overlay {
    opacity: 1;
}

/* Résumé */
.publication-resume {
    background: var(--primary-50);
    border-left: 4px solid var(--primary);
    padding: 28px 32px;
    margin: 28px 32px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    position: relative;
}

.publication-resume i {
    position: absolute;
    top: -18px;
    left: 24px;
    font-size: 32px;
    color: var(--primary);
    background: var(--white);
    padding: 6px;
    border-radius: 50%;
}

.publication-resume p {
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.8;
    margin: 0;
}

/* Description complète */
.publication-description {
    padding: 0 32px 32px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* Galerie dans la publication */
.publication-gallery {
    padding: 32px;
    border-top: 1px solid var(--border);
}

.publication-gallery h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.publication-gallery h2 i {
    color: var(--primary);
}

.publication-gallery .gallery-grid {
    margin: 0;
}

.publication-gallery .gallery-item {
    height: 220px;
}

/* Partage */
.publication-share {
    padding: 28px 32px;
    border-top: 1px solid var(--border);
    background: #fafdfa;
}

.publication-share h3 {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 1rem;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 18px rgba(0,0,0,0.2);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.copy { background: #6c757d; }
.share-btn.copy.copied { background: var(--primary); }

/* Sidebar */
.publication-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

.sidebar-card h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h3 i {
    color: var(--primary);
}

.sidebar-info {
    list-style: none;
    padding: 0;
}

.sidebar-info li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text-light);
}

.sidebar-info li:last-child {
    border-bottom: none;
}

.sidebar-info li i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.sidebar-info li span {
    font-weight: 600;
    color: var(--text);
}

.sidebar-info li a {
    color: var(--primary);
    font-weight: 500;
}

.sidebar-info li a:hover {
    text-decoration: underline;
}

/* Autres publications */
.autres-pubs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.autre-pub-item {
    display: flex;
    gap: 14px;
    text-decoration: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.autre-pub-item:hover {
    background: var(--light);
    border-color: var(--border);
}

.autre-pub-item img {
    width: 85px;
    height: 65px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.autre-pub-info h4 {
    font-size: 0.93rem;
    color: var(--text);
    margin-bottom: 5px;
    line-height: 1.3;
    font-weight: 600;
}

.autre-pub-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* En-tête publication */
.page-header-publication {
    text-align: left;
    padding: 60px 0 100px;
}

.publication-header-content h1 {
    font-size: 2.2rem;
    margin-top: 18px;
    text-transform: none;
    letter-spacing: 0;
}

.publication-meta-top {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.publication-category-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 7px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.publication-category-link:hover {
    background: rgba(255,255,255,0.25);
    color: var(--white);
}

.publication-date-header {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================= */
/* ===== RESPONSIVE PUBLICATION ===== */
/* ============================================= */
@media (max-width: 900px) {
    .publication-layout {
        grid-template-columns: 1fr;
        margin-top: -20px;
    }
    
    .publication-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .publication-sidebar .btn-block {
        grid-column: 1 / -1;
    }
    
    .publication-resume,
    .publication-description,
    .publication-gallery,
    .publication-share {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .publication-header-content h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .publication-sidebar {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .gallery-item {
        height: 200px;
    }
}

/* ============================================= */
/* ===== RESPONSIVE GALERIE ===== */
/* ============================================= */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .lightbox-close {
        font-size: 2.5rem;
        top: 16px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .gallery-item {
        height: 180px;
        border-radius: var(--radius-sm);
    }
    
    .gallery-overlay {
        padding: 15px;
    }
    
    .gallery-overlay-content h4 {
        font-size: 0.9rem;
    }
    
    .pagination {
        gap: 8px;
    }
    
    .pagination-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}


/* ============================================= */
/* ===== SECTION: À PROPOS (ABOUT) ===== */
/* ============================================= */

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 20px 0;
}

.about-text h2 {
    color: var(--primary-dark);
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.about-text .tagline {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.about-text .sub-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-light);
    margin-bottom: 24px;
    font-weight: 500;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text p strong {
    color: var(--text);
    font-weight: 700;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(46, 125, 50, 0.05) 0%,
        rgba(46, 125, 50, 0.10) 100%
    );
    pointer-events: none;
}

.about-image .badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
    z-index: 1;
}

/* Animation au survol de l'image */
.about-image .image-overlay-hover {
    position: absolute;
    inset: 0;
    background: rgba(27, 94, 32, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image:hover .image-overlay-hover {
    opacity: 1;
}

.about-image .image-overlay-hover i {
    font-size: 3rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.about-image:hover .image-overlay-hover i {
    transform: scale(1);
}

/* ============================================= */
/* ===== RESPONSIVE ABOUT ===== */
/* ============================================= */

@media (max-width: 992px) {
    .about-intro {
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text .tagline {
        font-size: 1.1rem;
    }
    
    .about-text .sub-tagline {
        font-size: 1rem;
    }
    
    .about-text p {
        font-size: 0.98rem;
        line-height: 1.7;
    }
    
    .about-image img {
        max-height: 350px;
    }
    
    .about-image .badge {
        bottom: 15px;
        right: 15px;
        padding: 8px 18px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .about-intro {
        gap: 25px;
        padding: 10px 0;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-text .tagline {
        font-size: 1rem;
    }
    
    .about-text .sub-tagline {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    
    .about-text p {
        font-size: 0.92rem;
        line-height: 1.6;
    }
    
    .about-image {
        border-radius: var(--radius);
    }
    
    .about-image img {
        max-height: 250px;
    }
    
    .about-image .badge {
        bottom: 12px;
        right: 12px;
        padding: 6px 14px;
        font-size: 0.65rem;
        border-radius: 30px;
    }
    
    .about-image .image-overlay-hover i {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}


/* ============================================= */
/* ===== PAGE HEADER AVEC IMAGE DE FOND ===== */
/* ============================================= */

/* Style de base pour tous les page-header */
.page-header {
    position: relative;
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

/* Page header AVEC image de fond (pour À propos) */
.page-header-about {
    background: 
        linear-gradient(160deg, rgba(27, 94, 32, 0.65), rgba(13, 27, 94, 0.75)),
        url('https://images.unsplash.com/photo-1502082553048-f009c37129b9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed; /* Effet parallax */
}

/* Overlay pour assombrir l'image */
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg, 
        rgba(27, 94, 32, 0.55) 0%, 
        rgba(13, 27, 94, 0.65) 100%
    );
    z-index: 1;
}

/* Contenu au-dessus de l'overlay */
.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-content {
    animation: headerFadeIn 0.8s ease;
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
}

/* Ligne décorative sous le titre */
.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 2px;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* Effet de vague en bas */
.page-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--light);
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 2;
}

/* ===== RESPONSIVE PAGE HEADER ===== */
@media (max-width: 768px) {
    .page-header {
        padding: 70px 0 60px;
        min-height: 300px;
    }
    
    .page-header-about {
        background-attachment: scroll; /* Désactiver le parallax sur mobile */
    }
    
    .page-header h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .page-header h1::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }
    
    .page-header p {
        font-size: 1rem;
        margin-top: 16px;
    }
    
    .page-header::after {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 50px 0 45px;
        min-height: 250px;
    }
    
    .page-header h1 {
        font-size: 1.7rem;
        letter-spacing: 1px;
    }
    
    .page-header h1::after {
        width: 40px;
        height: 2px;
        bottom: -6px;
    }
    
    .page-header p {
        font-size: 0.9rem;
        margin-top: 12px;
    }
    
    .page-header::after {
        height: 30px;
    }
}

/* ============================================= */
/* ===== PAGE HEADER DOMAINES ===== */
/* ============================================= */

/* Page header avec image de fond (pour Domaines) */
.page-header-domaines {
    background: 
        linear-gradient(160deg, rgba(27, 94, 32, 0.65), rgba(13, 27, 94, 0.75)),
        url('https://images.unsplash.com/photo-1448375240586-882707db888b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

/* Si vous voulez une autre image pour les domaines */
/* Option : paysage africain */
/*
.page-header-domaines {
    background: 
        linear-gradient(160deg, rgba(27, 94, 32, 0.65), rgba(13, 27, 94, 0.75)),
        url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
*/

@media (max-width: 768px) {
    .page-header-domaines {
        background-attachment: scroll;
    }
}

/* ============================================= */
/* ===== BOUTONS DOMAINES ===== */
/* ============================================= */
.domaines-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    background: transparent;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46,125,50,0.2);
}
/* ============================================= */
/* ===== PAGE HEADER RÉALISATIONS ===== */
/* ============================================= */

/* Page header avec image de fond (pour Réalisations) */
.page-header-realisations {
    background: 
        linear-gradient(160deg, rgba(27, 94, 32, 0.60), rgba(13, 27, 94, 0.70)),
        url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .page-header-realisations {
        background-attachment: scroll;
    }
}

/* ============================================= */
/* ===== ICÔNE VIDÉO SUR CARTE ===== */
/* ============================================= */
.publication-video-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(244, 67, 54, 0.9);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1;
    animation: videoPulse 2s infinite;
}

@keyframes videoPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(244, 67, 54, 0); }
}

/* ============================================= */
/* ===== IMAGE PLACEHOLDER ===== */
/* ============================================= */
.publication-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

/* ============================================= */
/* ===== RESPONSIVE RÉALISATIONS ===== */
/* ============================================= */
@media (max-width: 768px) {
    .publication-video-icon {
        width: 28px;
        height: 28px;
        font-size: 10px;
        top: 12px;
        left: 12px;
    }
}

@media (max-width: 480px) {
    .publication-video-icon {
        width: 24px;
        height: 24px;
        font-size: 9px;
        top: 8px;
        left: 8px;
    }
}

/* ============================================= */
/* ===== PAGE HEADER GALERIE ===== */
/* ============================================= */

.page-header-galerie {
    background: 
        linear-gradient(160deg, rgba(27, 94, 32, 0.55), rgba(13, 27, 94, 0.65)),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .page-header-galerie {
        background-attachment: scroll;
    }
}

/* ============================================= */
/* ===== PAGE HEADER CONTACT ===== */
/* ============================================= */

.page-header-contact {
    background: 
        linear-gradient(160deg, rgba(27, 94, 32, 0.60), rgba(13, 27, 94, 0.70)),
        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .page-header-contact {
        background-attachment: scroll;
    }
}