/*
Theme Name: Astra Child
Theme URI: http://localhost
Description: Thème enfant Astra pour le site artistes et spectacles
Author: Ton nom
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

.artistes-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 24px;
}

.artistes-header {
    margin-bottom: 32px;
}

.filtres-disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.filtre-discipline {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.95rem;
}

.filtre-discipline:hover,
.filtre-discipline.actif {
    border-color: #333;
}

.grille-artistes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.carte-artiste {
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carte-artiste:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.carte-artiste-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f3f3;
}

.carte-artiste-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carte-artiste-contenu {
    padding: 20px;
}

.carte-artiste-titre {
    font-size: 1.35rem;
    margin: 0 0 8px;
}

.carte-artiste-titre a {
    text-decoration: none;
}

.carte-artiste-discipline {
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.carte-artiste-extrait {
    margin-bottom: 16px;
}

.carte-artiste-lien {
    font-weight: 600;
    text-decoration: none;
}

.pagination-artistes {
    margin-top: 40px;
}

@media (max-width: 900px) {
    .grille-artistes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .grille-artistes {
        grid-template-columns: 1fr;
    }
}
/* CARDS */
.valeur-ajoutee-section {
    padding: 70px 24px;
    background: #f7f1e8;
}

.valeur-ajoutee-container {
    max-width: 1200px;
    margin: 0 auto;
}

.valeur-ajoutee-intro {
    max-width: 760px;
    margin-bottom: 40px;
}

.valeur-ajoutee-surtitre {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #7a006e;
}

.valeur-ajoutee-intro h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    color: #5F2E64;
}

.valeur-ajoutee-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.valeur-ajoutee-cartes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.valeur-carte {
    background: #ffffff;
    border: 1px solid rgba(111, 0, 109, 0.15);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.valeur-carte-icone {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #5F2E64;
    color: #ffffff;
    font-weight: 700;
}

.valeur-carte h3 {
    margin: 0 0 14px;
    font-size: 1.35rem;
    color: #111111;
}

.valeur-carte p {
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .valeur-ajoutee-cartes {
        grid-template-columns: 1fr;
    }

    .valeur-carte {
        padding: 24px;
    }
}
.services-section {
    padding: 20px 24px;
    background: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    max-width: 780px;
    margin-bottom: 40px;
}

.services-surtitre {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #7a006e;
}

.services-intro h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    color: #5F2E64;
}

.services-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-cartes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-carte {
    position: relative;
    background: #f7f1e8;
    border: 1px solid rgba(111, 0, 109, 0.15);
    border-radius: 18px;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.service-carte::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(111, 0, 109, 0.08);
}

.service-carte-icone {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #5F2E64;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-carte h3 {
    margin: 0 0 14px;
    font-size: 1.35rem;
    color: #111111;
    position: relative;
    z-index: 1;
}

.service-carte p {
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .services-cartes {
        grid-template-columns: 1fr;
    }

    .service-carte {
        padding: 24px;
    }
}
/* Zone parler de votre proet */
.projet-cta {
    padding: 50px 24px;
}

.projet-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 22px;
    background: linear-gradient(135deg, #5F2E64 0%, #9b2d8f 100%);
    color: #ffffff;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 26px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(111, 0, 109, 0.22);
}

.projet-icon {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    background: #ffffff;
    color: #5F2E64;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.projet-icon span {
    line-height: 1;
}

.projet-content {
    max-width: 680px;
}

.projet-surtitre {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.9;
}

.projet-content h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.1;
}

.projet-content p {
    margin: 0;
    line-height: 1.6;
}

.projet-action {
    justify-self: end;
}

.projet-button {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 999px;
    background: #ffffff;
    color: #5F2E64;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.projet-button:hover {
    color: #5F2E64;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 800px) {
    .projet-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .projet-icon {
        margin: 0 auto;
    }

    .projet-action {
        justify-self: center;
    }
}
/* Zone télécharger plaquette */ 
.plaquette-download {
    padding: 50px 24px;
}

.plaquette-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 22px;
    background: linear-gradient(135deg, #5F2E64 0%, #9b2d8f 100%);
    color: #ffffff;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 26px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(111, 0, 109, 0.22);
}

.plaquette-icon {
    width: 76px;
    height: 96px;
    border-radius: 14px;
    background: #ffffff;
    color: #5F2E64;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.06em;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.plaquette-icon::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-top: 22px solid #f7f1e8;
    border-left: 22px solid transparent;
    border-radius: 0 14px 0 0;
}

.plaquette-icon span {
    position: relative;
    z-index: 1;
}

.plaquette-content {
    max-width: 680px;
}

.plaquette-surtitre {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.9;
}

.plaquette-content h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.1;
}

.plaquette-content p {
    margin: 0;
    line-height: 1.6;
}

.plaquette-action {
    justify-self: end;
}

.plaquette-button {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 999px;
    background: #ffffff;
    color: #5F2E64;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plaquette-button:hover {
    color: #5F2E64;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 800px) {
    .plaquette-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .plaquette-icon {
        margin: 0 auto;
    }

    .plaquette-action {
        justify-self: center;
    }
}
/* ================================
   Header / Menu - Style 7 sur Scène
================================ */

.site-header,
.ast-primary-header-bar {
    background: #f7f1e8;
    border-bottom: 1px solid rgba(111, 0, 109, 0.12);
}

.ast-primary-header-bar {
    box-shadow: 0 8px 28px rgba(111, 0, 109, 0.08);
}

.site-branding {
    display: block;
    align-items: center;
    gap: 14px;
}

.site-logo-img img,
.custom-logo {
    max-height: 72px;
    width: auto;
}

.ast-site-title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-title,
.site-title a {
    color: #5F2E64;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-decoration: none;
}

.site-description {
    display: block;
    color: #2b2b2b;
    font-size: 0.88rem;
    line-height: 0;
    margin-top: 0px;
    max-width: 500px;
}

/* Menu desktop */
.main-header-menu,
.ast-builder-menu-1 .main-header-menu {
    gap: 6px;
}

.main-header-menu > .menu-item > .menu-link,
.ast-builder-menu-1 .menu-item > .menu-link {
    color: #2b2b2b;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 12px 14px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-header-menu > .menu-item > .menu-link:hover,
.ast-builder-menu-1 .menu-item > .menu-link:hover,
.main-header-menu > .current-menu-item > .menu-link,
.ast-builder-menu-1 .current-menu-item > .menu-link {
    background: rgba(111, 0, 109, 0.10);
    color: #5F2E64;
}

/* Contact en bouton */
.main-header-menu > .menu-item:last-child > .menu-link,
.ast-builder-menu-1 .main-header-menu > .menu-item:last-child > .menu-link {
    background: #5F2E64;
    color: #ffffff;
    padding: 12px 20px;
    box-shadow: 0 10px 24px rgba(111, 0, 109, 0.20);
}

.main-header-menu > .menu-item:last-child > .menu-link:hover,
.ast-builder-menu-1 .main-header-menu > .menu-item:last-child > .menu-link:hover {
    background: #9b2d8f;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Sous-menus */
.main-header-menu .sub-menu,
.ast-builder-menu-1 .sub-menu {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(111, 0, 109, 0.12);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
}

.main-header-menu .sub-menu .menu-link,
.ast-builder-menu-1 .sub-menu .menu-link {
    color: #2b2b2b;
    font-weight: 600;
}

.main-header-menu .sub-menu .menu-link:hover,
.ast-builder-menu-1 .sub-menu .menu-link:hover {
    background: #f7f1e8;
    color: #5F2E64;
}

/* Menu mobile */
.ast-mobile-header-wrap,
.ast-mobile-popup-drawer .ast-mobile-popup-inner {
    background: #f7f1e8;
}

.ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg {
    fill: #5F2E64;
}

.ast-mobile-popup-drawer .main-header-menu .menu-link {
    color: #2b2b2b;
    font-weight: 700;
}

.ast-mobile-popup-drawer .main-header-menu .menu-link:hover {
    color: #5F2E64;
}

/* Responsive */
@media (max-width: 921px) {
    .site-logo-img img,
    .custom-logo {
        max-height: 58px;
    }

    .site-title,
    .site-title a {
        font-size: 1.25rem;
    }

    .site-description {
        font-size: 0.78rem;
        max-width: 260px;
    }
    .ast-site-title-wrap {
	    display: -webkit-inline-box;
    }
    .ast-site-identity {
	    padding: 0.2em 0;
    }
    .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link :hover .ast-hf-mobile-menu:hover {
	    color:yellow;
    }
}

@media (max-width: 544px) {
    .site-branding {
        gap: 10px;
    }

    .site-description {
        display: none;
    }
}
/* ================================
   Archives Artistes / Spectacles / Références
================================ */

.archive-page-container,
.artistes-container,
.spectacles-container,
.references-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 24px;
}

.archive-page-header,
.artistes-header,
.spectacles-header,
.references-header {
    margin-bottom: 36px;
    padding: 42px;
    border-radius: 26px;
    background: linear-gradient(135deg, #f7f1e8 0%, #5F2E64 100%);
    border: 1px solid rgba(111, 0, 109, 0.12);
    box-shadow: 0 16px 42px rgba(111, 0, 109, 0.08);
}

.archive-page-surtitre,
.artistes-surtitre,
.spectacles-surtitre,
.references-surtitre {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: #7a006e;
    font-size: 0.9rem;
}

.archive-page-header h1,
.artistes-header h1,
.spectacles-header h1,
.references-header h1 {
    margin: 0 0 14px;
    color: #5F2E64;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.02;
}

.archive-page-header p,
.artistes-header p,
.spectacles-header p,
.references-header p {
    max-width: 780px;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.7;
}

/* Grilles communes */

.grille-artistes,
.grille-spectacles,
.grille-references {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

/* Cartes communes */

.carte-artiste,
.carte-spectacle,
.carte-reference {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(111, 0, 109, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carte-artiste:hover,
.carte-spectacle:hover,
.carte-reference:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(111, 0, 109, 0.14);
}

.carte-artiste-image,
.carte-spectacle-image,
.carte-reference-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f7f1e8;
}

.carte-artiste-image img,
.carte-spectacle-image img,
.carte-reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carte-artiste-contenu,
.carte-spectacle-contenu,
.carte-reference-contenu {
    padding: 22px;
}

.carte-artiste-titre,
.carte-spectacle-titre,
.carte-reference-titre {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.2;
}

.carte-artiste-titre a,
.carte-spectacle-titre a,
.carte-reference-titre a {
    color: #111111;
    text-decoration: none;
}

.carte-artiste-titre a:hover,
.carte-spectacle-titre a:hover,
.carte-reference-titre a:hover {
    color: #5F2E64;
}

.carte-artiste-discipline,
.carte-spectacle-type,
.carte-reference-type {
    display: inline-block;
    margin: 0 0 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(111, 0, 109, 0.10);
    color: #5F2E64;
    font-weight: 700;
    font-size: 0.88rem;
}

.carte-artiste-extrait,
.carte-spectacle-extrait,
.carte-reference-extrait {
    margin: 0 0 18px;
    line-height: 1.6;
}

.carte-artiste-lien,
.carte-spectacle-lien,
.carte-reference-lien {
    display: inline-block;
    color: #5F2E64;
    font-weight: 800;
    text-decoration: none;
}

.carte-artiste-lien:hover,
.carte-spectacle-lien:hover,
.carte-reference-lien:hover {
    text-decoration: underline;
}

.pagination-artistes,
.pagination-spectacles,
.pagination-references {
    margin-top: 42px;
}

/* Filtres */

.filtres-disciplines,
.filtres-types-spectacles,
.filtres-types-references {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.filtre-discipline,
.filtre-type-spectacle,
.filtre-type-reference {
    display: inline-block;
    padding: 9px 15px;
    border: 1px solid rgba(111, 0, 109, 0.20);
    border-radius: 999px;
    color: #2b2b2b;
    background: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.94rem;
}

.filtre-discipline:hover,
.filtre-discipline.actif,
.filtre-type-spectacle:hover,
.filtre-type-spectacle.actif,
.filtre-type-reference:hover,
.filtre-type-reference.actif {
    background: #5F2E64;
    color: #ffffff;
    border-color: #5F2E64;
}

/* Responsive */

@media (max-width: 950px) {
    .grille-artistes,
    .grille-spectacles,
    .grille-references {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .archive-page-header,
    .artistes-header,
    .spectacles-header,
    .references-header {
        padding: 32px;
    }
}

@media (max-width: 620px) {
    .grille-artistes,
    .grille-spectacles,
    .grille-references {
        grid-template-columns: 1fr;
    }

    .archive-page-header,
    .artistes-header,
    .spectacles-header,
    .references-header {
        padding: 26px;
    }
}
/* ================================
   Fiches individuelles
================================ */

.fiche-artiste,
.fiche-spectacle,
.fiche-reference {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 24px;
}

.fiche-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 42px;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, #f7f1e8 0%, #ffffff 100%);
    border: 1px solid rgba(111, 0, 109, 0.12);
    box-shadow: 0 16px 42px rgba(111, 0, 109, 0.08);
}

.fiche-hero h1 {
    margin: 0 0 16px;
    color: #5F2E64;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.02;
}

.fiche-surtitre {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7a006e;
    font-weight: 800;
    font-size: 0.9rem;
}

.fiche-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.fiche-badge {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(111, 0, 109, 0.10);
    color: #5F2E64;
    font-weight: 800;
    font-size: 0.9rem;
}

.fiche-hero-image {
    border-radius: 22px;
    overflow: hidden;
    background: #f7f1e8;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
}

.fiche-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.fiche-section {
    margin-top: 34px;
    padding: 32px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(111, 0, 109, 0.10);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.fiche-section h2 {
    margin: 0 0 18px;
    color: #5F2E64;
    font-size: 1.7rem;
}

.fiche-section p,
.fiche-section li {
    line-height: 1.7;
}

.fiche-liens {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.fiche-liens a,
.fiche-bouton {
    display: inline-block;
    padding: 11px 18px;
    border-radius: 999px;
    background: #5F2E64;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
}

.fiche-liens a:hover,
.fiche-bouton:hover {
    background: #9b2d8f;
    color: #ffffff;
}

.fiche-grid-associes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.fiche-carte-associee {
    border-radius: 16px;
    overflow: hidden;
    background: #f7f1e8;
    border: 1px solid rgba(111, 0, 109, 0.10);
}

.fiche-carte-associee img {
    width: 100%;
    height: auto;
    display: block;
}

.fiche-carte-associee-contenu {
    padding: 18px;
}

.fiche-carte-associee h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.fiche-carte-associee a {
    color: #5F2E64;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 850px) {
    .fiche-hero {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .fiche-grid-associes {
        grid-template-columns: 1fr;
    }
}
/* ================================
   Page À propos
================================ */

.apropos-hero,
.apropos-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, #f7f1e8 0%, #ffffff 100%);
    border: 1px solid rgba(111, 0, 109, 0.12);
    box-shadow: 0 16px 42px rgba(111, 0, 109, 0.08);
}

.apropos-hero h1,
.apropos-section h2 {
    margin-top: 0;
    color: #5F2E64;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.04;
}

.apropos-section h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.apropos-hero p,
.apropos-section p {
    max-width: 850px;
    font-size: 1.08rem;
    line-height: 1.75;
}

.apropos-hero p:first-of-type {
    font-size: 1.22rem;
    font-weight: 600;
    color: #2b2b2b;
}

/* Variante pour une section plus visuelle */
.apropos-confiance {
    background: linear-gradient(135deg, #5F2E64 0%, #9b2d8f 100%);
    color: #ffffff;
}

.apropos-confiance h2,
.apropos-confiance p {
    color: #ffffff;
}

/* Cartes */
.apropos-cartes {
    max-width: 1100px;
    margin: 50px auto;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.apropos-carte {
    padding: 30px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(111, 0, 109, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.apropos-carte h2,
.apropos-carte h3 {
    margin-top: 0;
    color: #5F2E64;
    font-size: 1.4rem;
}

.apropos-carte p {
    line-height: 1.7;
}

/* Images éventuelles */
.apropos-hero img,
.apropos-section img,
.apropos-carte img {
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .apropos-hero,
    .apropos-section {
        margin: 32px 20px;
        padding: 30px;
    }

    .apropos-cartes {
        grid-template-columns: 1fr;
        margin: 32px 20px;
    }
}
/* ================================
   Hero accueil - 7 sur Scène
================================ */

.home-hero-evenements {
    position: relative;
    max-width: 1200px;
    min-height: 390px;
    margin: 32px auto 30px;
    padding: 48px;
    border-radius: 26px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(10, 10, 14, 0.96) 0%, rgba(10, 10, 14, 0.78) 42%, rgba(10, 10, 14, 0.22) 100%),
            url("/wp-content/uploads/2026/06/6470f0de-0107-444b-a975-3ff3181b5a01.jpg");
    background-size: cover;
    background-position: center right;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.home-hero-evenements::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 28%, rgba(255, 124, 63, 0.38), transparent 26%),
        radial-gradient(circle at 86% 24%, rgba(155, 45, 143, 0.42), transparent 28%),
        linear-gradient(135deg, rgba(111, 0, 109, 0.16), transparent 50%);
    pointer-events: none;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 470px;
}

.home-hero-surtitre {
    margin: 0 0 14px;
    color: #f7f1e8;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    font-weight: 800;
}

.home-hero-content h1 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.home-hero-texte {
    max-width: 390px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.12rem;
    line-height: 1.6;
}

.home-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #5F2E64 0%, #9b2d8f 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(111, 0, 109, 0.38);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(111, 0, 109, 0.48);
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 800px) {
    .home-hero-evenements {
        margin: 24px 20px 44px;
        min-height: 420px;
        padding: 38px 28px;
        background:
            linear-gradient(90deg, rgba(10, 10, 14, 0.94) 0%, rgba(10, 10, 14, 0.72) 100%),
            url("/wp-content/uploads/2026/06/6470f0de-0107-444b-a975-3ff3181b5a01.jpg");
        background-size: cover;
        background-position: center;
    }

    .home-hero-content {
        max-width: 100%;
    }

    .home-hero-texte {
        font-size: 1rem;
    }
}

/* Header : logo + nom + slogan à gauche, menu à droite */
/*
.ast-primary-header-bar .site-primary-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: block;
    align-items: center;
    gap: 14px;
}

/* Taille raisonnable du logo */
/*.site-logo-img img,
.custom-logo {
    max-height: 70px;
    width: auto;
}

/* Bloc texte à côté du logo */
/*.ast-site-title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Nom de l’entreprise */
/*.site-title,
.site-title a {
    margin: 0;
    color: #5F2E64;
    font-weight: 800;
    line-height: 1.05;
    text-decoration: none;
}

/* Slogan sous le nom */
/*.site-description {
    display: block;
    margin: 4px 0 0;
    color: #2b2b2b;
    font-size: 0.86rem;
    line-height: 0;
    max-width: 500px;
}

/* Menu à droite */
/*.ast-builder-menu-1 {
    margin-left: auto;
}

@media (max-width: 921px) {
    .site-logo-img img,
    .custom-logo {
        max-height: 55px;
    }

    .site-description {
        font-size: 0.76rem;
        max-width: 260px;
    }
}

@media (max-width: 544px) {
    .site-description {
        display: none;
    }
}*/
/* ================================
   Page Nos réalisations
================================ */

.realisations-header {
    max-width: 1100px;
    margin: 50px auto 36px;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, #f7f1e8 0%, #ffffff 100%);
    border: 1px solid rgba(111, 0, 109, 0.12);
    box-shadow: 0 16px 42px rgba(111, 0, 109, 0.08);
}

.realisations-header h1,
.realisations-header h2 {
    margin-top: 0;
    color: #5F2E64;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.04;
}

.realisations-header p {
    max-width: 780px;
    font-size: 1.08rem;
    line-height: 1.75;
}

/* Galerie façon masonry, adaptée aux images portrait, paysage et carrées */

.realisations-gallery {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 24px;
    column-count: 3;
    column-gap: 24px;
}

.realisations-gallery figure,
.realisations-gallery .wp-block-image {
    break-inside: avoid;
    margin: 0 0 24px;
    border-radius: 22px;
    overflow: hidden;
    background: #f7f1e8;
    border: 1px solid rgba(111, 0, 109, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.realisations-gallery img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.25s ease;
}

.realisations-gallery figure:hover img,
.realisations-gallery .wp-block-image:hover img {
    transform: scale(1.03);
}

/* Légendes éventuelles */

.realisations-gallery figcaption {
    padding: 12px 16px;
    background: #ffffff;
    color: #2b2b2b;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Section avis Google */

.google-reviews-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 42px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(111, 0, 109, 0.12);
    box-shadow: 0 16px 42px rgba(111, 0, 109, 0.08);
}

.google-reviews-section h2 {
    margin-top: 0;
    color: #5F2E64;
}

/* Responsive */

@media (max-width: 950px) {
    .realisations-gallery {
        column-count: 2;
    }

    .realisations-header,
    .google-reviews-section {
        margin: 32px 20px;
        padding: 30px;
    }
}

@media (max-width: 620px) {
    .realisations-gallery {
        column-count: 1;
        padding: 0 20px;
    }
}
/* ================================
   Prochaines dates - Accueil
================================ */

.prochaines-dates-section {
    padding: 20px 24px 60px;
    background-color: #5F2E64;
    border-radius: 26px;
}

.prochaines-dates-container {
    max-width: 1200px;
    margin: 0 auto;
}

.prochaines-dates-header {
    margin-bottom: 28px;
    padding: 34px;
    border-radius: 26px;
    background: linear-gradient(135deg, #f7f1e8 0%, #ffffff 100%);
    border: 1px solid rgba(111, 0, 109, 0.12);
    box-shadow: 0 16px 42px rgba(111, 0, 109, 0.08);
}

.prochaines-dates-surtitre {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: #7a006e;
    font-size: 0.9rem;
}

.prochaines-dates-header h2 {
    margin: 0 0 14px;
    color: #6f006d;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.04;
}

.prochaines-dates-header p {
    max-width: 760px;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.prochaines-dates-liste {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.prochaine-date-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(111, 0, 109, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.prochaine-date-date {
    min-width: 86px;
    padding: 12px 10px;
    border-radius: 16px;
    background: #6f006d;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
}

.prochaine-date-date span {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.prochaine-date-content h3 {
    margin: 0 0 6px;
    color: #111111;
    font-size: 1.15rem;
}

.prochaine-date-content p {
    margin: 0;
    line-height: 1.5;
}

.prochaine-date-link {
    display: inline-block;
    padding: 9px 14px;
    border-radius: 999px;
    background: #f7f1e8;
    color: #6f006d;
    text-decoration: none;
    font-weight: 800;
}

.prochaine-date-link:hover {
    background: #6f006d;
    color: #ffffff;
}

.prochaines-dates-empty {
    padding: 24px;
    border-radius: 18px;
    background: #f7f1e8;
    border: 1px solid rgba(111, 0, 109, 0.12);
}
.prochaine-date-content h3 a {
    color: #111111;
    text-decoration: none;
}

.prochaine-date-content h3 a:hover {
    color: #6f006d;
    text-decoration: underline;
}

@media (max-width: 1050px) {
    .prochaines-dates-liste {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .prochaines-dates-section {
        padding: 10px 20px 44px;
    }

    .prochaines-dates-header {
        padding: 26px;
    }

    .prochaine-date-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .prochaine-date-date {
        width: fit-content;
    }
}
