/* Réinitialisation */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
	background-color: #0066FF;
}

/* Bannière */
.banner {
	height: 100%;
	background-color: #0044cc;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
}

/* Section Logo */
.logo-section {
	height: auto;
	background-color: #0066FF;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: 0px;
	padding: 0px;
	text-align: center;
	box-sizing: border-box;
	background-image: url(../img/motif2.png);
}
#pied {
	margin: 0px;
	padding: 0px;
	float: left;
}


.logo-section h2 {
  font-size: 2rem;
  margin: 0px;
  padding: 0px;
}

.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: 350px;
	background-color: #0044cc;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	color: white;
	box-sizing: border-box;
	background-image: url(../img/motif10.png);
	height: auto;
	display: flex;
	margin: 0px;
	padding-top: 50px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

#menu {
	width: 250px;
	padding: 0px;
	margin: 0px;
	height: 100%;
}

#contact {
  width: 280px;
  margin: 0px;
  display: flex;
  padding: 0px;
}

.footer button:hover {
  background-color: #add8e6;
}

.footer .copyright {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 0.9rem;
  color: #fff;
}

/* Conteneur Flex */
.container1 {
	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-4 {
	width: 250px;
	display: flex;
	justify-content: center;
	margin: 0px;
	padding: 0px;
	height: 100%;
}

/* Responsive : quand écran trop petit */
@media (max-width: 768px) {

.box-4 {
    width: 250px;
    height: 100%;
  }

.container1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: 0px;
	margin-bottom: 100px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: 50px;
}
}

@media (max-width: 650px) {



.container1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px;
	padding: 0px;
	margin-bottom: 100px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: 50px;
}
}

/* Navbar */
.myMenu-navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f8f8;
	position: relative;
	z-index: 1000;
	padding-top: 10px;
	padding-right: 50px;
	padding-bottom: 10px;
	padding-left: 40px;
}

.myMenu-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.myMenu-list {
  list-style: none;
  display: flex;
  gap: 20px;
  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%;
	left: 0;
	list-style: none;
	padding: 10px 0;
	margin: 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	min-width: 70px;
	z-index: 100;
	background-color: #FFFFFF;
	text-align: left;
}

.myMenu-submenu li {
  padding: 5px 20px;
}

.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: 768px) {
  .myMenu-navbar {
    background: ##FFFFFF;
  }

  .myMenu-list {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    background: #0099FF;
    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;
  }
  
#menu {
  width: 250px;
  padding: 0px;
  margin: 0px;
  height: 100%;
}

#contact {
  width: 280px;
  margin: 0px;
  display: flex;
  padding: 0px;
}    
  
  
  
}

/* Masquer la croix sur PC */
@media (min-width: 769px) {
  .myMenu-close {
    display: none;
  }
}

/* Responsive très petit écran */
@media (max-width: 480px) {
  .banner h1 {
    font-size: 1.5rem;
  }

  .logo-section h2 {
    font-size: 1.2rem;
  }

  .logo {
    width: 100px;
    height: 100px;
  }
}

/* Container */
.pb-wrap {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	justify-content: center;
	max-width: 1200px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 40px;
	padding-right: 20px;
	padding-bottom: 40px;
	padding-left: 20px;
}

/* Zone principale */
.pb-main-area {
  flex: 1 1 480px;
  min-width: 280px;
  max-width: 720px;
}
.pb-image-frame {
  position: relative;
  width: 400px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: #eaeaea;
  overflow: hidden;
  border-radius: 6px;
}
.pb-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

/* Flèches */
.pb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: 1px solid #ccc;
  padding: 6px 10px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 4px;
}
.pb-arrow-left { left: 8px; }
.pb-arrow-right { right: 8px; }

/* Actions */
.pb-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
}
.pb-action-btn {
  border: 1px solid #d0d0d0;
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}
.pb-action-btn:active { transform: translateY(1px); }

/* Meta */
.pb-meta { text-align: center; margin-top: 10px; }
#pb-title {
	margin: 0 0 6px;
	font-size: 18px;
	color: #FFFFFF;
}
#pb-desc {
	margin: 0;
	color: #FFFFFF;
	font-size: 14px;
}

/* Miniatures */
.pb-thumbs-area {
  width: 140px;
  flex: 0 0 140px;
}
.pb-thumbs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 420px;
  overflow-y: auto;
  padding: 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e6e6e6;
}

/* Miniature individuelle */
.pb-thumb {
  display: flex;
  flex-direction: column; /* ✅ titre en dessous */
  align-items: center;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.pb-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
}
.pb-thumb-title {
  font-size: 13px;
  color: #222;
  margin-top: 4px;
  text-align: center;
}
.pb-thumb.selected {
  background: #f0f8ff;
  border-left: 3px solid #3b82f6;
}

/* Scrollbar personnalisée */
.pb-thumbs-list::-webkit-scrollbar {
  width: 8px;
}
.pb-thumbs-list::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
}
.pb-thumbs-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
.pb-thumbs-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Lightbox */
.pb-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.pb-lb-img {
  max-width: 92%;
  max-height: 90%;
  border-radius: 6px;
}
.pb-lb-close {
  position: fixed;
  top: 18px;
  right: 20px;
  background: transparent;
  color: #fff;
  font-size: 28px;
  border: none;
  cursor: pointer;
}
.pb-lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  font-size: 36px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 6px;
}
.pb-lb-left { left: 18px; }
.pb-lb-right { right: 18px; }

/* Responsive */
@media (max-width: 768px) {
  .pb-wrap { flex-direction: column; align-items: center; }
  .pb-thumbs-area { width: 100%; flex: none; margin-top: 12px; }
  .pb-thumbs-list { flex-direction: row; overflow-x: auto; max-height: none; }
  .pb-thumb { min-width: 84px; }
  .pb-thumb img { width: 72px; height: 72px; }
  .pb-thumb-title { font-size: 12px; }
}

.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;
}

/* 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-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;
	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;
	overflow: hidden;
	border: 2px solid #333;
	border-radius: 0;
}










}


/* Affiche la première image au départ */
.mon-slide:first-child {
  display: block;
  
  
  
  
  
  
