/* 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;
}
@font-face {
font-family: 'Beiruti-ExtraLight';
src: url('../fonts/Beiruti-ExtraLight.ttf') format('opentype');
font-weight: normal;
font-style: normal;
}

/* Réinitialisation */

.special {
	font-family: 'animeace2_bld', Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 0;
	margin: 0px;
	text-align: center;
}

.special1 {
	font-family: 'Elgharib-AlwiSahafa', Arial, Helvetica, sans-serif;
	font-size: 24px;
	padding: 0;
	margin: 0px;
}
.special2 {
	font-family: 'Beiruti-ExtraLight', Arial, Helvetica, sans-serif;
	
	padding: 0;
	margin: 0px;
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}	


.special5 {
	font-family: 'Beiruti-ExtraLight', Arial, Helvetica, sans-serif;
	
	padding: 8px;
	margin: 0px;
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}	


.special4 {
	font-family: 'Elgharib-AlwiSahafa', Arial, Helvetica, sans-serif;
	font-size: 24px;
	padding: 0;
	margin: 0px;
	color: #FFFFFF;
}

	.special3 {
	font-family: 'Beiruti-ExtraLight', Arial, Helvetica, sans-serif;
	font-size: 18px;
	padding: 0;
	margin: 0px;
	word-spacing: 1mm;
	font-weight: bold;
	text-align: center;
}

.texte1 {
	font-family: 'animeace2_bld', Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 0;
	text-align: center;
	color: #FFFFFF;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #333333;
}

/* Bannière */
.banner {
	height: 100%;
	box-sizing: border-box;
	background-color: #000000;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* carrouse */
.mon-carrousel {
	position: relative;
	width: 100%;        /* Toujours 100% largeur */
	height: 450px;
	overflow: hidden;
	border: 2px solid #333;
	border-radius: 0;
}

.mon-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.mon-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
}

.mon-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Zoom au survol */
.mon-slide img:hover {
  transform: scale(1.1);
}

.mon-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
}

.mon-caption h3 {
	margin: 0;
	font-size: 24px;
	font-weight: bolder;
}

.mon-caption p {
	margin: 5px 0 0;
	font-size: 16px;
	font-weight: bold;
}

@media (max-width: 767px) {
  .mon-caption h3 {
	margin: 0;
	font-size: 20px;
	font-weight: bolder;
}

.mon-caption p {
	margin: 5px 0 0;
	font-size: 14px;
	font-weight: bold;
}

/* carrouse */
.mon-carrousel {
	position: relative;
	width: 100%;        /* Toujours 100% largeur */
	height: 400px;
	box-sizing: border-box;
	overflow: hidden;
	border: 2px solid #333;
	border-radius: 0;
}



}


@media (max-width: 540px) {
  .mon-caption h3 {
	margin: 0;
	font-size: 15px;
	font-weight: bolder;
}

.mon-caption p {
	margin: 5px 0 0;
	font-size: 13px;
	font-weight: bold;
}

/* carrouse */
.mon-carrousel {
	position: relative;
	width: 100%;        /* Toujours 100% largeur */
	height: 300px;
	box-sizing: border-box;
	overflow: hidden;
	border: 2px solid #333;
	border-radius: 0;
}


}

/* Boutons cercles */
.mon-indicators {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.mon-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 5px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  border: 1px solid #333;
}

.mon-dot.active {
  background: #000;
}

/* Flèches */
.mon-prev, .mon-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  z-index: 20;
}

.mon-prev { left: 10px; }
.mon-next { right: 10px; }

.mon-prev:hover, .mon-next:hover {
  background: black;
}

/* RESPONSIVE : toujours 100% largeur */
@media (max-width: 1023px) {
  .mon-carrousel {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .mon-carrousel {
    width: 100%;
  }
}

/* Affiche la première image au départ */
.mon-slide:first-child {
  display: block;
}



/* introduction */
.introduction {
	height: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
	background-color: #FF9900;
	flex-direction: column;
	align-items: center;
	width: 100%;
	gap: 20px;
	margin: 0px;
	text-align: center;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	background-image: url(../img/motif9.png);
}



/* Navbar */
.myMenu-navbar {
	justify-content: space-between;
	align-items: center;
	background: #f8f8f8;
	position: relative;
	z-index: 1000;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 30px;
	display: flex;
}

.myMenu-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.myMenu-list {
	list-style: none;
	display: flex;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.myMenu-list li {
  position: relative;
}

.myMenu-list a {
	text-decoration: none;
	color: black;
	font-weight: bold;
	transition: color 0.3s;
}

.myMenu-list a:hover {
  color: #007BFF;
}

/* Dropdown (PC) */
.myMenu-submenu {
	display: none;
	position: absolute;
	top: 100%;
	list-style: none;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	min-width: 70px;
	z-index: 100;
	background-color: #FFFFFF;
	text-align: left;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
	margin: 0;
	width: 75px;
}

.myMenu-submenu li {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}

.myMenu-submenu a {
  font-weight: normal;
  color: black;
}

.myMenu-dropdown:hover .myMenu-submenu {
  display: block;
}

/* Hamburger */
.myMenu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.myMenu-toggle span {
  height: 3px;
  width: 25px;
  background: black;
  margin: 4px 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 685px) {
  .myMenu-navbar {
    background: #FFFFFF;
  }

  .myMenu-list {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    flex-direction: column;
	 align-items: center;
    justify-content: center;
    
    transition: left 0.3s ease;
    z-index: 999;
  }

  .myMenu-list.active {
    left: 0;
  }

  .myMenu-list li {
    text-align: center;
    padding: 5px 0;
    width: 100%;
  }

  .myMenu-list a {
    color: white;
    font-size: 1.2rem;
    display: block;
    width: 100%;
    text-align: center;
  }

  .myMenu-toggle {
    display: flex;
  }

  /* Croix */
  .myMenu-close {
    display: block;
    left: 150px;
   
    font-size: 2rem;
    font-weight: bold;
	text-align: right;
    color: white;
    cursor: pointer;
  }

  /* Dropdown mobile */
  .myMenu-submenu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: transparent;
  }

  .myMenu-submenu li {
   
  }

  .myMenu-submenu a {
    color: white;
    font-size: 1.2rem;
    display: block;
    text-align: center;
    width: 100%;
  }

.myMenu-list a:hover {
  color: #00FFFF;
}

  /* Afficher le sous-menu quand actif */
  .myMenu-dropdown.active .myMenu-submenu {
    display: flex;
  }
  
  

  
  
}

/* Masquer la croix sur PC */
@media (min-width: 685px) {
  .myMenu-close {
    display: none;
  }
}

/* graphisme */
.graphisme {
	height: auto;
	overflow-x: hidden;
	box-sizing: border-box;
	background-color: #0066FF;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: 0px;
	text-align: center;
	display: flex;
	background-image: url(../img/motif2.png);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
}

/* animation */
.animation {
	height: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
	background-color: #CC0000;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: 0px;
	padding: 0px;
	text-align: right;
	display: flex;
	background-image: url(../img/motif6.png);
}

/* webdesign */
.webdesign {
	height: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
	background-color: #BC79FF;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: 0px;
	text-align: center;
	display: flex;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	background-image: url(../img/motif11.png);
}

/* contacte */
.contacte {
	height: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
	background-color: #00CC00;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: 0px;
	padding: 0px;
	text-align: center;
	display: flex;
	background-image: url(../img/motif12.png);
}

/* Pied de page */
.footer {
	min-height: 350px;
	background-color: #000000;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	text-align: left;
	overflow-x: hidden;
	box-sizing: border-box;
	display: flex;
	padding-top: 50px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	background-image: url(../img/motif5.png);
}

.footer .copyright {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 0.9rem;
  color: #fff;
}

/* Conteneur Flex */
.container0 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: 0px;
	margin-bottom: 100px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: 50px;
}

.box-1 {
  width: 250px;
  display: flex;
  justify-content: center;
  margin: 0px;
  padding: 0px;
  height: 100%;
}



#menu {
	width: 250px;
	padding: 0px;
	margin: 0px;
	height: 100%;
  
}

#contact {
  width: 280px;
  margin: 0px;
  display: flex;
  padding: 0px;
}

/* Responsive : quand écran trop petit */
@media (max-width: 850px) {

.box-1 {
    width: 250px;
    height: 100%;
  }

.container0 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: 0px;
	margin-bottom: 100px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: 50px;
}

#menu {
  width: 250px;
  padding: 0px;
  margin: 0px;
  height: 100%;
}

#contact {
  width: 280px;
  margin: 0px;
  display: flex;
  padding: 0px;
}  


}


/* Conteneur Flex */
.container1 {
	display: flex;
	flex-wrap: wrap; /* Permet aux éléments de descendre si espace insuffisant */
	justify-content: center; /* Centre horizontalement */
	gap: 10px; /* Espace entre les éléments */
	margin-top: 10px;
	text-align: center;
	padding: 0px;
}

/* Chaque élément */
.box-4 {
	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: 650px) {
.container0 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px;
	padding: 0px;
	margin-bottom: 100px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: 50px;
}
}
/* Responsive : quand écran trop petit */
@media (max-width: 850px) {
  .box-4 {
    width: 100%; /* prend moins de largeur sur mobile */
    height: 450px; /* peut réduire hauteur si besoin */
  }
}



/* Conteneur Flex */
.container {
	display: flex;
	flex-wrap: wrap; /* Permet aux éléments de descendre si espace insuffisant */
	justify-content: center; /* Centre horizontalement */
	gap: 10px; /* Espace entre les éléments */
	margin-top: 10px;
	text-align: center;
}

/* Chaque élément */
.box-5 {
	width: 450px;
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	text-align: center;
	margin: 0px;
	padding: 0px;
}

#txtinto {
	margin: 0px;
	padding: 0px;
	height: 0px;
}
#videointro {
	padding: 0px;
	height: auto;
	width: auto;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	text-align: center;
}
.video-container {
	width: 380px;
	height: 350px;
	background-color: transparent;
	position: relative;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	text-align: center;
	padding: 0px;
}

#txt2intro {
	padding: 0px;
	height: 100%;
	width: 450px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-weight: bold;
}
.scroll-container {
	width: 380px;        /* largeur du conteneur */
	max-width: none;     /* pas de limite */
	height: 350px;
	overflow-y: scroll;
	background-color: rgba(0, 0, 0, 0.7);
	border: 5px solid #ffffff33;
	box-sizing: border-box;
	margin-top: 45px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 15px;
}

/* Texte blanc avec contour, toujours centré */
.scroll-text p {
	color: white;
	font-size: 16px;
	text-shadow: 1px 1px 2px #000, -1px -1px 2px #aaa;
	margin: 0;
	text-align: center !important; /* force le texte au milieu */
	font-weight: normal;
}

/* Scrollbar pour Firefox */
.scroll-container {
	scrollbar-color: #000 transparent;
	scrollbar-width: thin;
	text-align: center;
}

/* Scrollbar pour Chrome, Edge et Safari */
.scroll-container::-webkit-scrollbar {
	width: 8px;
}

.scroll-container::-webkit-scrollbar-track {
	background: transparent;
}

.scroll-container::-webkit-scrollbar-thumb {
	background-color: #000;
	border-radius: 4px;
	border: 2px solid transparent;
}
#txt2design {
	margin: 0;
	padding: 0;
	height: 245px;
	width: 100%;
	text-align: center;
}

.scroll-container2 {
	width: 85%; /* toujours 100% largeur */
	max-width: none; /* pas de limite */
	height: 200px;
	overflow-y: scroll;
	background-color: rgba(0, 0, 0, 0.7); /* noir transparent */
	border: 5px solid #ffffff33;
	box-sizing: border-box;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 7px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}

/* Texte blanc avec contour */
.scroll-text p {
	color: white;
	font-size: 16px;
	text-align: justify;
	text-shadow: 1px 1px 2px #000, -1px -1px 2px #aaa;
	margin: 0;
	font-weight: bold;
}

/* Scrollbar personnalisée (Chrome, Edge, Opera) */
.scroll-container2::-webkit-scrollbar {
    width: 8px;
}

.scroll-container2::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 4px;
}

.scroll-container2::-webkit-scrollbar-track {
    background: transparent;
}

/* Scrollbar pour Firefox */
.scroll-container2 {
    scrollbar-color: #000 transparent;
    scrollbar-width: thin;
}

/* PLUS BESOIN DE MEDIA QUERIES */
/* Toujours 100% largeur sur PC, tablette et mobile */


#carouseldesign {
	margin: 0px;
	padding: 0px;
	height: 265px;
	width: 100%;
	text-align: center;
}
#txt2anim {
	padding: 0px;
	height: 450px;
	width: 450px;
	margin: 0px;
}
#carouanim {
	padding: 0px;
	height: 450px;
	width: 450px;
	margin: 0px;
}
#carouweb {
	margin: 0px;
	padding: 0px;
	height: 230px;
}
#txt2web {
	margin: 0px;
	padding: 0px;
	height: 230px;
}
#boutcont {
	height: 460px;
	
	box-sizing: border-box;
	width: 60px;
	padding: 0px;
	float: right;
	margin-top: 60px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: auto;
}




.contactcontrole {
	height: 100%;
	width: 100%;
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
