
/* ===== OVERRIDE DELIVER ===== */
.modular-row.showcase h1,
.modular-row.showcase h2,
.modular-row.showcase a.button {
    float: none !important;
    clear: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-top {
        flex-direction: column;
        gap: 15px;
    }

    .hero-titles {
        text-align: center;
    }

    .hero-titles h1 {
        text-align: center !important;
        font-size: 1.5em !important;
    }

    .hero-titles h2 {
        text-align: center !important;
        font-size: 1em !important;
    }

    .flag-bar {
        margin: 0 auto;
        width: 200px;
        height: 10px;
    }

    .slide-hero-image {
        height: 100px;
    }

    .slide-content.slide-layout-hero {
        padding: 15px;
    }

    .slide-layout-hero .extra-lines li {
        font-size: 0.85em;
    }
}

@media (max-width: 500px) {
    .hero-titles h1 {
        font-size: 1.2em !important;
    }

    .slide-layout-hero .button-container {
        flex-direction: column;
        align-items: center;
    }

    .slide-layout-hero .button-container .button {
        width: 80%;
        text-align: center;
    }

    .slide-hero-image {
        height: 70px;
    }

    .flag-bar {
        width: 160px;
        height: 8px;
    }
}

/* Conteneur en grille ou flexbox pour aligner les cartes */
.services-container {
    display: flex;
    flex-wrap: wrap; /* Permet de passer à la ligne si l'écran est petit */
    gap: 20px; /* Espace entre les rectangles */
    justify-content: center; /* Centre les éléments horizontalement */
    margin-bottom: 40px; /* Espace avant les avis Google */
    padding: 20px;
}

/* Le style du rectangle (la carte) */
.service-card {
    display: flex;
    align-items: center; /* Centre verticalement l'icône et le texte */
    background-color: #ffffff; /* Fond blanc */
    border: 1px solid #e0e0e0; /* Bordure légère */
    border-radius: 8px; /* Coins arrondis */
    padding: 15px 20px;
    text-decoration: none; /* Enlève le soulignement du lien */
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Légère ombre pour le relief */
    transition: all 0.3s ease; /* Animation fluide au survol */
    min-width: 180px; /* Largeur minimale pour que ce soit joli */
    flex: 1 1 200px; /* S'adapte à la taille de l'écran */
}

/* Effet au survol de la souris */
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--flag-red); /* ← PAR ça */
}

/* Style de l'icône */
.service-card .icon {
    font-size: 24px; /* Taille de l'emoji/icône */
    margin-right: 15px; /* Espace entre l'icône et le texte */
    line-height: 1;
}

/* Style du texte */
.service-card .text {
    font-weight: 600;
    font-size: 16px;
}

/* Responsive : Sur mobile, on peut mettre 1 ou 2 par ligne */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column; /* Une seule colonne sur mobile */
        align-items: stretch; /* Prend toute la largeur */
    }
}

/* ===== LOGO ===== */
.logo img {
    max-height: 97px;   /* ← Ajuste selon ta préférence */
    width: auto;
    display: block;
}
/* ===== FOOTER : Texte description justifié ===== */
.footer-module.large p {
    text-align: justify;
}

/* ===== AVIS GOOGLE ===== */
.avis-section {
    background-color: #ffffff;
    padding: 60px 20px;
}

.avis-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Titre */
.avis-title {
    font-size: 1.8em;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
    font-weight: normal;
}

.avis-title span {
    color: var(--flag-gold);
    font-weight: bold;
}

.avis-subtitle {
    color: #aaa;
    font-size: 0.9em;
    margin-bottom: 40px;
}

/* Grille */
.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
    align-items: start;
}

/* Carte */
.avis-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.avis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Avatar + quote */
.avis-avatar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.avis-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--flag-red), var(--flag-gold));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    flex-shrink: 0;
}

/* Guillemet */
.avis-quote {
    font-size: 3em;
    color: var(--flag-gold);
    line-height: 1;
    font-family: Georgia, serif;
}

/* Texte */
.avis-text {
    color: #555;
    font-size: 0.92em;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Auteur */
.avis-author-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.avis-author-info strong {
    color: #1a1a1a;
    font-size: 0.95em;
}

.avis-source {
    color: var(--flag-red);
    font-size: 0.82em;
    font-weight: 500;
}

/* Étoiles */
.avis-stars {
    margin-top: 5px;
}

.star {
    color: #FBBC05;
    font-size: 1.1em;
}
/* ===== REMPLACEMENT VERT → ROUGE partout ===== */
a:hover,
a:focus,
a:active {
    color: var(--flag-red) !important;
}

nav a:hover,
nav a:focus,
nav a.active,
.navbar a:hover,
.navbar a.active,
#navbar a:hover,
#navbar a.active {
    color: var(--flag-red) !important;
    border-color: var(--flag-red) !important;
}

.modular-row a:hover,
.footer a:hover {
    color: var(--flag-red) !important;
}



/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .avis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .avis-grid {
        grid-template-columns: 1fr;
    }

    .avis-title {
        font-size: 1.4em;
    }
}
/* ===== PAGE COURS & SERVICES ===== */

/* Hero */
.cours-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(20, 15, 5, 0.75) 100%
    );
    background-color: #1a1a1a;
}

.cours-hero h1 {
    font-size: 2.5em;
    color: var(--flag-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.cours-hero-sub {
    font-size: 1.2em;
    color: var(--text-cream);
    font-style: italic;
    margin-bottom: 15px;
}

.cours-hero .flag-bar {
    margin: 15px auto;
}

.cours-hero-desc {
    color: var(--text-cream);
    font-size: 1em;
    margin-top: 15px;
    opacity: 0.85;
}

/* Sections */
.cours-section {
    padding: 60px 20px;
    background: #ffffff;
}

.cours-section-alt {
    background: #f5f0e8;
}

.cours-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Titre section */
.cours-section-title {
    font-size: 1.8em;
    color: var(--flag-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-align: center;
}

.cours-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--flag-red), var(--flag-gold));
    margin: 10px auto 30px;
}

/* Info cours */
.cours-info {
    text-align: center;
    color: #666;
    font-size: 0.95em;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* Grille cards */
.cours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* Card */
.cours-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--flag-red);
}

.cours-section-alt .cours-card {
    border-top-color: var(--flag-gold);
}

.cours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Icône */
.cours-card-icon {
    font-size: 2em;
    color: var(--flag-gold);
    margin-bottom: 15px;
}

/* Titre card */
.cours-card h3 {
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

/* Divider */
.cours-card-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--flag-red), var(--flag-gold));
    margin: 10px auto;
}

/* Texte card */
.cours-card p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

/* CTA */
.cours-cta {
    text-align: center;
    padding: 50px 20px;
    background: #1a1a1a;
}

.cours-cta p {
    color: var(--flag-gold);
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.cours-cta .button.button-primary {
    padding: 12px 35px;
    font-size: 1em;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--flag-red);
    border: 2px solid var(--flag-red);
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cours-cta .button.button-primary:hover {
    background-color: #FF1A1A;
    box-shadow: 0 4px 15px rgba(221, 0, 0, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cours-hero h1 {
        font-size: 1.8em;
    }

    .cours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .cours-grid {
        grid-template-columns: 1fr;
    }

    .cours-hero h1 {
        font-size: 1.4em;
    }
}
/* ===== TITRES DE SECTIONS — Cohérence globale ===== */

/* Tous les h2 de sections */
.modular-row h2,
.avis-title,
.cours-section-title,
.section-title {
    font-size: 1.8em !important;
    color: #1a1a1a !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    text-align: center !important;
}

/* Séparateur rouge → or sous chaque titre */
.modular-row h2::after,
.avis-title::after,
.cours-section-title::after,
.section-title::after {
    content: "" !important;
    display: block !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--flag-red), var(--flag-gold)) !important;
    margin: 10px auto 30px !important;
}

/* Sous-titres */
.avis-subtitle,
.cours-info,
.section-subtitle {
    color: #aaa !important;
    font-size: 0.95em !important;
    text-align: center !important;
}

/* Fix spécifique avis — retire la police Courier */
.avis-title {
    font-family: inherit !important;
}

/* Fix spécifique cours — retire la couleur or */
.cours-section-title {
    color: #1a1a1a !important;
}
/* ===== SHOWCASE SLIDER — Domi Deutsch ===== */

:root {
    --flag-black: #1a1a1a;
    --flag-red: #DD0000;
    --flag-gold: #FFCC00;
    --text-white: #ffffff;
    --text-cream: #f0ebe3;
    --primary-color: #DD0000;
}

/* ===== FIX : Couleur titre OR ===== */
.modular-row.showcase h1,
.modular-row.showcase h1 strong,
.showcase h1,
.showcase h1 strong {
    color: #FFCC00 !important;
}

/* ===== FIX : Hauteur slider ===== */
.modular-row.showcase {
    position: relative;
    overflow: hidden;
    min-height: 600px !important;
    height: auto !important;
}

.slideme,
.slideme > div,
#content-slide,
#content-slide .slideme {
    height: auto !important;
    min-height: 600px !important;
}

/* Overlay sombre */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.80) 0%,
        rgba(20, 15, 5, 0.70) 50%,
        rgba(10, 10, 10, 0.80) 100%
    );
    z-index: 1;
}

/* ===== LAYOUT HERO ===== */
.slide-content.slide-layout-hero {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 30px;
    box-sizing: border-box;
}

/* ===== BLOC HAUT : Image + Titres côte à côte ===== */
.hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    width: 100%;
}

/* Image carnet à gauche */
.hero-image {
    flex-shrink: 0;
}

.slide-hero-image {
    height: auto;
    max-height: 140px;
    width: auto;
    border-radius: 8px;
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 204, 0, 0.15);
    border: 2px solid rgba(255, 204, 0, 0.3);
    transition: transform 0.3s ease;
}

.slide-hero-image:hover {
    transform: scale(1.05);
}

/* Titres à droite de l'image */
.hero-titles {
    text-align: left;
}

.hero-titles h1 {
    font-size: 2.2em;
    color: var(--flag-gold) !important;
    margin: 0 0 5px 0 !important;
    padding: 0 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    float: none !important;
    width: auto !important;
    text-align: left !important;
}

/* ===== SLOGAN ===== */
.hero-titles .slogan {
    font-size: 1.15em;
    font-style: italic;
    color: var(--text-cream);
    margin: 0 0 8px 0;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

/* ===== SOUS-TITRE ===== */
.hero-titles h2 {
    font-size: 1.15em;
    color: var(--text-cream) !important;
    font-weight: 300;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    float: none !important;
    width: auto !important;
    text-align: left !important;
}

/* ===== BARRE DRAPEAU ===== */
.flag-bar {
    display: flex;
    width: 280px;
    height: 14px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(255, 204, 0, 0.15);
    animation: flagBarGrow 1s ease-out forwards;
}

.flag-bar-black {
    flex: 1;
    background: linear-gradient(180deg, #333 0%, var(--flag-black) 100%);
}

.flag-bar-red {
    flex: 1;
    background: linear-gradient(180deg, #FF1A1A 0%, var(--flag-red) 100%);
}

.flag-bar-gold {
    flex: 1;
    background: linear-gradient(180deg, var(--flag-gold) 0%, #E6B800 100%);
}

@keyframes flagBarGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 280px;
        opacity: 1;
    }
}

/* ===== LISTE POINTS FORTS ===== */
.slide-layout-hero .extra-lines {
    list-style: none;
    padding: 0;
    margin: 8px 0;
    display: inline-block;
    text-align: left;
}

.slide-layout-hero .extra-lines li {
    font-size: 0.95em;
    color: var(--text-cream);
    padding: 3px 0;
    line-height: 1.5;
}

.slide-layout-hero .extra-lines li::before {
    content: "✔ ";
    color: var(--flag-red);
    font-weight: bold;
    margin-right: 6px;
}

/* ===== HIGHLIGHT ===== */
.slide-layout-hero .highlight {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--flag-gold);
    margin: 10px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== BOUTONS ===== */
.slide-layout-hero .button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.slide-layout-hero .button.button-primary {
    padding: 10px 25px;
    font-size: 0.9em;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-color: var(--flag-red);
    border: 2px solid var(--flag-red);
    color: var(--text-white);
    font-weight: bold;
    text-decoration: none;
    float: none !important;
}

.slide-layout-hero .button.button-primary:hover {
    background-color: #FF1A1A;
    border-color: #FF1A1A;
    box-shadow: 0 4px 15px rgba(221, 0, 0, 0.4);
}

.slide-layout-hero .button.button-secondary {
    padding: 10px 25px;
    font-size: 0.9em;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-color: transparent;
    border: 2px solid var(--flag-gold);
    color: var(--flag-gold);
    font-weight: bold;
    text-decoration: none;
    float: none !important;
}

.slide-layout-hero .button.button-secondary:hover {
    background-color: var(--flag-gold);
    color: var(--flag-black);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}



/* ===== PAGE LIEUX, HORAIRES & TARIFS ===== */

.lieux-section {
    padding: 60px 20px;
    background: #ffffff;
}

.lieux-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Grille 3 colonnes */
.lieux-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

/* Card */
.lieux-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--flag-red);
}

/* Card du milieu — bordure or */
.lieux-card-center {
    border-top-color: var(--flag-gold);
}

.lieux-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Icône */
.lieux-card-icon {
    font-size: 2.2em;
    color: var(--flag-gold);
    margin-bottom: 15px;
}

/* Titre card */
.lieux-card h3 {
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Divider */
.lieux-card-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--flag-red), var(--flag-gold));
    margin: 10px auto 20px;
}

/* Liste */
.lieux-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.lieux-list li {
    color: #555;
    font-size: 0.92em;
    line-height: 1.6;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.lieux-list li:last-child {
    border-bottom: none;
}

.lieux-list li::before {
    content: "→ ";
    color: var(--flag-red);
    font-weight: bold;
}

/* Prix mis en évidence */
.lieux-price {
    font-size: 1.6em !important;
    font-weight: bold !important;
    color: #1a1a1a !important;
    text-align: center !important;
    padding: 12px 0 !important;
    border-bottom: none !important;
}

.lieux-price::before {
    content: "" !important;
}

.lieux-price span {
    font-size: 0.5em;
    color: #888;
    font-weight: normal;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .lieux-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}
/* ===== AVIS — Masqués temporairement ===== */
.avis-section {
    display: none !important;
}
