body {margin:0;padding:0;word-wrap:break-word;}
img {border:none;}
input {border:1px solid black;border-radius:2px;padding:0;}
input[type=image] { border: none; }
textarea {border:1px solid black;padding:0;}
* {box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;-ms-box-sizing:content-box;}
a:link {color:#393939;text-decoration:none;}
a:active {color:#393939;text-decoration:none;}
a:hover {color:#393939;text-decoration:none;}
a:visited {color:#393939;text-decoration:none;}
.DefaultParagraph { text-align:left;margin:0px;text-indent:0.0px;line-height:1px;font-family:"Verdana", sans-serif;font-style:normal;font-weight:normal;color:#000000;background-color:transparent;font-variant:normal;font-size:16.0px;vertical-align:0; }
.Corps { text-align:left;margin:0px 0px 12px;text-indent:0.0px;line-height:1px;font-family:"Verdana", sans-serif;font-style:normal;font-weight:normal;color:#000000;background-color:transparent;font-variant:normal;font-size:16.0px;vertical-align:0; }
.Corps-artistique { text-align:left;margin:0px;text-indent:0.0px;line-height:1px;font-family:"Verdana", sans-serif;font-style:normal;font-weight:normal;color:#000000;background-color:transparent;font-variant:normal;font-size:16.0px;vertical-align:0; }
.Corps-de-tableau { text-align:left;margin:0px 0px 12px;text-indent:0.0px;line-height:1px;font-family:"Verdana", sans-serif;font-style:normal;font-weight:normal;color:#000000;background-color:transparent;font-variant:normal;font-size:16.0px;vertical-align:0; }
.Normal { text-align:left;margin:0px;text-indent:0.0px;line-height:1px;font-family:"Verdana", sans-serif;font-style:normal;font-weight:normal;color:#000000;background-color:transparent;font-variant:normal;font-size:16.0px;vertical-align:0; }



  nav {
    display: flex;
    flex-direction: row; /* garde le menu horizontal */
    justify-content: space-between;
    width: 100%;
  }

  nav a {
    width: 20%; /* chaque lien occupe 20% de largeur */
    text-align: center;
    font-size: 14px;
    padding: 12px;
    color: #333;
    text-decoration: none;
  }
}



form.contact-form {
  background-color: #f4f8fc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  font-family: 'Verdana', sans-serif;
  max-width: 600px;
  margin: auto;
  color: #333;
}

form.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form.contact-form input[type="submit"] {
  background-color: #2E86C1;
  color: white;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form.contact-form input[type="submit"]:hover {
  background-color: #1A5276;
}



<!-- Cette image symbolise une transition visuelle : elle est inclinée à 45° en mode portrait, 
     puis disparaît en fondu lors du passage en mode paysage. Elle est utilisée pour suggérer 
     à l'utilisateur de pivoter son appareil. -->
/* Image de rotation contextuelle */
/* 🖼️ Image plein écran déclenchée uniquement en mode portrait */

/* 🖼️ Image plein écran en mode portrait */
.image-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.image-container.active {
  opacity: 1;
  pointer-events: auto;
}

/* 🔄 Image couvre toute la surface + rotation */
.orientation-hint {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: rotate(0deg);
  transition: transform 3s ease-in-out;
}

/* 🧠 Responsive adaptatif pour mobile */
@media (max-width: 768px) {
  #divMain {
    width: 100%;
  }
}

/* 🎯 Styles WebPlus (inchangés) */
.OBJ-1,
.OBJ-1:link,
.OBJ-1:visited {
  background-image: url('wpimages/wpb57c3b3e_06.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  text-decoration: none;
  display: block;
  position: absolute;
}

.OBJ-1 span {
  color: #666666;
  font-family: Tahoma, sans-serif;
  font-weight: bold;
  font-size: 23px;
  position: absolute;
  left: 4px;
  top: 19px;
  width: 209px;
  height: 29px;
  line-height: 29px;
  text-align: center;
  text-transform: capitalize;
}

.C-1 {
  font-size: 32px;
  font-weight: bold;
}

.C-2 {
  font-size: 16px;
}

.C-3 {
  font-size: 24px;
}

.alerte-rotation {
  position: absolute;
  bottom: 10%;
  text-align: center;
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 20px;
  opacity: 0;
  transition: opacity 1s ease;
}

.alerte-rotation.active {
  opacity: 1;
}

.symbole {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}














