.article {
  padding-bottom: 80px;
}

.image_centre {
  text-align: center;
}

.image_gauche {
  text-align: right;
}

.image_droite {
  text-align: left;
}

.texte_centre {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 640px;
}

.texte_gauche {
  text-align: justify;
  margin-right: 0px;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 600px;
}

.texte_droite {
  text-align: justify;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 600px;
}

.titre_article {
  display: block;
  position: relative;
  margin-top: 20px;
  margin--bottom: 20px;
  font-family: 'Akrobat';
  font-weight: 500;
  font-style: normal;
  font-size: 48px;
  color: rgba(80,95,113,1.00);
}

.texte_article {
  display: block;
  position: relative;
  margin-top: 0px;
  font-family: 'Akrobat';
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  color: rgba(80,95,113,1.00);
}

.bloc {
  position: relative;
  width: 100%;
  margin: 0px;
  display: block;
  /*flex*/
    /*border: rgba(0,0,0,0.5) thin solid;
  */
  height: 600px;
  background-color: rgba(236,11,15,0);
  overflow: hidden;
}

.blocpara {
  position: relative;
  width: 100%;
  margin: 0px;
  /*display: block;
  /*flex*/
    /*border: rgba(0,0,0,0.5) thin solid;
  */
  height: 240px;
  background-color: rgba(236,11,15,0);
  overflow: hidden;
}

.vert {
  background-color: rgba(255,255,0,0);
}

.bt_footer {
  display: block;
  background-color: rgba(255,255,255,0);
  color: rgba(255,255,255,0.6);
  padding-top: 4px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 24px;
  height: 24px;
}

.gris {
  background-color: rgba(123,123,123,0.2);
}

.gris01 {
  background-color: rgba(123,123,123,0.2);
  background-image: url("../../images/background/idee01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.gris02 {
  background-color: rgba(123,123,123,0.2);
  background-image: url("../../images/background/idee02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.gris03 {
  background-color: rgba(123,123,123,0.2);
  background-image: url("../../images/background/idee03.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax {
  display: flex;
  position: absolute;
  top: -20px;
}

.fromleft {
  display: block;
  position: absolute;
  left: -50%;
  background-color: rgba(255,255,255,1);
  width: 50%;
  height: 600px;
}

.fromright {
  display: block;
  position: absolute;
  right: 0px;
  background-color: rgba(255,255,255,1);
  width: 50%;
  height: 600px;
}

.sigle_texte_vertical {
  display: block;
  position: relative;
  /*border: thick solid rgba(0,0,0,1.00);
  */
    padding: 60px;
  text-align: justify;
}

.sigle {
  display: block;
  position: relative;
  /*border: thick solid rgba(0,0,0,1.00);
  */
    text-align: center;
  width: 100%;
}

.justify {
  text-align: justify;
}

.right {
  text-align: right;
  margin-right: 0px;
}

.slogan_para {
  width: 100%;
  z-index: 700;
  text-align: center;
  display: block;
  position: absolute;
}

.parabloc {
  position: relative;
}

.bloc_slogan {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Akrobat';
  font-weight: 800;
  font-style: normal;
  font-size: 64px;
  color: rgba(255,255,255,1.00);
  text-transform: uppercase;
}

.bloc_slogan_para {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Akrobat';
  font-weight: 800;
  font-style: normal;
  font-size: 36px;
  color: rgba(255,255,255,1.00);
  text-transform: uppercase;
  padding-top: 80px;
}

.texte_adresse {
  font-family: 'Akrobat';
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f8f8f8;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* ===== GALERIE RESPONSIVE ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
  box-sizing: border-box;
  background-color: #f8f8f8;
}

.gallery a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ===== LIGHTBOX OVERLAY ===== */
#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid #fff;
  border-radius: 10px;
}

.contact-form-section {
  max-width: 1000px;
  margin: 60px auto;
  background: #f9fafa;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.contact-title {
  font-size: 24px;
  color: rgba(238,127,10,1);
  margin-bottom: 20px;
  font-weight: bold;
}

.contact-form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  background-color: rgba(238,127,10,1);
  color: white;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.contact-form button:hover {
  background-color: rgba(0,0,0,1.00);
}

@media (max-width: 768px) {
  .contact-form .row {
    flex-direction: column;
  }
}

/* ===== RESPONSIVE TEXT ALIGNEMENT ===== */
@media(min-width:768px){
  .texte_gauche {
    text-align: right;
  }
  .texte_droite {
    text-align: left;
  }
}

@media(min-width:992px){
  .texte_gauche {
    text-align: right;
  }
  .texte_droite {
    text-align: left;
  }
}

@media(min-width:1200px){
  .texte_gauche {
    text-align: right;
  }
  .texte_droite {
    text-align: left;
  }
}