/* =========================================
   COULISES.CSS
   Page : Coulisses
========================================= */

/* Reset léger */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

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

.contenu-principal{
    width:min(1200px,100%);
    margin:30px auto 60px;
    display:flex;
    flex-direction:column;
    gap:30px;
}

/* =========================================
   BANDEAU INFORMATION
========================================= */

.infodivers{
    background:#047303;
    border-radius:12px;
    border:2px solid #000;
    overflow:hidden;
    padding:10px 15px;

    font-family:Georgia, "Times New Roman", serif;
    font-size:40px;
    font-style:italic;
    font-weight:normal;
    color:#FFFB00;
    text-align:center;
}

/* =========================================
   DATES
========================================= */

.dates-content{
    background-color:#047303;
    background-size:100% 100%;
    border-radius:20px;
    border:2px solid #000;
    padding:30px;
}

.flash-info{
    text-align:center;
    margin-bottom:25px;
}

.flash-info p{
    color:#b30000;
    font-family: Georgia, "Times New Roman", serif;
    font-size:30px;
    font-style:italic;
    font-weight:normal;
    text-align:center;
}
.FlashContainer{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.flash-line{
    text-align:center;
    font-family: Georgia, "Times New Roman", serif;
    font-size:30px;
    font-style:italic;
    font-weight:normal;
    color:#BABAB7;
    line-height:1.5;
}
.flash-sep{
    text-align:center;
    font-family: Georgia, "Times New Roman", serif;
    font-size:24px;
    font-style:italic;
    font-weight:normal;
    color:#0a5c0a;
}

/* ==============================
   Bouton Retour
============================== */

.retour-page{
    width:100%;
    text-align:center;
    margin:20px 0 35px;
}

.btn-retour{
    background:#047303;
    color:#ffffff;
    border:2px solid #023f02;
    border-radius:8px;
    padding:10px 35px;
    font-family:Georgia, "Times New Roman", serif;
    font-size:20px;
    font-style:italic;
    font-weight:normal;
    cursor:pointer;
    transition:0.3s;
}

.btn-retour:hover{
    background:#058d04;
    transform:translateY(-2px);
}

.btn-retour:active{
    transform:translateY(0);
}

/* =========================================
   GALERIE DES COULISSES
========================================= */

.galerie-coulisses{
    width:min(1200px,100%);
    margin:15px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* Un ensemble = photo + commentaire */

.bloc-photo{
    display:flex;
    flex-direction:column;
}

/* Cadre photo */

.cadre-photo{
    height:350px;
    background:#047303;
    border:1px solid #000;
    border-radius:12px;
    overflow:hidden;
}

/* ajout de photos */

.cadre-photo img{
    width:100%;
    height:100%;
    object-fit:cover;      /* remplit entièrement le cadre */
    object-position:center;
    display:block;
}
/* Cadre commentaire */

.cadre-commentaire{
    margin-top:8px;
    min-height:45px;      /* hauteur du cadre */
    padding:6px 10px;     /* espace intérieur */
    background:#047303;
    border:1px solid #000;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-family:Georgia,"Times New Roman",serif;
    font-size:17px;
    font-style:italic;
    color:#fff;
    line-height:1.3;
}
/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:900px){

    .galerie-coulisses{
        width:94%;
        grid-template-columns:1fr;
        gap:25px;
    }

    .cadre-photo{
        height:280px;
    }

    .cadre-commentaire{
        min-height:60px;
        font-size:16px;
    }

}

/* =========================================
   RESPONSIVE TABLETTE
========================================= */

@media (max-width:1200px){

    .contenu-principal{
        width:94%;
        margin:25px auto 50px;
        gap:25px;
    }

    .dates-content{
        padding:22px;
    }

    .flash-info p{
        font-size:24px;
    }

    .flash-line{
        font-size:18px;
        line-height:1.5;
    }

}

/* =========================================
   SMARTPHONE
========================================= */

@media (max-width:768px){

    .contenu-principal{
        gap:30px;
        margin:20px auto 40px;
    }

    .container{
        padding:12px;
    }

    .blink2{
        font-size:18px;
    }

    .dates-content{
        padding:18px 15px;
        border-radius:15px;
    }

    .flash-info p{
        font-size:20px;
    }

    .flash-line{
        font-size:16px;
        line-height:1.55;
    }

    .flash-sep{
        font-size:20px;
    }

}