/* Réinitialisation */
@charset "utf-8";
@font-face {
font-family: 'animeace2_bld';
src: url('../fonts/animeace2_bld.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Elgharib-AlwiSahafa';
src: url('../fonts/Elgharib-AlwiSahafa.ttf') format('opentype');
font-weight: normal;
font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0066FF;
}

header {
  background-color: #0066FF;
  color: white;
  padding: 20px;
  text-align: center;
}

main {
  padding: 20px;
}

/* Bannière */
.banner {
	height: 75px;
	justify-content: center;
	align-items: center;
	margin: 0px;
	background-color: #0033FF;
	background-image: url(../img/motif10.png);
	width: 100%;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 0px;
	
	
  
}

/* Menu */
#menu {
	position: relative;
	background-repeat: repeat;
	background-size: auto;
	width: auto;
	margin: 0px;
	padding: 0px;
}


.menu-container {
	position: absolute;
	top: 0;
	right: 10px;
	display: inline-block;
	margin: 0px;
	padding: 0px;
	height: 75px;
	width: 75px;
	
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle img { display: block; }

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 100%;
  transform: translateX(10px);
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  background-color: rgba(0,0,0,0.8);
  border-radius: 5px;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  z-index: 10;
}

.menu-items.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.menu-items li { margin-bottom: 5px; }
.menu-items li:last-child { margin-bottom: 0; }

.menu-items a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: white;
}

.menu-items a:hover { background-color: rgba(255,255,255,0.1); }

/* Section Logo */
.logo-section {
	background-color: #0066FF;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: 0px;
	display: flex;
	background-image: url(../img/motif2.png);
	padding-top: 20px;
	padding-bottom: 40px;
	text-align: center;
	overflow-x: hidden;
	box-sizing: border-box;
  
}

.logo {
  width: 150px;
  height: 150px;
  background-color: white;
  border: 3px solid #0044cc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* Pied de page */
.footer {
	min-height: 75px;
	background-color: #00FFFF;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 0px;
	position: relative;
	box-sizing: border-box;
	display: flex;
	height: 75px;
	margin: 0px;
	background-image: url(../img/motif4.png);
}



.footer button:hover {
  background-color: #add8e6;
}

.footer .copyright {
	position: absolute;
	bottom: 10px;
	right: 15px;
	font-size: 0.9rem;
	color: #0033FF;
	margin: 0px;
	padding: 20px;
}

  .logo {
    width: 120px;
    height: 120px;
  }

  .footer button {
    width: 100%;
  }

 

  .logo-section h2 {
    font-size: 1.2rem;
  }

  .logo {
    width: 100px;
    height: 100px;
  }
}

/* Contenu */
#contenu {
	justify-content: space-between;
	align-items: flex-start;
	background-color: #0066FF;
	background-image: url(../img/motif2.png);
	background-repeat: repeat;
	background-size: auto;
	padding: 20px;
	height: 100%;
	width: 100%;
	text-align: center;
}


.bloc1 {
	width: 450px;
	height: 450px;
	padding: 10px;
	text-align: center;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

.bloc2 {
	width: 450px;
	padding: 10px;
	height: 450px;
	text-align: center;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

/* Images */
.img {
	width: 409px;
	height: auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 75px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	text-align: center;
}
.img2 {
	width: 146px;
	height: auto;
	margin-top: 75px;
	padding: 0px;
	margin-right: 0px;
	margin-bottom: 75px;
	margin-left: 0px;
	text-align: center;
}

/* Carrousel */
.carrousel-container {
	position: relative;
	width: 450px;
	height: 450px;
	overflow: hidden;
	background: white;
	border: 2px solid #007BFF;
	border-radius: 10px;
	background-image: url(../img/motif2.png);
	background-repeat: repeat;
	background-size: auto;
	margin-top: 20px;
	margin-bottom: 0px;
	margin-left: auto;
	padding: 0px;
	text-align: center;
	margin-right: auto;
}

.carrousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carrousel-item {
  min-width: 100%;
  height: 100%;
}

.carrousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Boutons navigation */
.btn-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #007BFF;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.btn-left { left: 10px; }
.btn-right { right: 10px; }

/* Points */
.indicators {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.indicators .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.indicators .dot.active { background-color: #007BFF; }



.special {
	font-family: 'animeace2_bld', Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-size: 18px; /* taille par défaut pour PC */
	padding: 0;
	margin-top: 25px;
	margin-left: 15px;
	width: 100%;
	float: left;
	text-align: left;
}

.special1 {
	font-family: 'Elgharib-AlwiSahafa', Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-size: 40px; /* taille par défaut pour PC */
	float: right;
	margin-right: 112px;
	padding: 0;
	margin-top: 0px;
	text-align: right;
	width: 100%;
	line-height: normal;
}

/* Tablette */
@media (max-width: 800px) {
    .special {
        font-size: 13px;
		margin-top: 25px;
    }
    .special1 {
        font-size: 30px;
		margin-right: 112px;
		margin-top: 11px;
    }
}

/* Téléphone */
@media (max-width: 600px) {
    .special {
	    width: 250px;
        font-size: 10px;
		margin-top: 21px;
    }
    .special1 {
	    width: 250px;
        font-size: 20px;
        margin-right: 112px; /* j’ai réduit ici pour éviter que ça déborde sur mobile */
		margin-top: 0px;
		
    }
	
	.img {
	width: 350px;
	height: auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 75px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	text-align: center;
}

.img2 {
	width: 106px;
	height: auto;
	margin-top: 75px;
	padding: 0px;
	margin-right: 0px;
	margin-bottom: 75px;
	margin-left: 0px;
	text-align: center;
}


}

/* Conteneur Flex */
.container {
	display: flex;
	flex-wrap: wrap; /* Permet aux éléments de descendre si espace insuffisant */
	justify-content: center; /* Centre horizontalement */
	gap: 5px; /* Espace entre les éléments */
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	padding: 0px;
}

/* Chaque élément */
.box-5 {
	width: 450px;
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	text-align: center;
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

/* Responsive : quand écran trop petit */
@media (max-width: 600px) {
  

  .carrousel-container {
	position: relative;
	width: 85%;
    height: 85%;;
  }
  
}
