@font-face {
    font-family: 'Peace sans';
    src: url('PeaceSans.otf');
}
@font-face {
    font-family:'futura medium bt';
    src: url('futura medium bt.ttf');
}

html{
    background: url(background.jpg) no-repeat center center fixed; 
    background-size: cover; /* Couvre toute la zone */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Pas de répétition */
    background-attachment: fixed; /* Fixe l'image lors du scroll */
    
    
}

body{
	
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family:'futura medium bt';
	text-align:center;


    


}
header{
	text-align: center;
	background: url("logo.png") no-repeat;
	background-size: 5em;
	background-position: right 5% top 8%;
}

#stras{
	font-size: 3em;
	font-family: 'Peace sans';
	text-shadow: #FFFFFF 1px 1px, #FFFFFF -1px 1px, #FFFFFF -1px -1px, #FFFFFF 1px -1px;
	color: rgba(0, 0, 0, 1);
	line-height: 1em;
}

#comedy{
	font-size: 3em;
	font-family: 'Peace sans';
	text-shadow: #FC0 1px 0 10px;
	color: rgba(253, 212, 2, 1);
	line-height: 1em;
	letter-spacing: 0.1em;
}

a{
    text-decoration:none;
    color:#101010
}

main{
    	display:flex;
    	flex-direction:column;
    	background-color: rgba(239,229,226,0.7);
	border:1px solid grey;
	border-radius:5px;
	padding:15px;
	align-items:center;
	width:900px;
	justify-content:center;
	
	
	margin-top:20px;

}

textarea {
  max-width: 90%;             /* Le textarea prend toute la largeur du div */
  box-sizing: border-box;  /* Prend en compte le padding dans la largeur totale */
  resize: vertical;        /* Permet de redimensionner verticalement, mais pas horizontalement */
}


.description{
    max-width:250px;
}
.bloc_messages{
    display:flex;

    border-radius:5px;
    padding:10px;
    flex-direction:column;
    margin-bottom:20px;
    align-items:center;
    width:90%;
    border: 1px solid #c0bebd; /* Bordure discrète mais visible */
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Ombre très subtile */

}
.bloc_soirees{
    display:flex;

    border-radius:5px;
    padding:10px;
    flex-direction:column;
    margin-bottom:20px;
    align-items:center;
    max-width:300px;
    border: 1px solid #c0bebd; /* Bordure discrète mais visible */
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Ombre très subtile */

}
.bloc_soirees:hover{
    border:1px solid grey;
    box-shadow: 0 0 8px 3px rgba(248, 248, 248, 0.1);
}

footer{
    margin-top:25px;
    margin-bottom:25px;
    color:white;
    font-size: 0.8em;
}



.img_soirees {
    width: 200px; /* Ajuste selon tes besoins */
    height: 200px; /* Conserve les proportions */
}



/* Styles du menu */
nav {
    margin:25px;
    padding: 5px;

}

/* Icône burger */
.burger {
    display: block;
    font-size: 30px;
    color: white;
    cursor: pointer;
    border: none;
    padding: 5px;
    z-index: 1001;
}

@media (min-width: 769px) {
    .burger {
        display: none; /* Masque le burger sur les écrans larges */
    }
}


/* Menu desktop */
.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    background: #333;
}

.menu li {
    padding: 5px;
}

.menu li a {
    text-decoration: none;
    color: white;
    padding: 5px;
    display: block;
}

.menu li a:hover {
    background: #555;
    border-radius: 5px;
}

/* Responsive : menu burger */
@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        background: #333;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        z-index: 1000;
        background: #333;
    }

    .menu.active {
        display: flex;
        position: relative;
    }
    main{
        max-width:90%;
    }

    /* Évite le bloc noir derrière */

}
