/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Empêcher le débordement horizontal */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* Corps de page - fond noir */
body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #333;
    line-height: 1.6;
}

/* Conteneur principal - largeur 1160px max */
.container {
    max-width: 1160px;
    margin: 0 auto;
    background-color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Rectangle de contact en haut */
.contact-bar {
    background: linear-gradient(135deg, #d4572a, #c35635);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.contact-mobile {
    display: none;
}

.contact-desktop {
    display: inline;
}

/* Header */
header {
    background: #000000;
    padding: 20px;
}

/* Barre mobile avec menu et téléphone */
.mobile-header {
    display: none;
    gap: 0;
}

/* Bouton hamburger - caché par défaut sur desktop */
.menu-toggle {
    display: none;
    background: #000000;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 20px;
    cursor: pointer;
    flex: 1;
    text-align: left;
    font-weight: bold;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: #d4572a;
}

/* Bouton téléphone - caché par défaut sur desktop */
.phone-button {
    display: none;
    background: #000000;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
    white-space: nowrap;
    border: none;
}

.phone-button:hover {
    background: linear-gradient(135deg, #4a7c59, #2d5a3d);
}

.phone-icon {
    font-size: 20px;
}

.phone-text {
    font-size: 16px;
}

/* Menu de navigation */
.menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.menu li {
    display: inline-block;
}

.menu a {
    display: block;
    background: #000000;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.3s ease;
}

.menu a:hover,
.menu a.active {
    color: #c35635;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Logo dans le menu */
.menu img {
    display: block;
}

/* Contenu principal */
main {
    /* Pas de padding global, chaque section gère son propre espacement */
}

.equal-height {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-self: stretch;
}

/* PAGE D'ACCUEIL - SECTIONS */

/* Section 1: Hero avec image d'éventails */
.hero-section {
    background-color: #ffffff;
    position: relative;
}

.hero-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section 2: Fond noir */
.black-section {
    background-color: #000000;
    padding: 60px 30px;
    text-align: center;
}

.black-section h1 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
}
.black-section h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: normal;
}
.black-section p {
    color: white;
    font-size: 15px;
    line-height: 1.6;
}

/* Style pour les listes dans les sections noires */
.black-section ul {
    text-align: left;
    margin: 20px auto;
    padding-left: 0;
    list-style: none;
    max-width: 800px;
}

.black-section li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
    color: white;
    line-height: 1.5;
}

/* Ajouter des puces personnalisées */
.black-section li::before {
    content: "•";
    color: #c35635;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

/* Style pour les titres dans les listes */
.black-section .list-title {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.black-section .list-subtitle {
    font-size: 16px;
    font-weight: bold;
    color: #c35635;
    margin-bottom: 10px;
    text-align: center;
}

/* Section 2: Fond blanc */
.white-section {
    background-color: #ffffff;
    padding: 60px 30px;
    text-align: center;
}

.white-section h1, .white-section h2 {
    color: black;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
}

.white-section h3 {
    color: black;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: normal;
    line-height: 1.8;
}

.white-section p {
    color: black;
    font-size: 18px;
    line-height: 1.6;
}

/* Forcer l'interligne pour le contenu dynamique des prochaines dates */
#prochaines-dates {
    display: block;
    line-height: 2;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

/* Annuler le positionnement absolu pour les message-line dans la section statique */
#prochaines-dates .message-line {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: block !important;
    margin: 15px auto !important;
    white-space: normal !important;
    text-align: center !important;
    width: auto !important;
    max-width: 100% !important;
}

#prochaines-dates .message-container {
    position: relative !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
}

/* Formatage des messages dans la section statique */
#prochaines-dates h3 {
    color: black;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

#prochaines-dates p {
    color: black;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    margin: 10px auto;
}

/* Section 3: Fond couleur contact bar (orange) */
.orange-section {
    background: linear-gradient(135deg, #d4572a, #c35635);
    padding: 60px 30px;
    text-align: center;
}
/* Section 3: Fond couleur contact bar (orange) */
.orange-section-page-start {
    background: linear-gradient(135deg, #d4572a, #c35635);
    padding-top: 15px;
	 padding-bottom: 1px;
    text-align: center;
}
.orange-section-page-start h1, .orange-section h2 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: normal;
}
.orange-section h1, .orange-section h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: normal;
}

.orange-section h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: normal;
}

.orange-section p {
    color: white;
    font-size: 16px;
    line-height: 1.6;
}

/* PAGES INTÉRIEURES - Styles généraux */
.page-content {
    padding: 40px 30px;
    background-color: #ffffff;
}

.page-content h1 {
    color: #2d5a3d;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.page-content p {
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.layout-section {
    padding: 40px 30px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.text-column {
    background-color: rgba(0,0,0,0.8);
    padding: 20px;
    border: 2px solid #c35635;
}

.text-column h2, .text-column h3, .text-column p {
    color: white;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Footer */
.footer {
    background-color: #282a2b;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-content {
    max-width: 1160px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #c35635;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4572a;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 12px;
    color: #ccc;
    line-height: 1.4;
}

/* Bouton retour en haut */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #d4572a, #c35635);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #c35635, #d4572a);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.back-to-top.show {
    display: block;
}

/* Hero section avec animation */
.hero-container {
    position: relative;
    width: 100%;
}

.hero-container img {
    width: 100%;
    height: auto;
    display: block;
}

.eventail-content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Slider - Styles gérés dynamiquement par JavaScript */
.text-slider {
    padding: 20px;
    animation: fadeInOut 6s ease-in-out infinite;
}

.slider-image {
    max-width: 100%;
    height: auto;
    animation: fadeInOut 6s ease-in-out;
   /* animation: slideMessage 6s ease-in-out infinite;
   animation: slideMessage 6s ease-in-out;*/
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    20%, 80% { opacity: 1; }
}

/*@keyframes slideMessage {
    0%   { opacity: 0; transform: translateX(-100%); }
    10%  { opacity: 1; transform: translateX(0); }
    90%  { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(100%); }
}
/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    /* Barre de contact réduite sur mobile */
    .contact-bar {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .contact-mobile {
        display: inline;
    }
    
    .contact-desktop {
        display: none;
    }
    
    /* Header et menu mobile */
    header {
        padding: 0;
    }
    
    /* Afficher la barre mobile */
    .mobile-header {
        display: flex !important;
        width: 100%;
    }
    
    /* Afficher le bouton hamburger sur mobile */
    .menu-toggle {
        display: block !important;
    }
    
    /* Afficher le bouton téléphone sur mobile */
    .phone-button {
        display: flex !important;
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    /* Menu caché par défaut sur mobile */
    .menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #000;
        padding: 0;
        margin: 0;
    }
    
    /* Menu visible quand activé */
    .menu.active {
        display: flex;
    }
    
    .menu li {
        display: block;
        width: 100%;
        border-bottom: 1px solid #333;
    }
    
    .menu a {
        width: 100%;
        text-align: center;
        margin: 0;
        border-radius: 0;
        transform: none !important;
        padding: 15px 20px;
    }
    
    .menu a:hover,
    .menu a.active {
        transform: none !important;
        box-shadow: none;
    }
    
    /* Cacher le logo dans le menu mobile */
    .menu img {
        display: none;
    }
    
    /* Adapter l'animation pour mobile - zone réduite */
    .eventail-content {
        width: 65%;
        top: 25%;
        height: 30%;
    }
    
    /* Réduire TOUT le contenu du slider avec scale */
    .text-slider {
        padding: 0;
        transform: scale(0.85) !important;
        transform-origin: center center;
    }
    
    /* Réduire spécifiquement les images */
    .text-slider img {
        max-width: 85% !important;
        max-height: 85% !important;
    }
    
    /* Réduire le texte fixe "PROPOSE" sur tablettes/mobiles */
    .text-slider {
        font-size: 0.85em !important;
    }
    
    /* Styles pour les messages générés avec ajustement automatique */
    .text-slider .message-line {
        transition: all 0.3s ease;
    }
    
    /* IMPORTANT : Forcer la section statique à être responsive sur mobile */
    #prochaines-dates .message-line {
        font-size: 16px !important;
        padding: 5px 15px !important;
    }
    
    /* Section statique - formatage des messages */
    #prochaines-dates h3 {
        font-size: 18px !important;
    }
    
    #prochaines-dates p {
        font-size: 16px !important;
        line-height: 1.8;
    }
    
    /* Sections */
    .black-section,
    .orange-section,
    .white-section {
        padding: 40px 20px;
    }
    
    .black-section h1,
    .white-section h1,
    .white-section h2 {
        font-size: 24px;
    }
    
    .orange-section h1,
    .orange-section h2 {
        font-size: 22px;
    }
    
    .page-content {
        padding: 30px 20px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer responsive */
    .footer {
        padding: 20px 15px;
    }
    
    .footer-copyright {
        font-size: 11px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Breakpoint pour petits smartphones (iPhone SE, petits Android) */
@media (max-width: 355px) {
    .container {
        margin: 0 10px;
    }
    
    .eventail-content {
        width: 90%;
        top: 12%;
    }
    
    .text-slider {
        padding: 5px;
        transform: scale(0.80) !important;
        font-size: 0.85em !important;
    }
    
    .text-slider img {
        max-width: 75% !important;
        max-height: 75% !important;
    }
    
    #prochaines-dates .message-line {
        font-size: 14px !important;
    }
    
    #prochaines-dates h3 {
        font-size: 16px !important;
    }
    
    #prochaines-dates p {
        font-size: 14px !important;
    }
    
    .black-section,
    .orange-section,
    .white-section {
        padding: 30px 15px;
    }
    
    .black-section h1,
    .white-section h1,
    .white-section h2 {
        font-size: 20px;
    }
    
    .orange-section h1,
    .orange-section h2 {
        font-size: 18px;
    }
    
    .page-content {
        padding: 20px 15px;
    }
}

@media (min-width: 355px) and (max-width: 375px) {
    .text-slider {
       transform: scale(0.65)  !important;
        font-size: 2.8em !important;
    }
    
    .text-slider img {
        max-width: 100% !important;
        max-height: 100% !important;
    }
	
	.text-slider .slider-image {
        max-width: 90% !important;
        max-height: 90% !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
	}
}

.text-slider .message-container:first-of-type .message-line:first-child {
    text-decoration: underline;
}

/* Breakpoint pour smartphones moyens (iPhone 6/7/8, Android moyens) */
@media (min-width: 376px) and (max-width: 414px) {
    .text-slider {
       transform: scale(0.65)  !important;
        font-size: 2.8em !important;
    }
    
    .text-slider img {
        max-width: 100% !important;
        max-height: 100% !important;
    }
	
	.text-slider .slider-image {
        max-width: 100% !important;
        max-height: 100% !important;
    }
}

/* Breakpoint pour grands smartphones */
@media (min-width: 415px) and (max-width: 480px) {
    .text-slider {
        transform: scale(0.80) !important;
        font-size: 2.75em !important;
    }
    
    .text-slider img {
        max-width: 82% !important;
        max-height: 82% !important;
    }
}

/* Breakpoint pour tablettes portrait */
@media (min-width: 481px) and (max-width: 768px) {
    .text-slider {
        transform: scale(0.85) !important;
    }
}

/* Breakpoint pour tablettes paysage */
@media (min-width: 769px) and (max-width: 1024px) {
    .eventail-content {
        width: 55%;
    }
    
    .text-slider {
        transform: scale(0.90) !important;
    }
}
/* PAGE FAIRE DU THÉÂTRE */

.intro-section {
    padding: 60px 30px !important;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 0;
    max-width: 100%;
}

.intro-text {
    width: 100%;
}

.intro-text h2 {
    color: #000000;
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.intro-text h3 {
    color: #000000;
    font-size: 18px;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: bold;
}

.intro-text p {
    text-align: justify;
    /*line-height: 1.8;*/
    margin-bottom: 20px;
    color: #000000;
    font-size: 16px;
}

.intro-image {
    width: 100%;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.btn-inscription {
    display: inline-block;
    background: linear-gradient(135deg, #d4572a, #c35635);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: none;
    font-size: 14px;
    margin-top: 10px;
}

.btn-inscription:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 87, 42, 0.4);
}

.btn-inscription-center {
    display: block;
    background: linear-gradient(135deg, #d4572a, #c35635);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(212, 87, 42, 0.3);
    max-width: 300px;
    margin: 30px auto;
    text-align: center;
}

.btn-inscription-center:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 87, 42, 0.4);
}

.stage-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stages-grid-adultes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.stage-card {
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stage-orange {
    background: linear-gradient(135deg, #d4572a, #c35635);
    color: white;
	
}

.stage-green {
    background: linear-gradient(135deg, #2d5a3d, #4a7c59);
    color: white;
	display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.stage-logo {
    background: white;
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stage-logo img {
    max-width: 70px;
    max-height: 70px;
}

.stage-card h3 {
    font-size: 20px;
    margin: 15px 0;
}

.stage-tarif {
    font-weight: bold;
    font-size: 16px;
    margin: 15px 0;
}

.stage-horaires {
    font-size: 14px;
    line-height: 1.6;
}

.stage-info-center {
    text-align: center;
    padding: 20px;
}

.stage-info-center .stage-tarif {
    color: #2d5a3d;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.stage-info-center .stage-horaires {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-section {
        padding: 40px 20px !important;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stages-grid-adultes {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stage-card {
        min-height: 200px;
    }
}
/* STAGES - PRÉSENTATION EN LIGNES */

.stages-list {
    max-width: 100%;
    margin: 0 auto 40px;
}

.stage-row {
    display: grid;
    grid-template-columns: 250px 15px 1fr;
    margin-bottom: 15px;
    align-items: stretch;
}

.stage-spacer {
    background: transparent;
}

.stage-day {
    background: linear-gradient(135deg, #d4572a, #c35635);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stage-day h3 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

.stage-content {
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stage-content ul {
    list-style: disc;
    text-align: left;
    margin: 0;
    padding-left: 25px;
    color: black;
}

.stage-content ul li {
    font-size: 14px;
    color: black;
    margin: 8px 0;
    padding-left: 0;
    line-height: 1.5;
}

.stage-content ul li::before {
    content: none;
}

.stage-content p {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.stage-content p:last-child {
    margin-bottom: 0;
}

.stage-tarif-info {
    font-weight: bold;
    color: #d4572a !important;
    margin-top: 15px !important;
    font-size: 16px !important;
}

.stage-horaires-info {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.8 !important;
}

/* Responsive stages lignes */
@media (max-width: 768px) {
    .stage-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 30px;
    }
    
    .stage-spacer {
        display: none;
    }
    
    .stage-day {
        padding: 15px;
    }
    
    .stage-day h3 {
        font-size: 18px;
    }
    
    .stage-content {
        padding: 15px;
    }
}

/* ===== PAGE ACTUALITÉ ===== */

.actu-hero {
    background-color: #d4572a;
    padding: 30px 40px;
    text-align: center;
}
.actu-hero h1 {
    color: #fff;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.actu-rentree {
    background-color: #fff;
    padding: 50px 40px;
    max-width: 1160px;
    margin: 0 auto;
    box-sizing: border-box;
}
.actu-rentree-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.actu-rentree h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: bold;
    color: #2d5a3d;
    text-align: center;
    margin-bottom: 24px;
    grid-column: 1 / -1;
}
.actu-rentree p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}
.actu-rentree img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 4px 4px 16px rgba(0,0,0,0.18);
}
.actu-rentree figcaption {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

.actu-bref {
    background-color: #111;
    color: #fff;
    padding: 50px 40px;
}
.actu-bref-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.actu-bref h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: bold;
    color: #d4572a;
    margin-bottom: 20px;
}
.actu-bref p {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    text-align: justify;
}
.actu-bref .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 4px 4px 16px rgba(0,0,0,0.5);
}
.actu-bref .video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}
.actu-bref .video-caption {
    font-size: 13px;
    color: #aaa;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.actu-separator {
    background-color: #2d5a3d;
    height: 6px;
}

.actu-presse {
    background-color: #f5f5f5;
    padding: 50px 40px;
}
.actu-presse-inner {
    max-width: 1160px;
    margin: 0 auto;
}
.actu-presse .presse-label {
    display: inline-block;
    background-color: #d4572a;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.actu-presse h2 {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: bold;
    color: #2d5a3d;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.actu-presse .presse-chapeau {
    font-size: 20px;
    color: #c35635;
    font-style: italic;
    margin-bottom: 28px;
    border-left: 4px solid #c35635;
    padding-left: 16px;
}
.actu-presse-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}
.actu-presse p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 16px;
}
.actu-presse .presse-photo {
    width: 100%;
    border-radius: 6px;
    box-shadow: 4px 4px 16px rgba(0,0,0,0.15);
}
.actu-presse figcaption {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}
.actu-presse .presse-colonnes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
}
.actu-presse .presse-col p {
    font-size: 16px;
}
.actu-presse .presse-signature {
    text-align: right;
    font-weight: bold;
    font-size: 14px;
    color: #555;
    margin-top: 24px;
    border-top: 1px solid #ddd;
    padding-top: 12px;
}
.presse-source-link {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 13px;
    color: #888;
    text-decoration: none;
    border-bottom: 1px dotted #888;
}
.presse-source-link:hover { color: #c35635; }

.actu-cta {
    background-color: #2d5a3d;
    padding: 40px;
    text-align: center;
}
.actu-cta h2 {
    color: #fff;
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 20px;
}
.actu-cta a.btn-stages {
    display: inline-block;
    background-color: #d4572a;
    color: #fff;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}
.actu-cta a.btn-stages:hover {
    background-color: #b84020;
}


@media (max-width: 768px) {
    .actu-rentree { padding: 30px 20px; }
    .actu-rentree-grid { grid-template-columns: 1fr; }
    .actu-bref { padding: 30px 20px; }
    .actu-bref-inner { grid-template-columns: 1fr; }
    .actu-presse { padding: 30px 20px; }
    .actu-presse-grid { grid-template-columns: 1fr; }
    .actu-presse .presse-colonnes { grid-template-columns: 1fr; }
    .actu-hero { padding: 20px; }
    .actu-cta { padding: 30px 20px; }
}

}
/* ===== PAGE AVIS ===== */

.avis-hero {
    background-color: #d4572a;
    padding: 30px 40px;
    text-align: center;
}
.avis-hero h1 {
    color: #fff;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.avis-intro {
    background-color: #fff;
    padding: 36px 40px 20px;
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
}
.avis-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 820px;
    margin: 0 auto;
}

.avis-section {
    background-color: #f5f5f5;
    padding: 40px 40px 50px;
}
.avis-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.avis-card {
    background-color: #fff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border-top: 4px solid #d4572a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.avis-quote {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    font-style: italic;
    flex-grow: 1;
}
.avis-quote::before {
    content: '\201C';
    font-size: 32px;
    color: #d4572a;
    line-height: 0;
    vertical-align: -12px;
    margin-right: 4px;
}
.avis-author {
    margin-top: 16px;
    font-size: 14px;
    font-weight: bold;
    color: #2d5a3d;
    text-align: right;
}
.avis-cta {
    background-color: #2d5a3d;
    padding: 40px;
    text-align: center;
}
.avis-cta h2 {
    color: #fff;
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 20px;
}
.avis-cta a.btn-stages {
    display: inline-block;
    background-color: #d4572a;
    color: #fff;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}
.avis-cta a.btn-stages:hover { background-color: #b84020; }

@media (max-width: 900px) {
    .avis-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .avis-grid { grid-template-columns: 1fr; }
    .avis-section { padding: 30px 20px; }
    .avis-hero { padding: 20px; }
    .avis-intro { padding: 24px 20px 16px; }
    .avis-cta { padding: 30px 20px; }
}

/* ===== PAGE ANNE-VALÉRIE SOLER ===== */

.avs-hero {
    background-color: #d4572a;
    padding: 36px 40px;
    text-align: center;
}
.avs-hero h1 {
    color: #fff;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.avs-hero-sub {
    color: rgba(255,255,255,0.88);
    font-size: clamp(15px, 2vw, 19px);
    font-style: italic;
    margin: 0;
}
.avs-bio {
    background-color: #fff;
    padding: 50px 40px;
}
.avs-bio-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}
.avs-bio-photo img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 4px 4px 20px rgba(0,0,0,0.15);
}
.avs-bio-text h2 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: bold;
    color: #2d5a3d;
    margin-bottom: 20px;
}
.avs-bio-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 14px;
    text-align: justify;
}
.avs-bio-text p:last-child { margin-bottom: 0; }
.avs-separator { background-color: #2d5a3d; height: 6px; }
.avs-palmares {
    background-color: #111;
    padding: 50px 40px;
    color: #ddd;
}
.avs-palmares-inner { max-width: 1160px; margin: 0 auto; }
.avs-palmares h2 {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: bold;
    color: #d4572a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 36px;
    text-align: center;
}
.avs-palmares-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.avs-palmares-col h3 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #2d5a3d;
    padding-bottom: 10px;
    margin-bottom: 16px;
}
.avs-cat-icon { margin-right: 8px; }
.avs-liste { list-style: none; padding: 0; margin: 0; }
.avs-liste li {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
}
.avs-liste li:last-child { border-bottom: none; }
.avs-liste-cinema li { padding: 8px 0; }
.avs-titre { font-size: 14px; font-weight: bold; color: #eee; }
.avs-realisateur { font-size: 13px; color: #888; margin-top: 2px; }
.avs-highlight .avs-titre { color: #d4572a; }
.avs-cta {
    background-color: #2d5a3d;
    padding: 40px;
    text-align: center;
}
.avs-cta h2 {
    color: #fff;
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 20px;
}
.avs-cta a.btn-stages {
    display: inline-block;
    background-color: #d4572a;
    color: #fff;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}
.avs-cta a.btn-stages:hover { background-color: #b84020; }

@media (max-width: 768px) {
    .avs-bio { padding: 30px 20px; }
    .avs-bio-inner { grid-template-columns: 1fr; }
    .avs-bio-photo img { max-width: 260px; margin: 0 auto; display: block; }
    .avs-palmares { padding: 30px 20px; }
    .avs-palmares-grid { grid-template-columns: 1fr; gap: 32px; }
    .avs-hero { padding: 24px 20px; }
    .avs-cta { padding: 30px 20px; }
}

/* ===== PAGE CONTACT ===== */

.ct-hero {
    background-color: #d4572a;
    padding: 36px 40px;
    text-align: center;
}
.ct-hero h1 {
    color: #fff;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.ct-hero-sub {
    color: rgba(255,255,255,0.88);
    font-size: clamp(14px, 2vw, 17px);
    font-style: italic;
    margin: 0;
}
.ct-content {
    background-color: #f5f5f5;
    padding: 50px 40px;
}
.ct-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: stretch;
}
.ct-infos {
    background-color: #fff;
    border-radius: 6px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.ct-infos h2 {
    font-size: 20px;
    font-weight: bold;
    color: #2d5a3d;
    margin-bottom: 12px;
}
.ct-intro {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}
.ct-coordonnees { list-style: none; padding: 0; margin: 0 0 28px; }
.ct-coordonnees li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}
.ct-coordonnees li:last-child { border-bottom: none; }
.ct-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ct-coordonnees strong {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin-bottom: 2px;
}
.ct-coordonnees a, .ct-coordonnees span {
    font-size: 15px;
    color: #444;
    text-decoration: none;
    line-height: 1.5;
}
.ct-coordonnees a:hover { color: #d4572a; }
.ct-lien-avis {
    background-color: #f0f7f3;
    border-left: 4px solid #2d5a3d;
    padding: 14px 16px;
    border-radius: 0 4px 4px 0;
}
.ct-lien-avis p { font-size: 13px; color: #555; margin: 0 0 6px; }
.ct-lien-avis a {
    font-size: 14px;
    font-weight: bold;
    color: #2d5a3d;
    text-decoration: none;
}
.ct-lien-avis a:hover { color: #d4572a; }
.ct-formulaire {
    background-color: #fff;
    border-radius: 6px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	display: flex;
    flex-direction: column;
}
.ct-formulaire h2 {
    font-size: 20px;
    font-weight: bold;
    color: #2d5a3d;
    margin-bottom: 24px;
}
.ct-msg {
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.ct-msg-success {
    background-color: #e8f5e9;
    border-left: 4px solid #2d5a3d;
    color: #1b5e20;
}
.ct-msg-error {
    background-color: #fdecea;
    border-left: 4px solid #d4572a;
    color: #b71c1c;
}
.ct-field { margin-bottom: 20px; position: relative; }
.ct-field label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}
.ct-field label span { color: #d4572a; }
.ct-field input, .ct-field select, .ct-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus {
    outline: none;
    border-color: #2d5a3d;
    box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
    background-color: #fff;
}
.ct-field textarea { resize: vertical; min-height: 140px; }
.ct-compteur {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}
.ct-btn {
    width: 100%;
    background-color: #d4572a;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}
.ct-btn:hover:not(:disabled) { background-color: #b84020; }
.ct-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.ct-rgpd {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    margin-top: 14px;
    text-align: center;
}
.ct-rgpd a { color: #2d5a3d; text-decoration: underline; }

@media (max-width: 900px) {
    .ct-inner { grid-template-columns: 1fr; }
    .ct-content { padding: 30px 20px; }
    .ct-hero { padding: 24px 20px; }
}

/* ===== PAGE MENTIONS LÉGALES ===== */

.ml-hero {
    background-color: #2d5a3d;
    padding: 30px 40px;
    text-align: center;
}
.ml-hero h1 {
    color: #fff;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}
.ml-content {
    background-color: #fff;
    padding: 50px 40px;
}
.ml-inner {
    max-width: 860px;
    margin: 0 auto;
}
.ml-block {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 32px;
    margin-bottom: 32px;
}
.ml-block-last { border-bottom: none; margin-bottom: 0; }
.ml-block h2 {
    font-size: 18px;
    font-weight: bold;
    color: #d4572a;
    margin-bottom: 14px;
    padding-left: 12px;
    border-left: 4px solid #d4572a;
}
.ml-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}
.ml-block p:last-child { margin-bottom: 0; }
.ml-block ul { list-style: none; padding: 0; margin: 0; }
.ml-block ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    padding-left: 16px;
    position: relative;
}
.ml-block ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #2d5a3d;
}
.ml-block a { color: #2d5a3d; text-decoration: underline; }
.ml-block a:hover { color: #d4572a; }
.ml-update {
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .ml-content { padding: 30px 20px; }
    .ml-hero { padding: 20px; }
}

/* ===== PAGE ACTUALITÉ - classes complémentaires ===== */

.actu-bref-col-droite {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.actu-bref-img {
    width: 100%;
    height: auto;
    margin-top: 100px;
    border-radius: 6px;
    box-shadow: 4px 4px 16px rgba(0,0,0,0.5);
}

.actu-bref-h2-spacing {
    margin-top: 36px;
}
/* ===== ICÔNE COURRIER CLIGNOTANTE ===== */



@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.contact-mail-icon {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    animation: blink 0.6s step-start infinite;
    vertical-align: middle;
}
.contact-mail-icon:hover { animation: none; opacity: 1; }