html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    width: 100%;
}

.anton-regular{
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* .poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root{
    --main-font: 'Roboto', sans-serif;
}

p, h2, h3, h4, label, span{
    font-family: var(--main-font);
}

h2, h3{
    font-weight: 700;
} */

*{
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
}


body{
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    background-color: #121212;
}

@font-face {
	font-family: 'PlayfairDisplay';
}

img{
    max-width: 100%;
    height: auto;
}

#chargement{
    width: 100vw;
    height: 100vh;
    background-color: #121212;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 15px 0 25px 20px white;
    z-index: 9998;
    pointer-events: none;
}

#txt_chargement{
    font-family: 'PlayfairDisplay', sans-serif;
    display: flex;
    width: 100vw;
    height: 100vh;
    top: -100vh;
    left: 0;
    color: white;
    position: fixed;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 25vh;
    z-index: 9999;
}

@media (max-width: 1500px) {
    #txt_chargement{
        font-size: 8vh;
    }
}

#logo_chargement{
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    z-index: 9999;
    pointer-events: none;
}

#logo_chargement_{
    width: 15%;
    height: auto;
    position: fixed;
    top: 100vh;
    z-index: 9999;
    rotate: -180deg;

}

nav{
    top: 5vh;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    right: 0;
    color: #EDEDED;
    background-color: #12121211;
    width: 100%;
    height: 10%;
    z-index: 9997;
}

nav img{
    width: 12%;
    height: auto;
    margin: 15px;
	cursor: pointer;
	z-index: 99999;
}

nav p{
    font-size: 50px;
}

nav ul{
    display: flex;
    flex-direction: row;
}

nav ul li{
    margin: 25px;
    list-style: none;
    transition: box-shadow 0.3s ease;
    padding: 10px 20px;
    border-radius: 10px;
}

nav ul #compte{
    border: solid 2px;
    border-color: #ec008ca1;
}

nav ul li:hover{
    box-shadow: 3px 3px whitesmoke, -0.5em 0 0.2em black;
}

nav ul #compte:hover{
    box-shadow: 3px 3px rgb(255, 183, 170), -0.5em 0 0.2em rgb(255, 135, 105);
}

nav ul li a{
    font-size: 25px;
    color: white;
    text-decoration: none;
}

#decouvrir{
    background-image: url("Images/Lopera.jpg");
    position: relative;
    z-index: 1;
    width: 100%;
    height: 95vh;
    margin-top: 15px;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

#decouvrir h2{
    color: whitesmoke;
    font-size: 40px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.450);
    border: solid 3px;
    border-color: whitesmoke;
    padding: 15px 20px;
    border-radius: 5px;
    transition: color 0.5s ease, background-color 0.5s ease, padding 0.3s ease, border-radius 0.3s ease;
}

#decouvrir h2:hover{
    color: #121212;
    background-color: rgba(255, 255, 255, 0.644);
    padding: 10px 15px;
    border-radius: 20px;
}

main{
    padding: 50px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-color: whitesmoke;
    border-color: black;
    border-top: solid 5px;
}

main #cartes{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

main #cartes .flip{
	position: relative;
	perspective: 1000px;
    width: 25%;
    max-width: 350px;
    aspect-ratio: 2 / 3;
    margin-bottom: 50px;
	transform-style: preserve-3d;
	transition: transform 0.8s;
    cursor: pointer;
}

main #cartes .carte,
main #cartes .carte_{
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
    top: 0;
    left: 0;
	backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

main #cartes .flip img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main #cartes .carte_{
	transform: rotateY(180deg);
}

main #cartes .flip:hover{
	transform: rotateY(180deg);
}


@media (max-width: 768px){
    main #cartes{
        flex-direction: column;
        align-items: center;
    }

    main #cartes .flip{
        width: 80%;
        max-width: 400px;
    }
}


@media (max-width: 480px){
    main #cartes .flip{
        width: 90%;
    }
}



main #evenements{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: space-between;
    margin-top: 125px;
    margin-bottom: 100px;
}

main #evenements .evenement{
    width: 75%;
    height: 300px;
    border-color: black;
    border: solid 2px;
    background-color: #E9E9E9;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
}

main #evenements .evenement .contenu{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: auto;
    padding: 6em;
}

main #evenements .evenement .contenu p{
    text-align: justify;
}


main #evenements .evenement img{
    width: 30%;
    height: auto;
    border-radius: 50px;
    transition: width 0.5s ease, border-radius 0.3s ease;
}

main #evenements .evenement img:hover{
    width: 35%;
    border-radius: 25px;
}

#plus{
    background: #121212;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    align-self: flex-start;
    margin-top: auto;
}

#plus:hover{
    background: #ec008c;
}

hr{
    width: 75%;
    border: solid 2px;
}

#propos{
	height: 80vh;
	padding: 25px;
}

#propos h2{
	font-size: 50px;
}

#propos p{
	font-size: 25px;
	padding: 50px 250px;
	text-align: justify;
}


#compte_menu form{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    z-index: 9997;
}

#compte_menu form #connecter{
    margin-bottom: 15px;
    border: solid 2px;
    border-radius: 25px;
    padding: 1.5em;
    font-size: 25px;
    cursor: pointer;
    transition: border-radius 0.5s ease;
}

#compte_menu form #creer{
    margin-top: 15px;
    border: solid 2px;
    border-radius: 25px;
    padding: 1.5em;
    color: white;
    background-color: #121212;
    font-size: 25px;
    cursor: pointer;
    transition: border-radius 0.5s ease, color 0.3s ease, background-color 0.3s ease;
}

#compte_menu form #creation{
    margin-top: 15px;
    border: solid 2px;
    border-radius: 25px;
    padding: 1em;
    color: white;
    background-color: #121212;
    font-size: 25px;
    cursor: pointer;
    transition: border-radius 0.5s ease, color 0.3s ease, background-color 0.3s ease;
}

#compte_menu form #connexion{
    margin-top: 15px;
    border: solid 2px;
    border-radius: 25px;
    padding: 1em;
    color: white;
    background-color: #121212;
    font-size: 25px;
    cursor: pointer;
    transition: border-radius 0.5s ease, color 0.3s ease, background-color 0.3s ease;
}

#compte_menu form .champs{
    border-radius: 25px;
    width: 100%;
    max-width: 300px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
    padding: 0.5em;
    transition: width 0.5s ease;
}

#compte_menu form .champs:hover{
    width: 165%;
}


#compte_menu form label{
    margin-top: 15px;
    margin-bottom: 10px;
}

#compte_menu form #connecter:hover{
    border-radius: 10px;
}

#compte_menu form #creer:hover{
    border-radius: 10px;
    color: #121212;
    background-color: white;
}
#compte_menu form #creation:hover{
    border-radius: 10px;
    color: #121212;
    background-color: white;
}
#compte_menu form #connexion:hover{
    border-radius: 10px;
    color: #121212;
    background-color: white;
}

#compte_menu #menu_creation_{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#compte_menu #menu_creation1{
    margin-left: 50px;
    width: 30%;
}

#compte_menu #menu_creation2{
    margin-right: 50px;
    width: 38%;
}

#compte_menu{
    background-color: white;
    height: auto;
    max-height: 100%;
    width: 50%;
    max-width: 100%;
    box-shadow: 0 0 5px white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    margin-top: 5vh;
    padding: 2em;
    z-index: 999;
}

#compte_menu h2{
    text-align: center;
}

#compte_back{
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3em;
}

#deconnexion{
    margin: 50px;
    border: solid 2px;
    border-radius: 25px;
    padding: 1.5em;
    color: white;
    background-color: #D41C1C;
    font-size: 15px;
    cursor: pointer;
    transition: border-radius 0.5s ease, background-color 0.3s ease;
}

#deconnexion:hover{
    background-color: #F54444;
    border-radius: 10px;
}

#compte_menu form #creer:hover{
    border-radius: 10px;
    color: #121212;
    background-color: white;
}

#log_membre{
    background-color: #12121211;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5em;
}

#log_admin{
    background-color: #12121211;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5em;
}






#compte_menu {
    max-height: 70vh; /* Ajuste selon tes besoins */
    overflow-y: auto; /* Scroll vertical si nécessaire */
    padding: 20px;
    box-sizing: border-box;
}

.admin-container {
    display: flex;
    flex-direction: column; /* Empile verticalement */
    gap: 20px;
    margin-bottom: 20px;
}

.admin-section {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (min-width: 900px) {
    .admin-container {
        flex-direction: row
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .admin-section {
        flex: 1;
        min-width: 250px;
        max-width: calc(33% - 20px);
    }
}

.admin-section .champs {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    box-sizing: border-box;
}

#deconnexion {
    margin-top: 20px;
    width: 100%;
}







#_main_jeu_{
    padding: 40px 20px;
    background-color: #121212;
    min-height: 100vh;
    color: white;
    margin-top: 150px;
}

#menu_jeu_{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
}

#menu_jeu{
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 30px;
}

#jeu_form, #jeu_form2{
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    margin: auto;
    margin-top: 100px;
    max-width: 500px;
    width: 100%;
}

#jeu_form label, 
#jeu_form2 label{
    display: block;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

#jeu_form input[type='date'],
#jeu_form2 input[type='text'],
#filtre1 input[type='date']{
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

#jeu_form input[type='date']:focus,
#jeu_form2 input[type='text']:focus{
    border-color: #ec008c;
    outline: none;
}

#jeu_form input[type='submit'], 
#jeu_form2 input[type='submit']{
    background-color: #ec008c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-weight: bold;
}

#jeu_form input[type='submit']:hover, 
#jeu_form2 input[type='submit']:hover{
    background-color: #e6915a;
    transform: translateY(-2px);
}

#jeu_txt{
    text-align: center;
    padding: 30px;
    margin: 30px 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

#jeu_txt h2{
    color: #ec008c;
    font-size: 28px;
    margin-bottom: 15px;
    text-decoration: none;
}

#jeu_txt h3{
    color: black;
    font-size: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px){
    #_main_jeu_ {
        padding: 20px 10px;
    }
    
    #menu_jeu_ {
        padding: 20px;
    }
    
    #jeu_form, #jeu_form2 {
        padding: 20px;
    }
    
    #jeu_txt {
        padding: 20px;
    }
    
    #jeu_txt h2 {
        font-size: 24px;
    }
    
    #jeu_txt h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    #jeu_form input[type='submit'], 
    #jeu_form2 input[type='submit'] {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    #jeu_form label, 
    #jeu_form2 label,
    #filtre1 label{
        font-size: 16px;
    }
}















#footer_{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    background-color: #121212;
    padding: 2em 3em;
    flex-wrap: wrap;
}

#footer_gauche ul{
    list-style: none;
    padding: 0;
}

#footer_gauche ul li{
    margin-bottom: 0.5em;
}

#footer_gauche ul li a{
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9em;
}

#footer_gauche ul li a:hover{
    color: white;
    text-decoration: none;
    font-size: 0.9em;
}

#footer_droite{
    display: flex;
    gap: 15px;
}

.reseaux{
    width: 30px;
    height: auto;
    background-color: white;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    transition: background-color 0.5s ease, padding 0.5s ease;
}

.reseaux:hover{
    padding: 8px;
    background-color: #CCCCCC;
}

@media (max-width: 768px){
    #footer_{
        flex-direction: column;
    }
}


footer{
    display: flex;
    justify-content: center;
    color: #CCCCCC;
    background-color: #1A1A1A;
    padding: 15px;
    height: 100%;
}












































/* Résponsivie */




@media (max-width: 768px){
    nav{
        flex-direction: column;
        height: auto;
    }

    nav ul{
        flex-direction: column;
        align-items: center;
    }

    nav ul li{
        margin: 10px;
        font-size: 18px;
    }

    nav img{
        width: 40%;
    }

    #decouvrir h2{
        font-size: 20px;
    }

    main #cartes{
        flex-direction: column;
        align-items: center;
    }

    main #cartes #flip{
        width: 80%;
    }


    main #evenements .evenement img{
        width: 60%;
    }

    main #evenements .evenement{
        width: 90%;
    }

    #propos p{
        padding: 25px 15px;
    }

    #footer_{
        padding: 2em;
    }

    #footer_ ul li a{
        font-size: 14px;
    }
}


@media (max-width: 480px){
    nav p {
        font-size: 25px;
    }

    main #cartes #flip{
        width: 90%;
    }

    main #evenements .evenement{
        flex-direction: column;
    }

    main #evenements .evenement .contenu{
        padding: 3em;
    }

    #compte_menu{
        width: 90%;
    }

    #compte_menu form .champs{
        width: 100%
    }

    #jeu_form, #jeu_form2{
        width: 100%;
    }
}

.nav-toggle{
    display: none;
}

@media (max-width: 768px){
    nav ul{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #121212;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 9998;
    }

    nav ul.active{
        transform: translateX(0);
    }

    .nav-toggle{
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 999999;
    }

    .nav-toggle span{
        display: block;
        width: 100%;
        height: 3px;
        background: white;
        margin: 6px 0;
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1){
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2){
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3){
        transform: rotate(-45deg) translate(7px, -6px);
    }

    nav img{
        position: fixed;
        top: 20px;
        left: 20px;
        width: 30%;
        z-index: 9999;
    }
}

html{
    font-size: 16px;
}

@media (max-width: 768px){
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px){
    html {
        font-size: 12px;
    }
}


#decouvrir h2{
    font-size: 2.5rem;
    padding: 1rem 1.5rem;
}

main #cartes #flip{
    width: 90%
    max-width: 400px;
    height: auto;
    min-height: 300px;
    margin: 1rem auto;
}

img{
    max-width: 100%;
    height: auto;
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1{ 
    font-size: 2.5rem; 
}
h2{
    font-size: 2rem; 
}
h3{ 
    font-size: 1.75rem; 
}

@media (max-width: 768px) {
    h1{
        font-size: 2rem;
    }
    
    h2{
        font-size: 1.75rem;
    }
    h3{
        font-size: 1.5rem; 
    }
}

#compte_menu form .champs{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

#propos p{
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px){
    #propos p {
        padding: 2rem 4rem;
    }
}

@media (min-width: 1200px){
    #propos p {
        padding: 2rem 15rem;
    }
}

@media (max-width: 768px){
    nav ul {
        z-index: 9998;
        pointer-events: auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-toggle{
        z-index: 9999;
    }
    
    body.menu-open{
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

*, *::before, *::after{
    box-sizing: border-box;
}































#categorie{
    background-color: white;
    padding: 2em;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 15px;
}

#filtre1 input[type="submit"]{
    background-color: #ec008c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-weight: bold;
}

#filtre1 input[type="submit"]:hover{
    background-color: #ffa285;
}

#back-header{
    height: 12vh;
}

#page-evenements{
    padding: 50px;
    background-color: whitesmoke;
    min-height: calc(100vh - 300px);
    position: relative;
    z-index: 1;
}

.evenements{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 50vw;
}

.evenements p{
    padding: 1em;
    min-width: 50vw;
}

@media (max-width: 1500px){
    .evenements {
        width: 100vw;
    }
}

.event-card{
    background: white;
    margin-top: 100px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-image{
    position: relative;
    height: 350px;
    overflow: hidden;
    transition: height 0.5s ease;
}

.event-image:hover{
    height: 450px;
}

.event-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.event-date{
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ec008c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}

.event-content{
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-content h2{
    color: #121212;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.event-meta{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.event-content p{
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-button{
    background: #121212;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    align-self: flex-start;
    margin-top: auto;
}

.event-button:hover{
    background: #ec008c;
}

/* Responsive */
@media (max-width: 768px){
    #page-evenements {
        padding: 30px;
    }
    
    .evenements{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px){
    #page-evenements {
        padding: 20px;
    }
    
    .event-image{
        height: 180px;
    }
}









@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.confetti {
    z-index: 999;
    pointer-events: none;
}

footer {
    background: linear-gradient(90deg, #333, #555, #333);
    background-size: 200% 100%;
}

.flip {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flip:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.nav-toggle span {
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.evenements:nth-child(odd) {
    animation: float 4s ease-in-out infinite;
}

.evenements:nth-child(even) {
    animation: float 5s ease-in-out infinite 1s;
}





















#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cookie-btn-accept {
    background-color: #28a745;
    color: white;
}

.cookie-btn-essential {
    background-color: #17a2b8;
    color: white;
}

.cookie-btn-reject {
    background-color: #dc3545;
    color: white;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}












.contenu-simple {
    max-width: 900px;
    margin: 4em auto;
    padding: 2em;
    background-color: #1E1E1E;
    color: #CCCCCC;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    font-family: 'Poppins', sans-serif;
}

.contenu-simple h1 {
    font-size: 2em;
    margin-bottom: 1em;
    font-family: 'Anton', sans-serif;
    color: white;
}

.contenu-simple p {
    font-size: 1em;
    line-height: 1.6;
    margin-top: 1.5em;
    text-align: justify;
}

.image-contenu {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 1em;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

