*{ 
	color:#654321; 
	font-family: candara, verdana,sans-serif;
	 box-sizing: border-box;
}

body, header, footer{
	text-align:center;
	margin: 0px;
}

h1 {
    font-size: 56px; 
    font-weight: bold; 
	text-transform: uppercase;
}

h2 {
	font-size: 40px;
	font-weight: bold; 
	text-transform: uppercase;	
}
h3 {
	font-size: 30px;
	font-weight: bold;
	text-transform:uppercase;
	margin-bottom: 15px;
}

header {
	padding-top: 30px;
}


/*image accueil*/
.accueil {
    background-image: url("locaux.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.menu-tete {
	background-color: rgba(139, 90, 43, 0.9);
	height: 60px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	position: sticky;
	top: 0px;
	left: 0px;
	width: 100%;
    padding: 5px 10px;
}

.onglets {
	text-decoration: none;
    color:#F6EDE1;
    font-size: 22px; 
    padding: 10px 20px;
	text-transform: uppercase;
	font-weight: bold;
	transition: background-color 0.3s ease, color 0.3s ease;
}


.onglets:hover {
    background-color: rgba(246, 237, 225, 0.7);
	color: #8B5A2B;
}


.contenu-accueil { 
	margin: 20px auto 0px auto;
	background-color: rgba(246, 237, 225, 0.8);
    padding: 20px 80px;
    border-radius: 20px;
    max-width: 80%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
	color: black;
	font-size: 22px;
    font-weight: bold;
	
}

.contenu-noir {
	color:black;
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
	margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*page évenement*/
.affichage-page {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
	margin-left:3%;
	margin-right:3%;
}

.division-generale{
	width: 80%;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items:center;
}

.carte {
    width: 30%;
    padding: 20px;
    margin: 1%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 750px;
}

.texte-evenement {
    flex-grow: 1;
}

.liens-evenement {
    margin-top: auto;
}

.carte img {
    height: 200px;
    object-fit: cover;
    width: 100%;
	border-radius:10px;
	margin-bottom: 20px;
}

.carte h3 {
    height: 70px; /* ou ajuste selon le nombre de lignes que tu veux */
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
}


/*Page Location*/
.page-location .division-generale p,
.page-location .division-generale ul,
.page-location .division-generale li {
    text-align: left;
    width: 100%;
	margin: 2px;
    padding: 2px;
	padding-left: 20px;
}

/* Galerie d'images */
.galerie {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 20px 0 0 0;
}

.galerie a {
	width: 250px;
}

.galerie img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.3s ease-in-out;
}

.galerie img:hover {
	transform: scale(1.05);
}

/*liste à puce*/
ul {
  padding-left: 20px;
  list-style-type: disc; /* cercle plein (par défaut) */
  font-size: 16px;
}

li {
  margin-bottom: 5px;
}
 /*formulaire*/
td{
	vertical-align: top;
}

.bouton-envoyer {
	text-align:right;
}

.taille-bouton{
	width: 130px; 
    height: 40px; 
    font-size: 18px; 
    padding: 10px 20px; 
    border-radius: 8px; 
    background-color: #8B5A2B; 
    color: white;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;	
    border: none;  
}

.taille-bouton:hover {
	transform: scale(1.1);
	transform-origin: center;
}

/*Page réponse*/
.page-reponse{
    display: flex;
    flex-direction: column;
	align-items: center;
}

.page-reponse img {
    width: 150px;
    margin-top: 50px;
    display: block; 
}

/*page info et contact */
.infos-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.info-colonne {
    flex: 1 1 200px;
    font-size: 16px;
}

h4 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #8B5A2B;
}

.carte-localisation {
	width:100%;
}

iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/*footer*/
footer {
    position: relative;
	width: 100%;
    text-align: center;
	margin-top: 2%;
}

.footer {
	color: #F6EDE1;
	margin: 0;
    padding: 0;
    padding: 5px 0;
	background-color: rgba(139, 90, 43, 0.9);
	margin-top: 1%;
}

.footer-court {
	position: fixed;
	bottom: 0;
}







