body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 1; /* Ajuste ce niveau selon tes besoins */
    z-index: -1;
}

.burger {
    display: none;
    font-size: 1.2rem;
    word-spacing: 20px;
    border: none;
    cursor: pointer;
    background: black;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    color: white;
}

.general {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: auto;
    margin: 0 auto;
}

.entete {
    height: auto;
    text-align: center;
}

.corps {
    height: auto;
    width: 100%
}

.contenu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 800px;
    gap: 60px;
}

.contenu1 {
    width: 420px;
    color:  #fff;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 2px;
}
.contenu2 img {
    margin-top: 30px;
    height: 800px;
}

.saison {
    text-align: center;
    margin-top: 30px;
}

.histoire {
    text-align: center;
}

/*------------------------Menu principal ----------------*/
nav {
    display: flex;
    justify-content: center;
    width: 1000px;
    margin: 0 auto;
    background-color: rgb(245, 190, 27);
    padding: 0;
}

nav ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav ul li {
    position: relative;   /* positionner le sous-menu */
    width: 200px;
}

nav ul li a {
    display: block;        /* indispensable pour colorer tout le li */
    padding: 8px 0px;
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    color: #000;
    transition: 0.2s;
}

nav ul li a:hover {
    background-color: #000;
    color: white;
}

/* --- SOUS-MENU VERTICAL --- */
nav ul li .submenu {
    display: none;              /* caché par défaut */
    position: absolute;
    top: 100%;                  /* juste sous l’élément parent */
    left: 0;
    background-color: white;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;               /* même largeur que le parent */
    border: 1px solid #ccc;
    z-index: 10;
}

nav ul li .submenu li a {
    padding: 8px 12px;
    font-size: 16px;
    color: #000;
}

nav ul li .submenu li a:hover {
    background-color: #000;
    color: white;
}

/* --- AFFICHAGE AU SURVOL --- */
nav ul li.has-submenu:hover .submenu {
    display: block;
}

/*--------------------------------Diapo accueil -----------------*/
#diapo {
    width: 80%;
    height: 450px;      /* hauteur maximale du diapo */
    overflow: hidden;       /* coupe ce qui dépasse */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diapo-img {
    width: 100%;
    max-height: 450px;      /* même limite pour l’image */
    object-fit: cover;    /* garde les proportions */
    display: block;
}

.fullscreen-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fullscreen-view img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    cursor: pointer;
}

.fs-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 20px;
    font-family: Arial, sans-serif;
    background: rgba(0,0,0,0.5);
    padding: 6px 12px;
    border-radius: 6px;
    user-select: none;
}

/*----------------------------------Agenda-------------------*/

.agenda {
    background-color: white;
    height: auto;
    width: 1000px;
    margin: 0 auto;
}

.affiches {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.affiche-img {
    width: 250px;
    height: auto;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.affiche-img:hover {
    transform: scale(1.03);
}

/*----------------------Billetterie-------------*/

.reservation {
    display: flex;
    flex-direction: row;
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    padding-bottom: 10px;
}

.infos-reservations {
    padding-left: 20px;
    max-width: 220px;
    font-size: 1.1rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.infos-reservations hr {
    border: none;
    border-top: 4px solid black;
}

.infos-reservations h2,
.infos-reservations h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    color: red;
}

.infos-reservations p {
    margin-bottom: 15px;
}

.infos-reservations ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.infos-reservations li {
    margin-bottom: 6px;
}

.reservations-info {
    background-color: #fff;
    max-width: 740px;
    padding-left: 60px;
    font-size: 1.1rem;
    line-height: 1.65;
    letter-spacing: 0.4px;
}

.reservations-info h2 {
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: red;
    text-align: center;
}

.reservations-info h3 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 1.3rem;
    letter-spacing: 0.8px;
}

.reservations-info p {
    margin-bottom: 18px;
}

.reservations-info ul {
    margin: 0 0 25px 0;
    padding-left: 22px;
}

.reservations-info li {
    margin-bottom: 8px;
}

/*------------------------Bénévole---------------*/
.benevole {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.text {
    width: 300px;
}

.text p {
  color:  #fff;
  font-family: "Arial", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  
}

.image {
    margin-left: 20px;
}

.image img{
    width: 700px;
    height: auto;
}

/*------------------------Location---------------*/
.location {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.costumes-photos {
    width: 600px;
    height: auto;
}

.photo-img {
    width: 600px;
    height: auto;
}

.costumes-text {
    max-width: 300px;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.65;
    letter-spacing: 0.4px;
}

.costumes-info {
    max-width: 810px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.65;
    letter-spacing: 0.4px;
}

.costumes h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    color: red;
    letter-spacing: 1px;
}

.costumes h3 {
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.costumes p {
    margin-bottom: 18px;
}

/*----------------------Diveri------------------*/

.diverti {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.diverti-text {
    width: 400px;
}

.diverti-text p {
  color:  #fff;
  font-family: "Arial", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.diverti-text a {
    text-decoration: none;
    color:#f7d84a;
    font-size: 24px;
    font-weight: 700;
}

.diverti-image {
    margin-left: 20px;
}

.diverti-image img{
    width: 400px;
    height: auto;
}

/*---------------------Services-------------------*/

.services {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 30px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.services h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

.services p {
    margin: 10px 0;
}

.services ul {
    margin: 10px 0 20px 20px;
    padding: 0;
}

.services ul li {
    margin-bottom: 6px;
}

.services strong {
    font-weight: 600;
}

.services br {
    line-height: 1.2;
}

/*----------------------Histoire-----------------*/

.histoire {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.origine {
    background: #000;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    line-height: 1.6;
    font-size: 18px;
    max-width: 450px;
    margin-left: 30px;
}

.origine h2 {
    margin-top: 0;
    font-size: 32px;
    font-style: italic;
    letter-spacing:2px;
    text-align: left;
}

.origine p {
    text-align: left;
    font-size: 20px;
    margin-bottom: 20px;
}

.origine blockquote {
    margin-top: 30px;
    font-style: italic;
    text-align: center;
    opacity: 0.9;
}

.histoire-texte {
    background: #0a1a3a;      /* bleu foncé proche de ton image */
    color: #f7d84a;           /* jaune lisible */
    padding: 30px;
    border-radius: 8px;
    line-height: 1.6;
    font-size: 22px;
    max-width: 900px;
    margin: auto;
}

.histoire-texte h2 {
    margin-top: 0;
    font-size: 28px;
    text-align: center;
}

.histoire-texte p {
    margin-bottom: 20px;
}

.logo-impromptu {
    display: block;
    width: 120px;
    margin: 30px auto 0 auto;
}
