@font-face {
    font-family: 'WeissenhofGrotesk';
    src: url('../fonts/WeissenhofGrotesk-Regular.woff2') format('woff2');
    font-weight: 400;
    /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'WeissenhofGrotesk';
    src: url('../fonts/WeissenhofGrotesk-Light.woff2') format('woff2');
    font-weight: 300;
    /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'WeissenhofGrotesk';
    src: url('../fonts/WeissenhofGrotesk-Medium.woff2') format('woff2');
    font-weight: 500;
    /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'WeissenhofGrotesk';
    src: url('../fonts/WeissenhofGrotesk-Bold.woff2') format('woff2');
    font-weight: 700;
    /* Bold */
    font-style: normal;
}

:root {
    --bulma-text: #212121;
    
    /* Variables typographiques WeissenhofGrotesk */
    --font-family-primary: 'WeissenhofGrotesk', sans-serif;
    
    /* Font weights (seulement les poids disponibles) */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    
    /* Hiérarchie typographique */
    --font-size-h1: 2.5rem;      /* Hero titles */
    --font-size-h2: 2rem;        /* Section titles */
    --font-size-h3: 1.5rem;      /* Subsection titles */
    --font-size-h4: 1.25rem;     /* Card titles */
    --font-size-body: 1rem;      /* Body text */
    --font-size-small: 0.875rem; /* Meta, captions */
    --font-size-tiny: 0.75rem;   /* Tags, labels */
    
    /* Spacing */
    --letter-spacing-wide: 0.5px;
    --line-height-tight: 1.3;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.6;
}

/* Force white background globally */
html,
body {
    background-color: white !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove forcing white on containers to allow section-specific backgrounds */
.container,
.section,
.columns,
.column {
    background-color: transparent !important;
}

/* Allow heroes to have their own backgrounds (images, colors) */
.hero {
    background-color: initial !important;
}

/* Exception pour le burger hamburger - ne pas forcer le background blanc */
.navbar-burger span {
    background-color: #212121 !important;
}

/* Exception pour project-feature - défini plus bas avec .project-feature-box */

/* Exception pour les icônes de service qui ont besoin de leur background */
.service-number {
    background-color: #212121 !important;
    color: white !important;
}

body,
button,
input,
textarea,
select {
    font-family: 'WeissenhofGrotesk', sans-serif;
}

.has-text-weight-light {
    font-weight: 300;
    /* Utilise WeissenhofGrotesk-Light */
}

/* Bulma utilise .has-text-weight-semibold pour le poids medium */
.has-text-weight-semibold {
    font-weight: 500;
    /* Utilise WeissenhofGrotesk-Medium */
}

b,
strong,
.has-text-weight-bold,
.has-text-weight-extrabold {
    font-weight: 700;
    /* Utilise WeissenhofGrotesk-Bold */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-regular);
    font-family: var(--font-family-primary);
}

/* Styles du breadcrumb amélioré */
.breadcrumb-container {
    border-bottom: 1px solid #e8e8e8;
}

.breadcrumb-container .breadcrumb {
    margin-bottom: 0;
}

.breadcrumb {
    --bulma-breadcrumb-item-color: #6b7280 !important;
    --bulma-breadcrumb-item-hover-color: #212121 !important;
    --bulma-breadcrumb-item-active-color: #212121 !important;
    --bulma-breadcrumb-item-separator-color: #9ca3af !important;
}

.breadcrumb a:hover {
    color: #212121 !important;
    text-decoration: none;
}

/* Override de la couleur du menu actif Bulma */
.navbar-item.is-active {
    background-color: #f8f8f8 !important; /* Gris très clair */
}

.ligne-basse {
    border-bottom: 4px solid #212121 !important;
}

.ligne-haute {
    border-top: 4px solid #212121 !important;
}

.mainHeader {
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;

    border-bottom: 4px solid #212121;
}


/* Images responsive avec Bulma */
.full-height-image {
    height: calc(100vh - 170px);
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive pour mobile */
@media screen and (max-width: 768px) {
    .full-height-image {
        height: 60vh; /* Plus adapté au mobile */
        min-height: 300px;
    }
}

/* Classes Bulma pour images avec ratio */
.image.is-16by9 .has-ratio,
.image.is-4by3 .has-ratio,
.image.is-3by2 .has-ratio {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Optimisation image-pair legacy (remplacé par Bulma columns dans projet.php) */
.image-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.image-pair img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .image-pair {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .image-pair img {
        height: 200px;
    }
}

.image-container {
    position: relative;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    /* Maintains aspect ratio */
}


.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
}

.thumb img {
    width: 100%;
    height: 200px;
    /* Ajustez la hauteur selon vos besoins */
    object-fit: cover;
}

.tile {
    background-color: white !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Conteneur relatif pour positionner l'image */
    overflow: hidden;
    /* Masque les débordements d'image */
}



/* Remove white overlay for non-tile images */
.image-container .overlay {
    background: transparent !important;
}

/* Personnalisation des cards projets similaires et projets phares */
.projets-similaires .card,
.projets-similaires .columns .card,
.container.projets-similaires .card,
.projets-phares .card {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.projets-similaires .card img,
.projets-similaires .card .image,
.projets-phares .card img,
.projets-phares .card .image {
    border-radius: 0 !important;
}

.projets-similaires .card .title,
.projets-phares .card .title {
    text-transform: uppercase;
}




.tile.grande {
    aspect-ratio: 1.486;
    /* Ratio de 3:2 pour les grandes tuiles */
    width: 100%;
    /* Utilise la largeur complète du conteneur */
    height: auto;
}

.tile.verticale {
    aspect-ratio: 0.7075;
    /* Ratio de 3:2 pour les grandes tuiles */
    width: 100%;
    /* Utilise la largeur complète du conteneur */
    height: auto;
}

.tile.petite {
    aspect-ratio: 3 / 2;
    /* Ratio de 3:2 pour les grandes tuiles */
    width: 100%;
    /* Utilise la largeur complète du conteneur */
    height: auto;
}

.tile img {
    width: 100%;
    /* Largeur complète de la tuile */
    height: 100%;
    /* Hauteur complète de la tuile */
    object-fit: cover;
    /* Garantit que l'image couvre la tuile sans déformation */
    position: absolute;
    /* Positionne l'image correctement dans la tuile */
}

.page-header {
    padding-top: 0.2rem;
    /* Add minimal space above the title */
}

/* ======================================
   HERO SECTION AMÉLIORÉE
   ====================================== */

.hero-section {
    padding: 4rem 0 5rem 0;
    background-color: white;
    border-bottom: 1px solid #f5f5f5;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    padding-right: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #212121;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.4;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    margin-top: 2rem;
}

/* ======================================
   VARIANTES DE HERO
   ====================================== */

/* OPTION 1: Hero avec vraie image de fond */

.hero-bulma-variant {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 100vh; /* Vrai plein écran */
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-bulma-variant .hero-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4rem; /* Plus d'espace pour compenser le header et assurer la visibilité */
    pointer-events: none; /* Permet de cliquer à travers la zone transparente */
}


.scroll-indicator {
    pointer-events: auto; /* Réactive les clics sur l'indicateur */
}

/* Indicateur de scroll élégant */
.scroll-indicator {
    text-align: center;
    color: white;
    font-family: var(--font-family-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateY(-5px);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

.scroll-text {
    display: block;
    font-size: 1.1rem;
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 0.75rem;
    opacity: 1;
}

.scroll-arrow {
    font-size: 1.75rem;
    animation: bounce 2s infinite;
    line-height: 1;
}

/* Animation de bounce subtile */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}


/* Responsive pour l'indicateur de scroll */
@media screen and (max-width: 768px) {
    .hero-bulma-variant {
        min-height: 100vh; /* Plein écran aussi sur mobile */
    }
    
    .hero-bulma-variant .hero-body {
        /* Correction pour iOS Safari - utilise la safe area + padding de base */
        padding-bottom: max(4rem, calc(env(safe-area-inset-bottom) + 2rem));
    }
    
    .scroll-text {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .scroll-arrow {
        font-size: 1.4rem;
    }
}

/* Correction spécifique pour iOS Safari */
@supports (-webkit-touch-callout: none) {
    @media screen and (max-width: 768px) {
        .hero-bulma-variant .hero-body {
            /* Fallback renforcé pour iOS Safari */
            padding-bottom: max(5rem, calc(env(safe-area-inset-bottom) + 3rem));
        }
    }
}

/* OPTION 3: Hero textuel condensé */
.hero-compact-variant {
    padding: 2rem 0;
    background-color: white;
    border-bottom: 1px solid #f5f5f5;
}

.hero-compact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-compact-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    color: #212121;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-compact-cta {
    margin-top: 1rem;
}

/* Responsive pour Option 3 */
@media screen and (max-width: 768px) {
    .hero-compact-variant {
        padding: 1.5rem 0;
    }
    
    .hero-compact-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

/* ======================================
   SYSTÈME DE BOUTONS UNIFIÉ
   ====================================== */

/* Style de base pour tous les boutons */
.category-btn,
.cta-button,
.button.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: transparent !important;
    color: var(--btn-primary-text) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid var(--btn-primary-border) !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 !important;
    cursor: pointer;
    min-width: 140px;
    justify-content: center;
}

/* Effet hover unifié - plus subtil */
.category-btn:hover,
.cta-button:hover,
.button.category-btn:hover {
    background-color: var(--btn-primary-bg-hover) !important;
    color: var(--btn-primary-text-hover) !important;
    border-color: var(--btn-primary-bg-hover) !important;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(33, 33, 33, 0.3);
}

/* S'assurer que les enfants du bouton sont transparents au survol */
.category-btn:hover span,
.cta-button:hover span,
.button.category-btn:hover span {
    background-color: transparent !important;
}

.category-btn:hover .icon,
.cta-button:hover .icon,
.button.category-btn:hover .icon {
    color: var(--btn-primary-text-hover) !important;
}

.category-btn:focus,
.cta-button:focus,
.button.category-btn:focus {
    background-color: #212121 !important;
    color: white !important;
    border-color: #212121 !important;
    box-shadow: 0 0 0 0.125em rgba(33, 33, 33, 0.25);
}

/* Variantes de tailles */
.category-btn.is-small,
.cta-button.is-small,
.button.category-btn.is-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    min-width: 120px;
}

.category-btn.is-large,
.cta-button.is-large,
.button.category-btn.is-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    min-width: 180px;
}

/* Flèches et icônes */
.cta-arrow,
.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.category-btn:hover .cta-arrow,
.cta-button:hover .cta-arrow,
.button.category-btn:hover .cta-arrow,
.category-btn:hover .btn-arrow,
.cta-button:hover .btn-arrow,
.button.category-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Variante bouton blanc sur fond sombre */
.category-btn.is-white,
.cta-button.is-white,
.button.category-btn.is-white {
    background-color: white !important;
    color: #212121 !important;
    border-color: white !important;
}

.category-btn.is-white:hover,
.cta-button.is-white:hover,
.button.category-btn.is-white:hover {
    background-color: transparent !important;
    color: white !important;
    border-color: white !important;
}

/* Variante bouton secondaire */
.category-btn.is-secondary,
.cta-button.is-secondary,
.button.category-btn.is-secondary {
    border-color: #555 !important;
    color: #666 !important;
    border-width: 1px !important;
}

.category-btn.is-secondary:hover,
.cta-button.is-secondary:hover,
.button.category-btn.is-secondary:hover {
    background-color: rgba(33, 33, 33, 0.1) !important;
    color: #212121 !important;
    border-color: #212121 !important;
}

/* Variante bouton tertiaire (plus discret) */
.category-btn.is-tertiary,
.cta-button.is-tertiary,
.button.category-btn.is-tertiary {
    border-color: #ddd !important;
    color: #888 !important;
    border-width: 1px !important;
    background-color: transparent !important;
}

.category-btn.is-tertiary:hover,
.cta-button.is-tertiary:hover,
.button.category-btn.is-tertiary:hover {
    background-color: #f8f8f8 !important;
    color: #555 !important;
    border-color: #bbb !important;
}

.hero-description {
    padding-left: 2rem;
    border-left: 3px solid #f5f5f5;
}

.hero-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media screen and (max-width: 1023px) {
    .hero-section {
        padding: 3rem 0 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-description {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid #f5f5f5;
        padding-top: 2rem;
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        padding: 2rem 0 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ======================================
   SECTION PROJET EN VEDETTE (HERO)
   ====================================== */

/* Hero avec background-image pour projet en vedette */
.hero.project-hero {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 100vh;
    /* Hauteur minimale réduite */
}

.hero.project-hero .hero-body {
    background: transparent !important;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.5rem;
    min-height: auto;
    /* Correspond au hero */
}

/* Styles pour les éléments de la carte dans le Hero */
.project-info-card-hero {
    border-radius: 0 !important;
    /* Bords droits */
}

.project-category {
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #212121;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.project-location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 300;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #212121;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #212121;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #666;
    border-bottom-color: #666;
}

.link-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.project-link:hover .link-arrow {
    transform: translate(3px, -3px);
}

/* Responsive Design pour le Hero projet */
@media screen and (max-width: 768px) {
    .hero.project-hero .hero-body {
        padding: 1rem !important;
        align-items: flex-end !important;
        justify-content: flex-end !important;
    }

    .hero.is-large .card {
        max-width: 100% !important;
        margin: 0 !important;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .project-location {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .project-title {
        font-size: 1.25rem;
    }
}

/* ======================================
   SECTION SERVICES ET EXPERTISE
   ====================================== */

.services-section {
    padding: 5rem 0;
    background-color: var(--section-bg-neutral);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-medium);
    color: #212121;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-light);
    color: #666;
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    margin: 0 auto;
}


.service-card {
    background-color: white;
    padding: 3rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #212121;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #212121;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
}

.service-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #212121;
    font-weight: 500;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #212121;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #212121;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #666;
    border-bottom-color: #666;
}

.service-link .link-arrow {
    transition: transform 0.3s ease;
}

.service-link:hover .link-arrow {
    transform: translateX(4px);
}

/* Approche et Valeurs */
.approach-section {
    padding: 3rem 0;
    border-top: 1px solid #e0e0e0;
    background-color: white;
}

.approach-title {
    font-size: 2rem;
    font-weight: 500;
    color: #212121;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.approach-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.approach-text:last-of-type {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #f0f0f0;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0.5rem;
}

.value-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design pour la section services */
@media screen and (max-width: 1023px) {
    .services-section {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-card {
        padding: 2rem;
        min-height: auto;
    }

    .service-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .approach-title {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .approach-section {
        padding: 2rem 0;
    }

    .approach-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* ======================================
   GALERIE PROJETS PHARES
   ====================================== */

.featured-projects-section {
    padding: 5rem 0;
    background-color: var(--section-bg-light);
}

.projects-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.project-card {
    background-color: white;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 0;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #e0e0e0;
}

/* Typographie cohérente pour les cartes de projets */
.project-card-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);
    color: #212121;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.project-card-subtitle {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-normal);
    color: #666;
    margin-bottom: 0.25rem;
}

.project-card-location {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-normal);
    color: #666;
    margin-bottom: 0;
}

.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.project-category {
    background-color: rgba(33, 33, 33, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info {
    padding: 2rem;
}

.project-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: #212121;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.project-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 300;
}

.project-excerpt {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.5rem;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    font-size: 0.75rem;
    color: #666;
    background-color: #f8f8f8;
    padding: 0.375rem 0.75rem;
    border: 1px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.project-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #212121;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #212121;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.project-cta:hover {
    color: #666;
    border-bottom-color: #666;
}

.project-cta .cta-arrow {
    transition: transform 0.3s ease;
}

.project-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* Section CTA finale */
.projects-cta-section {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #212121 !important;
    color: white !important;
    margin-top: 2rem;
}

.projects-cta-section .cta-title {
    color: white !important;
}

.projects-cta-section .cta-description {
    color: #cccccc !important;
}

.projects-cta-section .category-btn {
    border-color: white !important;
    color: white !important;
    background-color: transparent !important;
}

.projects-cta-section .category-btn:hover {
    background-color: white !important;
    color: #212121 !important;
    border-color: white !important;
}

/* S'assurer qu'aucun élément enfant n'a de fond blanc */
.projects-cta-section *:not(.category-btn:hover) {
    background-color: transparent !important;
}

/* Forcer la couleur de fond de la section elle-même */
.projects-cta-section {
    background: #212121 !important;
}

.cta-title {
    font-size: 2rem;
    font-weight: 500;
    color: #212121;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Alias pour .main-cta-button - utilise maintenant le système unifié */
.main-cta-button {
    /* Hérite des styles .category-btn de base */
}

/* Responsive Design pour la galerie projets */
@media screen and (max-width: 1023px) {
    .featured-projects-section {
        padding: 4rem 0;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .project-info {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    .featured-projects-section {
        padding: 3rem 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-image {
        height: 200px;
    }

    .project-name {
        font-size: 1.25rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .main-cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .projects-cta-section {
        padding: 2rem 0;
    }
}

/* ======================================
   CALL-TO-ACTION FINAL ET SECTEURS
   ====================================== */

.final-cta-section {
    padding: 4rem 0;
    background-color: var(--section-bg-dark);
    color: var(--text-on-dark);
}

.final-cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text-content {
    padding-right: 2rem;
}

.final-cta-title {
    font-size: 2.25rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.final-cta-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #cccccc;
}

.feature-icon {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

/* Alias pour les boutons CTA - utilisent maintenant le système unifié */
.primary-cta-btn {
    /* Hérite des styles .category-btn.is-white avec largeur complète */
    width: 100% !important;
}

.secondary-cta-btn {
    /* Hérite des styles .category-btn.is-secondary avec largeur complète */
    width: 100% !important;
}

/* Secteurs d'activité */
.sectors-section {
    padding: 4rem 0;
    background-color: var(--section-bg-gray);
}

.sectors-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sectors-title {
    font-size: 2rem;
    font-weight: 500;
    color: #212121;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.sector-item {
    background-color: white;
    padding: 2rem 1.5rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.sector-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.sector-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: #212121;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sector-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design pour CTA final et secteurs */
@media screen and (max-width: 1023px) {
    .final-cta-section {
        padding: 3rem 0;
    }

    .cta-text-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .cta-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .sectors-section {
        padding: 3rem 0;
    }

    .sectors-title {
        font-size: 1.75rem;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .final-cta-section {
        padding: 2.5rem 0;
    }

    .final-cta-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .final-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .primary-cta-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .secondary-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .sectors-section {
        padding: 2.5rem 0;
    }

    .sectors-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sector-item {
        padding: 1.5rem;
    }
}

/* ======================================
   SYSTÈME DE SECTIONS MODULAIRES
   ====================================== */

/* Classes de base pour les sections */
.section-light {
    background-color: var(--section-bg-light) !important;
    color: var(--text-on-light) !important;
}

.section-neutral {
    background-color: var(--section-bg-neutral) !important;
    color: var(--text-on-light) !important;
}

.section-dark {
    background-color: var(--section-bg-dark) !important;
    color: var(--text-on-dark) !important;
}

.section-gray {
    background-color: var(--section-bg-gray) !important;
    color: var(--text-on-light) !important;
}

/* Adaptations automatiques des éléments selon le contexte */
.section-dark .section-title,
.section-dark .cta-title,
.section-dark .final-cta-title,
.section-dark .sectors-title {
    color: var(--text-on-dark) !important;
}

.section-dark .section-subtitle,
.section-dark .cta-description,
.section-dark .final-cta-subtitle {
    color: var(--text-secondary-on-dark) !important;
}

/* Boutons sur fond sombre */
.section-dark .category-btn {
    border-color: var(--text-on-dark) !important;
    color: var(--text-on-dark) !important;
    background-color: transparent !important;
}

.section-dark .category-btn:hover {
    background-color: var(--text-on-dark) !important;
    color: var(--section-bg-dark) !important;
    border-color: var(--text-on-dark) !important;
}

.section-dark .category-btn:focus {
    background-color: var(--text-on-dark) !important;
    color: var(--section-bg-dark) !important;
    border-color: var(--text-on-dark) !important;
    box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

/* Bordures adaptées au contexte */
.section-dark {
    border-top: 1px solid var(--border-on-dark);
}

/* Neutraliser les fonds blancs forcés dans les sections sombres */
.section-dark *,
.section-dark .container,
.section-dark .columns,
.section-dark .column,
.section-dark .hero,
.section-dark .service-card,
.section-dark .project-card,
.section-dark .project-info-card,
.section-dark .sector-item,
.section-dark .tile,
.section-dark p,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    background-color: transparent !important;
}

/* Exceptions pour les boutons qui ont besoin de leur fond */
.section-dark .category-btn {
    background-color: transparent !important;
}

.section-dark .category-btn:hover {
    background-color: white !important;
    color: #212121 !important;
}

/* Styles pour le footer logo et titre */
.footer-logo-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.footer-logo {
    max-width: 80px;
    height: auto;
}

.footer-title-container {
    flex: 1;
}

.footer-title {
    text-transform: lowercase;
    margin-bottom: 0;
}

/* Adaptation responsive pour le footer */
@media screen and (max-width: 768px) {
    .footer-logo-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-logo {
        max-width: 60px;
    }
}

/* ======================================
   NAVBAR BURGER - STYLES SUPPRIMÉS
   ====================================== */

/* Styles déplacés vers header.php pour éviter les conflits */

/* ======================================
   HEADER SIMPLIFIÉ - UNE SEULE BARRE
   ====================================== */

/* Desktop : Logo | Menu centré | Titre à droite */
@media screen and (min-width: 1024px) {
    .navbar-menu {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        padding: 0 !important;
        /* Suppression du margin-top qui cachait la ligne noire */
        /* Rapproche du border-top */
    }

    .navbar-start {
        flex-grow: 0;
        margin: 0 auto;
        /* Centre le menu */
    }

    .navbar-start .navbar-item {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .navbar-end {
        flex-grow: 0;
        display: flex !important;
        align-items: center;
    }

    .page-title-header {
        padding: 0 !important;
        /* Réduit de 0.75rem à 0.25rem */
        display: flex !important;
        align-items: center;
    }

    .page-title-header span.is-size-2 {
        font-size: 2rem !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        color: #212121 !important;
        letter-spacing: -0.02em;
        text-align: right;
        display: block !important;
    }
}

/* Mobile : Logo | Burger à droite */
@media screen and (max-width: 1023px) {
    .navbar-brand {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 3.25rem;
    }

    .navbar-burger {
        margin-left: auto !important;
        z-index: 100 !important;
    }
}

/* Ajustements pour très petits écrans */
@media screen and (max-width: 480px) {
    .page-title-header span {
        font-size: 1rem !important;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Assurer que le titre n'interfère pas avec la navigation */
.navbar-item.page-title-header {
    padding: 0.5rem 0.75rem;
}

.navbar-item.page-title-header:hover {
    background-color: transparent !important;
}

/* ======================================
   SMART HEADER NAVIGATION
   ====================================== */

/* Animation pour le header qui se cache/montre */
/* Header spacer - div blanc au-dessus de la navbar */
.header-spacer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 0.75rem;
    background-color: white;
    z-index: 30;
    transition: transform 0.15s ease-out;
}

.header-spacer.is-hidden {
    transform: translateY(-100%);
}

/* Navbar fixe - consolidation de tous les styles */
.navbar.is-fixed-top {
    background-color: white !important;
    padding-top: 0;
    padding-bottom: 0.5rem;
    padding-left: 6px;
    padding-right: 6px;
    margin-top: 0;
    top: 0.75rem;
    box-shadow: none;
    transition: transform 0.15s ease-out;
    z-index: 30;
}

.navbar.is-fixed-top.is-hidden {
    transform: translateY(-100%);
}

/* Padding du body pour éviter que le contenu soit caché sous le header */
html body,
body.has-navbar-fixed-top,
body {
    padding-top: 90px !important;
    margin-top: 0 !important;
}

/* Exception pour la page d'accueil avec hero plein écran */
body.home-page {
    padding-top: 0 !important;
}

/* Responsive */
@media screen and (max-width: 768px) {
    html body,
    body.has-navbar-fixed-top,
    body {
        padding-top: 75px !important;
        margin-top: 0 !important;
    }
    
    /* Exception pour la page d'accueil avec hero plein écran sur mobile */
    body.home-page {
        padding-top: 0 !important;
    }
    
    .header-spacer {
        height: 0.5rem;
    }
    
    .navbar.is-fixed-top {
        padding-top: 0;
        padding-bottom: 0.5rem;
        padding-left: 4px;
        padding-right: 4px;
        margin-top: 0;
        top: 0.5rem;
    }
}

/* ======================================
   SECTION ARTICLES ACCUEIL
   ====================================== */

/* Section des derniers articles du carnet sur l'accueil */
.latest-articles-section {
    padding: 4rem 0;
    background: white;
}

.latest-articles-section .articles-header {
    text-align: center;
    margin-bottom: 3rem;
}

.latest-articles-section .section-title {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
    color: #212121;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.latest-articles-section .section-subtitle {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-light);
    color: #666;
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    margin: 0 auto;
}

/* Cartes d'articles pour l'accueil */
.article-card-home {
    background: white;
    border: 2px solid #212121;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.article-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(33, 33, 33, 0.15);
}

.article-card-home .article-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-card-home .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card-home:hover .article-image img {
    transform: scale(1.05);
}

.article-card-home .placeholder-image {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
    font-size: 0.875rem;
}

.article-card-home .article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 2px solid #212121;
}

.article-card-home .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.article-card-home .article-date {
    color: #666;
    font-weight: 500;
}

.article-card-home .article-category {
    background: #212121;
    color: white;
    padding: 0.25rem 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.article-card-home .article-title {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-regular);
    margin-bottom: 1rem;
    line-height: var(--line-height-tight);
}

.article-card-home .article-title a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-card-home .article-title a:hover {
    color: #666;
}

.article-card-home .article-resume {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.95rem;
}

.article-card-home .read-more-btn {
    background: #212121;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    transition: background 0.3s ease;
    border: none;
    align-self: flex-start;
    margin-top: auto;
}

.article-card-home .read-more-btn:hover {
    background: #666;
    color: white;
}

/* Nouveau format horizontal compact pour homepage */
.articles-list-home {
    max-width: 800px;
    margin: 0 auto;
}

.article-row-home {
    background: white;
    border: 1px solid #e5e5e5;
    margin-bottom: 1.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.article-row-home:hover {
    background: #fafafa;
    box-shadow: 0 4px 12px rgba(33, 33, 33, 0.1);
}

.article-row-home:last-child {
    margin-bottom: 0;
}

/* Images compactes homepage */
.article-image-home {
    height: 80px;
    overflow: hidden;
    position: relative;
}

.article-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #212121;
    transition: transform 0.3s ease;
}

.article-row-home:hover .article-image-home img {
    transform: scale(1.02);
}

.placeholder-image-home {
    width: 100%;
    height: 80px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
    font-size: 0.75rem;
    border: 2px solid #212121;
}

/* Contenu condensé homepage */
.article-content-home {
    padding-left: 1rem;
}

.article-title-home {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-regular);
    margin-bottom: 0.5rem;
    line-height: var(--line-height-tight);
}

.article-title-home a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title-home a:hover {
    color: #666;
}

.article-resume-home {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.article-meta-home {
    display: flex;
    align-items: center;
    font-size: 0.825rem;
    color: #666;
}

.article-date-home {
    font-weight: 500;
}


/* CTA sidebar pour les articles - design épuré */
.articles-cta-sidebar {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.articles-cta-sidebar .card {
    background-color: transparent;
    border: none;
    box-shadow: none;
    height: auto;
    display: flex;
    flex-direction: column;
}

.articles-cta-sidebar .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    padding: 2rem 0 0 0;
    justify-content: flex-end;
}

.cta-sidebar-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--bulma-text);
}

.cta-sidebar-description {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-relaxed);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.cta-sidebar-stats {
    margin-bottom: 2rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
}

.stat-item {
    display: block;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-light);
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-label {
    display: none;
}

/* Responsive design pour la sidebar CTA */
@media (max-width: 1023px) {
    .articles-cta-sidebar {
        padding-top: 2rem;
    }
    
    .articles-cta-sidebar .card {
        min-height: auto;
    }
    
    .articles-cta-sidebar .card-content {
        padding: 1.5rem;
    }
    
    .cta-sidebar-title {
        font-size: var(--font-size-h4);
    }
    
    .cta-sidebar-stats {
        margin-bottom: 1.5rem;
    }
}

.latest-articles-section .cta-title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
    color: #212121;
}

.latest-articles-section .cta-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .latest-articles-section {
        padding: 2rem 0;
    }
    
    .latest-articles-section .section-title {
        font-size: 2rem;
    }
    
    .latest-articles-section .section-subtitle {
        font-size: 1rem;
    }
    
    .article-card-home .article-content {
        padding: 1rem;
    }
    
    .article-card-home .article-image {
        height: 150px;
    }
    
    /* Responsive pour format horizontal compact */
    .article-row-home .columns {
        flex-direction: column;
    }
    
    .article-image-home {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .article-content-home {
        padding-left: 0;
    }
    
    .article-title-home {
        font-size: 1rem;
    }
    
    .latest-articles-section .articles-header {
        margin-bottom: 2rem;
    }
    
    .latest-articles-section .articles-cta-section {
        margin-top: 2rem;
    }
}

/* ======================================
   SECTION FILTRES GLOBALE
   ====================================== */

/* Section filtres pour projets et carnet */
.filters-section {
    background: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 0;
}

.filters-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: var(--font-weight-medium);
    color: #212121;
    white-space: nowrap;
}

.filters-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive pour les filtres */
@media screen and (max-width: 768px) {
    .filters-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ======================================
   STYLES POUR LES PAGES PROJET
   ====================================== */

.project-feature-box {
    background-color: #f8f8f8;
    color: #212121;
    padding: 3rem 0;
    margin: 3rem 0;
}

.project-feature-box .columns {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.project-feature-box .column {
    text-align: center;
}

