/*
Theme Name: Échos des milieux - Enfant
Template: generatepress
Version: 1.0
*/

/* === POLICE PERSONNALISÉE === */
@font-face {
    font-family: 'Teenage Dreams';
    src: url('fonts/TeenageDreamsDemoBold.woff2') format('woff2'),
         url('fonts/TeenageDreamsDemoBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* === MONTSERRAT (Google Fonts) === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* === PALETTE DE COULEURS === */
:root {
    --blanc-casse: #fcfcf5;;
    --vert-fonce: #C7F7C3;
    --vert-fonce-alt: #E8F2D0;
    --vert-lime: #9EF19E;
    --vert-tres-fonce: #868C70;
    --vert-tres-tres-fonce: #0A3A06;

}

/* === RÉINITIALISATION === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--vert-tres-fonce);
    color: var(--blanc-casse);
    padding-top: 55px !important;
    scroll-behavior: smooth;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.10'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* === CONTENEUR PRINCIPAL === */

.repertoire-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 110px 54px 36px 54px; /* était 160px 60px 40px 60px */
}

/* Logo SVG titre */
.logo-titre {
    margin-bottom: 27px; /* était 30px */
    margin-left: -300px;
    animation: float-title 6s ease-in-out infinite;
}

.logo-titre img {
    width: 270px; /* était 300px */
    height: auto;
    display: block;
}

@keyframes float-title {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* === LAYOUT DEUX COLONNES === */
.repertoire-content {
    display: block;
    margin-left: 0;
}

.artistes-column {
    flex: 1;
    width: 100%;
    margin-left: 0;
    display: block;
    margin-top: 0;
}

.artistes-liste {
    background-color: transparent;
    padding: 27px 27px 27px 0; /* était 30px */
    border-radius: 0;
    border: none;
    column-count: 4;
    column-gap: 5px;
    width: 100%;
    margin: 0;
    text-align: left;
}

/* === BARRE DE RECHERCHE === */
.search-bar {
    position: relative;
    margin-bottom: 27px; /* était 30px */
    max-width: 200px; /* était 300px */
}

#search-artistes {
    width: 100%;
    padding: 5px 36px 7px 18px; /* était 8px 40px 8px 20px */
    font-size: 13px; /* était 15px */
    border: 2px solid var(--vert-fonce-alt);
    border-radius: 25px;
    background-color: var(--vert-tres-fonce);
    color: var(--blanc-casse);
}

#search-artistes::placeholder {
    color: var(--blanc-casse);
    opacity: 0.7;
}

#search-artistes:focus {
    outline: none;
    border-color: var(--vert-fonce);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blanc-casse);
    display: flex;
    align-items: center;
}

.search-icon svg {
    width: 18px; /* était 20px */
    height: 18px;
}

/* === FILTRES PRINCIPAUX === */
.filtres-principaux {
    display: flex;
    flex-direction: column;
    gap: 9px; /* était 10px */
    margin-bottom: 18px; /* était 20px */
    align-items: flex-start;
}

.filtre-btn {
    padding: 7px 18px; /* était 8px 20px */
    background-color: var(--vert-tres-fonce);
    border: 2px solid var(--vert-lime);
    border-radius: 25px;
    font-size: 12px; /* était 13px */
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: var(--vert-lime);
    line-height: 1.3;
    white-space: normal;
}

.filtre-btn:hover {
    background-color: var(--vert-lime);
    color: var(--vert-tres-fonce);
    animation: breathe 1.5s ease-in-out infinite;
}

.filtre-btn.active {
    background-color: var(--vert-lime);
    color: var(--vert-tres-fonce);
}

/* === GROUPES DE FILTRES === */
.filtre-groupe {
    margin-bottom: 9px; /* était 10px */
}

.sous-filtres {
    display: flex;
    gap: 7px; /* était 8px */
    margin-top: 9px;
    margin-left: 15px;
    flex-wrap: wrap;
    max-width: 252px; /* était 280px */
}

.sous-filtre-btn {
    padding: 7px 18px; /* était 8px 20px */
    background-color: var(--vert-tres-fonce);
    border: 2px solid var(--vert-lime);
    border-radius: 20px;
    font-size: 13px; /* était 14px */
    cursor: pointer;
    transition: none;
    color: var(--vert-lime);
    position: relative;
}

.sous-filtre-btn.active {
    background-color: var(--vert-lime);
    color: var(--vert-tres-fonce);
    border-color: var(--vert-lime);
}

.sous-filtre-btn:hover {
    border-color: var(--vert-fonce);
    background-color: var(--vert-fonce);
    color: var(--vert-tres-fonce);
}

.sous-filtre-btn.active:hover {
    background-color: var(--vert-lime);
    color: var(--vert-tres-fonce);
    border-color: var(--vert-lime);
}

/* === LISTE DES ARTISTES === */

.lettre-groupe {
    break-inside: avoid;
    margin-bottom: 14px; /* était 15px */
    text-align: left;
}

.lettre {
    font-size: 18px; /* était 20px */
    font-weight: 700;
    color: var(--vert-lime);
    margin-bottom: 5px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.artiste-item {
    margin-bottom: 2px;
    text-align: left;
}

.artiste-item a {
    color: var(--blanc-casse);
    text-decoration: none;
    font-size: 15px; /* était 17px */
    transition: color 0.3s ease;
    display: block;
    line-height: 1.5;
}

.artiste-item a:hover {
    color: var(--vert-lime);
}

.artiste-item.hidden {
    display: none;
}

/* === FICHE ARTISTE === */
.artiste-fiche-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 18px; /* était 40px 20px */
    background-color: var(--blanc-casse);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.10'/%3E%3C/svg%3E");
}

/* Layout 2 colonnes */
.artiste-layout {
    display: flex;
    gap: 36px; /* était 40px */
    align-items: flex-start;
}

.artiste-main {
    flex: 1;
    max-width: 750px;
}

.artiste-sidebar {
    flex: 0 0 252px; /* était 280px */
    align-self: flex-start;
}

.artiste-liens-sidebar {
    margin-top: 36px; /* était 40px */
    padding-top: 18px;
    border-top: 1px solid rgba(134, 140, 112, 0.3);
    display: flex;
    flex-direction: column;
    gap: 7px; /* était 8px */
}

.artiste-liens-sidebar .artiste-lien {
    font-size: 14px; /* était 16px */
    color: var(--vert-tres-fonce);
    text-decoration: none;
    border-bottom: 1px solid rgba(134, 140, 112, 0.3);
    padding-bottom: 7px;
}

.artiste-liens-sidebar .artiste-lien:hover {
    opacity: 0.6;
}

.artiste-categories.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    background-color: transparent;
    padding: 18px 0; /* était 20px */
    border-radius: 0;
    border: none;
    align-self: flex-start;
}

.artiste-categories h3 {
    font-size: 16px; /* était 18px */
    font-weight: bold;
    margin-bottom: 18px;
    color: var(--vert-tres-fonce);
}

.categorie-groupe {
    margin-bottom: 18px; /* était 20px */
}

.categorie-groupe h4 {
    font-size: 13px; /* était 14px */
    font-weight: bold;
    margin-bottom: 9px;
    color: var(--vert-tres-fonce);
    text-transform: uppercase;
}

.pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 7px; /* était 8px */
}

.category-pill {
    display: inline-block;
    padding: 5px 14px; /* était 6px 15px */
    background-color: var(--vert-tres-fonce);
    border: none;
    border-radius: 20px;
    font-size: 12px; /* était 13px */
    color: var(--vert-lime);
}

/* === BOUTON DÉCOUVRIR === */
.decouvrir-artiste {
    margin-top: 27px; /* était 30px */
    padding-top: 18px;
    border-top: 1px solid rgba(134, 140, 112, 0.3);
}

.btn-decouvrir {
    display: block;
    width: 100%;
    padding: 13px 18px; /* était 14px 20px */
    background-color: var(--vert-tres-fonce);
    color: var(--blanc-casse);
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px; /* était 16px */
    font-weight: normal;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-decouvrir:hover {
    background-color: var(--vert-lime);
    color: var(--vert-tres-fonce);
    transform: translateY(-2px);
}

.artiste-header h1 {
    font-size: 38px; /* était 42px */
    font-weight: 700;
    margin-bottom: 27px;
    color: var(--vert-tres-fonce);
    font-family: 'Montserrat', sans-serif;
}

.artiste-photo {
    width: 100%;
    margin: 0 0 36px 0; /* était 40px */
    float: none;
}

.artiste-photo img {
    width: 100%;
    height: 450px; /* était 500px */
    object-fit: cover;
    border-radius: 10px;
}

.artiste-images .artiste-photo-img {
    border-radius: 10px;
    width: 100%;
    height: 450px; /* était 500px */
    object-fit: cover;
}

.artiste-legende {
    font-size: 12px; /* était 13px */
    color: #888;
    font-style: italic;
    margin-top: 7px;
    text-align: right;
}

.artiste-content {
    overflow: auto;
}

.artiste-section {
    margin-bottom: 36px; /* était 40px */
    clear: both;
}

.artiste-section h2 {
    font-size: 23px; /* était 26px */
    font-weight: 700;
    text-transform: none;
    margin-bottom: 14px;
    color: var(--vert-tres-fonce);
}

.artiste-section h3 {
    font-size: 20px; /* était 22px */
    font-weight: 700;
    text-transform: none;
    margin-bottom: 9px;
    color: var(--vert-tres-fonce);
}

.artiste-section h4 {
    font-size: 19px; /* était 21px */
    font-weight: 700;
    margin-bottom: 11px;
    margin-top: 27px;
    color: var(--vert-tres-fonce);
    line-height: 1.4;
}

.artiste-texte {
    font-size: 16px; /* était 18px */
    line-height: 1.7;
    color: #333;
    text-align: justify;
}

.artiste-video {
    margin: 18px 0; /* était 20px */
}

.artiste-video iframe {
    width: 100%;
    height: 405px; /* était 450px */
    border-radius: 10px;
}

.artiste-lien {
    color: var(--vert-tres-fonce);
    text-decoration: none;
    font-size: 16px; /* était 18px */
    display: block;
    margin-bottom: 5px;
}

.artiste-lien:hover {
    text-decoration: underline;
    color: var(--vert-tres-fonce);
}

.question-reponse {
    margin-bottom: 23px; /* était 25px */
}

.artiste-images {
    position: relative;
    margin-bottom: 0;
}

.artiste-images .artiste-legende {
    font-size: 12px; /* était 13px */
    color: #888;
    font-style: italic;
    margin-top: 7px;
    text-align: right;
}

.artiste-retour {
    margin-top: 18px; /* était 20px */
    text-align: center;
}

.btn-retour {
    display: inline-block;
    padding: 13px 27px; /* était 14px 30px */
    background-color: var(--vert-tres-fonce);
    color: var(--blanc-casse);
    text-decoration: none;
    border-radius: 25px;
    font-size: 15px; /* était 17px */
    transition: all 0.3s ease;
}

.btn-retour:hover {
    background-color: var(--vert-lime);
    color: var(--vert-tres-fonce);
    transform: translateY(-2px);
}

/* === MASQUER LE FOOTER GENERATEPRESS === */
.site-info {
    display: none;
}

/* === MASQUER LE HEADER GENERATEPRESS === */
.site-header {
    display: none;
}

/* === MENU HAMBURGER === */
.menu-hamburger {
    position: fixed;
    top: 65px;
    right: 30px;
    z-index: 1000;
    transition: opacity 0.3s ease;
    overflow: visible;
}

.menu-hamburger.hidden {
    opacity: 0;
    pointer-events: none;
}

.hamburger-btn {
    background: none !important;
    border: none;
    cursor: pointer;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-btn:focus,
.hamburger-btn:active,
.hamburger-btn:focus-visible,
.hamburger-btn:focus-within {
    outline: none !important;
    background: none !important;
    box-shadow: none !important;
}

.hamburger-btn:hover {
    background: none !important;
}

body.fiche-artiste-page .hamburger-btn:active,
body.fiche-artiste-page .hamburger-btn:focus,
body.single-artiste .hamburger-btn:active,
body.single-artiste .hamburger-btn:focus {
    outline: none;
    background: none !important;
    box-shadow: none !important;
}

.hamburger-btn svg {
    width: 27px; /* était 30px */
    height: 22px; /* était 24px */
    color: var(--blanc-casse);
    overflow: visible;
}

.hamburger-btn:hover .line {
    animation: wave 1s ease-in-out infinite;
}

.hamburger-btn:hover .line1 { animation-delay: 0s; }
.hamburger-btn:hover .line2 { animation-delay: 0.1s; }
.hamburger-btn:hover .line3 { animation-delay: 0.2s; }

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

body.fiche-artiste-page .hamburger-btn svg,
body.single-artiste .hamburger-btn svg {
    color: var(--vert-tres-fonce);
}

body.fiche-artiste-page .hamburger-btn:hover svg,
body.single-artiste .hamburger-btn:hover svg {
    color: var(--vert-lime);
}

/* === OVERLAY MENU === */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--vert-tres-fonce);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
}

.menu-overlay.active {
    display: flex;
}

.menu-close {
    position: absolute;
    top: 55px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.menu-close:focus { outline: none; }
.menu-close:hover { background: none; }

.menu-close svg {
    width: 36px; /* était 40px */
    height: 36px;
    color: white;
    overflow: visible;
}

.menu-close:hover svg {
    color: var(--vert-lime);
}

.menu-close:hover .close-line {
    animation: rotate-wave 1.5s ease-in-out infinite;
}

.menu-close:hover .close-line1 {
    animation-delay: 0s;
    transform-origin: center;
}

.menu-close:hover .close-line2 {
    animation-delay: 0.1s;
    transform-origin: center;
}

@keyframes rotate-wave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

.menu-nav {
    list-style: none;
    text-align: center;
}

.menu-nav li {
    margin: 27px 0; /* était 30px */
}

.menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 32px; /* était 36px */
    font-weight: 700;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.menu-nav a:hover {
    color: var(--vert-lime);
}

/* === PAGES SIMPLES === */
.page-simple-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 72px 18px 36px; /* était 80px 20px 40px */
}

.page-content h1 {
    font-size: 43px; /* était 48px */
    font-weight: 700;
    color: var(--blanc-casse);
    margin-bottom: 36px;
    font-family: 'Montserrat', sans-serif;
}

.contenu {
    font-size: 16px; /* était 18px */
    line-height: 1.8;
    color: #333;
}

.contenu h2 {
    font-size: 25px; /* était 28px */
    font-weight: bold;
    color: var(--vert-fonce);
    margin-top: 36px;
    margin-bottom: 18px;
}

.contenu h3 {
    font-size: 20px; /* était 22px */
    font-weight: bold;
    color: var(--vert-fonce);
    margin-top: 27px;
    margin-bottom: 14px;
}

.contenu p { margin-bottom: 18px; /* était 20px */ }

.contenu ul, .contenu ol {
    margin-left: 27px;
    margin-bottom: 18px;
}

.contenu li { margin-bottom: 9px; /* était 10px */ }

.contenu a {
    color: var(--vert-lime);
    text-decoration: none;
}

.contenu a:hover { text-decoration: underline; }

/* === FOND BLANC CASSÉ POUR FICHE ARTISTE === */
body.fiche-artiste-page,
body.single-artiste {
    background-color: var(--blanc-casse) !important;
}

body.fiche-artiste-page .artiste-fiche-container,
body.single-artiste .artiste-fiche-container {
    background-color: var(--blanc-casse);
}

body.fiche-artiste-page .hamburger-btn span,
body.single-artiste .hamburger-btn span {
    background-color: var(--vert-tres-fonce);
}

body.fiche-artiste-page .hamburger-btn:hover span,
body.single-artiste .hamburger-btn:hover span {
    background-color: var(--vert-lime);
}

/* === ANIMATIONS ORGANIQUES === */
@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes grow {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.menu-overlay.active {
    animation: grow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sous-filtre-btn:hover {
    animation: breathe 1.5s ease-in-out infinite;
}

.lettre {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.lettre:hover {
    transform: scale(1.08) rotate(-1deg);
}

.artiste-item a {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.artiste-item a:hover {
    transform: scale(1.02);
}

.btn-decouvrir,
.btn-retour {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-decouvrir:hover,
.btn-retour:hover {
    transform: translateY(-3px) scale(1.02);
}

.category-pill {
    transition: all 0.3s ease;
    display: inline-block;
}

.category-pill:hover {
    animation: float 2s ease-in-out infinite;
}

@keyframes float-title {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ========================================
   WELCOME PAGE
======================================== */
body.page-template-page-accueil {
    background-color: #c7f7c4 !important;
    background-image: none !important;
    margin: 0;
    padding: 0 !important;
}

body.page-template-page-accueil .site-content,
body.page-template-page-accueil .content-area,
body.page-template-page-accueil .site-main,
body.page-template-page-accueil main,
body.page-template-page-accueil .entry-content,
body.page-template-page-accueil article {
    background: transparent !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

body.page-template-page-accueil .site.grid-container,
body.page-template-page-accueil #page {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.page-template-page-accueil .welcome-container {
    position: relative !important;
    width: 100vw !important;
    min-height: unset !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    overflow: visible !important;
    background-color: #c7f7c4;
}

.image-fond {
    width: 100%;
    height: auto;
    display: block;
}

body.page-template-page-accueil .welcome-logo-centre {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    margin-top: 0;
}

body.page-template-page-accueil .welcome-logo-centre img {
    max-width: 540px; /* était 600px */
    width: 100%;
    pointer-events: none;
}

body.page-template-page-accueil .welcome-nav {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    padding: 16px 40px;
    background-color: transparent;
    z-index: 103;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

body.page-template-page-accueil .welcome-logo-nav {
    display: none;
}

body.page-template-page-accueil .welcome-menu-liste {
    list-style: none !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.page-template-page-accueil .welcome-menu-liste li {
    float: none !important;
    display: inline-block !important;
    margin: 0 24px !important;
}

body.page-template-page-accueil .welcome-menu-liste li a {
    text-decoration: none !important;
    color: var(--vert-tres-tres-fonce) !important;
    font-size: 16px !important; /* était 18px */
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
    padding: 0 !important;
}

body.page-template-page-accueil .welcome-menu-liste li a:hover {
    opacity: 1 !important;
    color: var(--blanc-casse) !important;
}

@keyframes flotter {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.logo-flottant {
    animation: flotter 4s ease-in-out infinite;
}

/* ========================================
   NAVBAR GLOBALE
======================================== */

.navbar-globale {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    padding: 16px 40px;
    background-color: transparent;
    z-index: 1000;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar-liste {
    list-style: none !important;
    display: flex !important;
    flex-direction: row !important;
    padding: 0 !important;
    margin: 0 !important;
}

.navbar-liste li {
    display: inline-block !important;
    float: none !important;
    margin: 0 24px !important;
}

.navbar-liste li a {
    text-decoration: none !important;
    color: var(--vert-lime) !important;
    font-size: 16px !important; /* était 18px */
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
    padding: 0 !important;
}

.navbar-liste li a:hover {
    opacity: 0.5;
}

body.page-template-page-accueil .navbar-globale {
    display: none;
}

body.single-artiste .navbar-liste li a,
body.fiche-artiste-page .navbar-liste li a {
    color: var(--vert-tres-fonce) !important;
}

/* ========================================
   PAGE À PROPOS
======================================== */

body.page-template-page-a-propos {
    background-color: var(--blanc-casse) !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.10'/%3E%3C/svg%3E") !important;
    background-size: 200px 200px !important;
}

body.page-template-page-a-propos .navbar-liste li a {
    color: var(--vert-tres-fonce) !important;
}

.apropos-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 108px 54px 72px 54px; /* était 120px 60px 80px 60px */
}

.apropos-titre {
    font-family: 'Montserrat', sans-serif;
    font-size: 43px; /* était 48px */
    font-weight: 700;
    color: var(--vert-tres-fonce);
    margin-bottom: 36px;
}

.apropos-texte p {
    font-size: 16px; /* était 18px */
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
    max-width: 100%;
    text-align: justify;
}

.apropos-bios {
    margin-top: 72px; /* était 80px */
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.bio-card {
    display: flex;
    gap: 54px; /* était 60px */
    align-items: flex-start;
}

.bio-card-inverse {
    flex-direction: row-reverse;
}

.bio-photo {
    flex: 0 0 270px; /* était 300px */
}

.bio-photo img {
    width: 100%;
    height: 360px; /* était 400px */
    object-fit: cover;
    border-radius: 10px;
}

.bio-texte {
    flex: 1;
}

.bio-nom {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px; /* était 28px */
    font-weight: 700;
    color: var(--vert-tres-fonce);
    margin-bottom: 18px;
}

.bio-texte p {
    font-size: 15px; /* était 17px */
    line-height: 1.8;
    color: #333;
    margin-bottom: 14px;
    text-align: justify;
}

.apropos-logos {
    display: flex;
    align-items: center;
    gap: 18px; /* était 20px */
    margin-top: 72px;
    flex-wrap: wrap;
}

/* ========================================
   PAGE PUBLICATIONS
======================================== */
body.page-template-page-publications {
    background-color: var(--blanc-casse) !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.10'/%3E%3C/svg%3E") !important;
    background-size: 200px 200px !important;
}

body.page-template-page-publications .navbar-liste li a {
    color: var(--vert-tres-fonce) !important;
}

.publications-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 108px 54px 72px 54px; /* était 120px 60px 80px 60px */
}

.publications-titre {
    font-family: 'Montserrat', sans-serif;
    font-size: 43px; /* était 48px */
    font-weight: 700;
    color: var(--vert-tres-fonce);
    margin-bottom: 36px;
}

.publication-item a {
    padding-left: 2em;
    text-indent: -2em;
    display: block;
}

/* ========================================
   PAGE SIMPLE
======================================== */

body.page-template-page-simple {
    background-color: var(--blanc-casse) !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.10'/%3E%3C/svg%3E") !important;
    background-size: 200px 200px !important;
}

body.page-template-page-simple .navbar-liste li a {
    color: var(--vert-tres-fonce) !important;
}

body.page-template-page-simple .publications-titre {
    color: var(--vert-tres-fonce);
}

/* === LISTE PUBLICATIONS === */
.publications-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.publication-item {
    border-bottom: 1px solid rgba(134, 140, 112, 0.3);
    padding: 18px 0; /* était 20px */
}

.publication-item a {
    color: var(--vert-tres-fonce);
    text-decoration: none;
    font-size: 16px; /* était 18px */
    line-height: 1.6;
    transition: opacity 0.2s ease;
    display: block;
}

.publication-item a:hover {
    opacity: 0.6;
}

/* === FICHE PUBLICATION === */

body.single-publication {
    background-color: var(--blanc-casse) !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.10'/%3E%3C/svg%3E") !important;
    background-size: 200px 200px !important;
}

body.single-publication .navbar-liste li a {
    color: var(--vert-tres-fonce) !important;
}

.publication-fiche-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 108px 54px 72px; /* était 120px 60px 80px */
}

.publication-photo {
    margin: 36px 0; /* était 40px */
}

.publication-photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

body.single-evenement .publication-photo img {
    width: 60%;
    display: block;

}

.publication-reference {
    font-size: 15px; /* était 17px */
    line-height: 1.7;
    color: var(--vert-tres-fonce);
    font-weight: 600;
    margin-bottom: 27px;
}

.publication-description {
    font-size: 16px; /* était 18px */
    line-height: 1.8;
    color: #333;
    margin-bottom: 27px;
    text-align: justify;
}

.publication-lien {
    display: inline-block;
    color: var(--vert-tres-fonce);
    font-size: 15px; /* était 17px */
    text-decoration: none;
    border-bottom: 1px solid var(--vert-tres-fonce);
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.publication-lien:hover {
    opacity: 0.6;
}

/* === PAGE RÉSEAU DES PRATIQUES === */
body.page-template-page-reseau {
    background-color: var(--vert-tres-fonce) !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.10'/%3E%3C/svg%3E") !important;
    background-size: 200px 200px !important;
}

body.page-template-page-reseau .navbar-liste li a {
    color: var(--vert-lime) !important;
}

body.single-evenement .navbar-liste li a {
    color: var(--vert-tres-fonce) !important;
}

body.single-evenement {
    background-color: var(--blanc-casse) !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.10'/%3E%3C/svg%3E") !important;
    background-size: 200px 200px !important;
}

.reseau-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 54px 72px 54px; /* était 120px 60px 80px 60px */
}

.reseau-titre {
    font-family: 'Montserrat', sans-serif;
    font-size: 43px; /* était 48px */
    font-weight: 700;
    color: var(--blanc-casse);
    margin-bottom: 45px;
}

.reseau-sous-titre {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px; /* était 24px */
    font-weight: 700;
    color: var(--vert-lime);
    margin-bottom: 27px;
    margin-top: 30px;
}

.evenements-grille {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px; /* était 30px */
    margin-bottom: 36px;
}

.evenement-carte {
    text-decoration: none;
    color: var(--blanc-casse);
    display: block;
    transition: transform 0.3s ease;
}

.evenement-carte:hover {
    transform: translateY(-4px);
}

.evenement-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.evenement-passe .evenement-image img {
    filter: grayscale(30%);
    opacity: 0.85;
}

.evenement-infos {
    padding: 11px 4px; /* était 12px */
}

.evenement-date {
    font-size: 13px; /* était 14px */
    color: var(--blanc-casse);
    opacity: 0.7;
    margin-bottom: 5px;
}

.evenement-titre {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; /* était 16px */
    font-weight: 700;
    line-height: 1.4;
    color: var(--blanc-casse);
}

/* === FICHE ÉVÉNEMENT === */
.evenement-fiche-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 108px 54px 72px; /* était 120px 60px 80px */
}

.evenement-fiche-titre {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px; /* était 36px */
    font-weight: 700;
    color: var(--vert-tres-fonce);
    margin: 14px 0 18px;
}

.evenement-lieu {
    font-size: 14px; /* était 16px */
    color: var(--vert-tres-fonce);
    margin-bottom: 27px;
    opacity: 0.8;
}

.evenement-fiche-container .evenement-date {
    font-size: 14px; /* était 15px */
    color: var(--vert-tres-fonce);
    opacity: 0.7;
    margin-bottom: 7px;
}

.menu-nav {
    list-style: none;
    text-align: center;
    width: 100%;
}

.menu-nav li {
    text-align: center;
    width: 100%;
}

.menu-overlay ul.menu-nav {
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.menu-overlay ul.menu-nav li {
    text-align: center !important;
    padding: 0 !important;
    margin: 27px 0 !important;
    list-style: none !important;
}

.menu-hamburger {
    display: none;
}

.menu-overlay.active ~ .menu-hamburger,
body:has(.menu-overlay.active) .menu-hamburger {
    display: none !important;
}

body.page-template-page-a-propos .menu-overlay,
body.single-artiste .menu-overlay,
body.fiche-artiste-page .menu-overlay,
body.single-publication .menu-overlay,
body.single-evenement .menu-overlay {
    background-color: var(--blanc-casse) !important;
}

body.page-template-page-a-propos .menu-overlay .menu-nav a,
body.single-artiste .menu-overlay .menu-nav a,
body.fiche-artiste-page .menu-overlay .menu-nav a,
body.single-publication .menu-overlay .menu-nav a,
body.single-evenement .menu-overlay .menu-nav a {
    color: var(--vert-tres-fonce) !important;
}

body.page-template-page-a-propos-php .hamburger-btn svg,
body.single-artiste .hamburger-btn svg,
body.fiche-artiste-page .hamburger-btn svg,
body.single-publication .hamburger-btn svg,
body.single-evenement .hamburger-btn svg,
body.page-template-page-publications .hamburger-btn svg {
    color: var(--vert-tres-fonce) !important;
}

/* ========================================
   RESPONSIVE MOBILE
======================================== */
@media (max-width: 768px) {

    /* Cacher le menu horizontal */
    .navbar-globale {
        display: none !important;
    }


    body.page-template-page-accueil .welcome-nav {
        display: none !important;
    }

    /* Afficher le hamburger */
    .menu-hamburger {
        display: block !important;
    }

}