@charset "UTF-8";
@font-face {
  font-family: "freestyle";
  src: url("fonts/freestyle.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Styles de base */
html {
  scroll-behavior: smooth; /* pour un défilement fluide */
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.bouton {
  background-color: #F17D4A;
  color: white;
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  padding: 8px 20px;
  height: 22px;
  font-size: 14px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.bouton:hover {
  background-color: white;
  color: #F17D4A;
  border: 1px solid #F17D4A;
}

ul li {
  list-style: none;
}

article a {
  color: #F17D4A;
  font-weight: bold;
}
article a:hover {
  color: #333;
}
article p {
  text-align: justify;
}
article h3 {
  text-align: justify;
}
article ul {
  margin: 0;
  padding: 0;
}
article ul li {
  text-align: justify;
  margin: 0;
  padding: 0;
}

.background {
  background-color: #FFF4EF;
  padding-bottom: 30px;
}

/* Menu de navigation */
#navbar {
  width: 100%;
  height: 108px;
  position: fixed;
  background-color: white;
  z-index: 10;
}
#navbar #barre #entete-barre {
  height: 54px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#navbar #barre #entete-barre #telephone {
  display: flex;
  justify-content: flex-start;
  margin-left: 30px;
  width: 270px;
}
#navbar #barre #entete-barre #telephone img {
  width: 25px;
  margin-right: 10px;
}
#navbar #barre #entete-barre #telephone a {
  font-weight: bold;
  color: #F17D4A;
  font-size: 18px;
}
#navbar #barre #entete-barre #logo {
  display: flex;
  justify-content: space-between;
  width: 200px;
}
#navbar #barre #entete-barre #logo img {
  width: 100%;
}
#navbar #barre #entete-barre #reservation_reseaux {
  display: flex;
  justify-content: space-between;
  width: 270px;
  margin-right: 30px;
}
#navbar #barre #entete-barre #reservation_reseaux .bouton {
  margin-top: 7px;
}
#navbar #barre #entete-barre #reservation_reseaux div {
  height: 30px;
  width: 30px;
  margin-top: 12px;
}
#navbar #barre #entete-barre #reservation_reseaux #instagram {
  background-image: url(images/icons/instagram.svg);
}
#navbar #barre #entete-barre #reservation_reseaux #instagram:hover {
  background-image: url(images/icons/instagram_hover.svg);
}
#navbar #barre #entete-barre #reservation_reseaux #facebook {
  background-image: url(images/icons/facebook.svg);
}
#navbar #barre #entete-barre #reservation_reseaux #facebook:hover {
  background-image: url(images/icons/facebook_hover.svg);
}
#navbar #barre nav {
  background-color: #F17D4A;
  color: white;
  width: 100%;
  height: 54px;
  text-align: center;
}
#navbar #barre nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
#navbar #barre nav ul li {
  position: relative;
  margin: 0;
}
#navbar #barre nav ul li a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  /* Effet de survol doux (sans gras) */
}
#navbar #barre nav ul li a:hover, #navbar #barre nav ul li a.active {
  background-color: rgb(237.3384615385, 91, 26.6615384615);
  color: white;
}
#navbar #barre nav ul li {
  /* ===== Sous-menu ===== */
}
#navbar #barre nav ul li ul.submenu {
  display: none;
  position: absolute;
  top: 54px;
  left: 0;
  background-color: #F17D4A;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 0 0 8px 8px;
  min-width: 220px;
  z-index: 15;
  text-align: left;
}
#navbar #barre nav ul li ul.submenu li a {
  display: block;
  padding: 12px 20px;
  color: white;
  white-space: nowrap;
  transition: background-color 0.3s, color 0.3s;
}
#navbar #barre nav ul li ul.submenu li a:hover {
  background-color: rgb(237.3384615385, 91, 26.6615384615);
  color: white;
}
#navbar #barre nav ul li {
  /* Apparition du sous-menu au survol */
}
#navbar #barre nav ul li:hover > ul.submenu {
  display: block;
}

/* Contenu principal */
h2 {
  margin-top: 100px;
  text-align: center;
  color: #F17D4A;
  font-size: 27px;
}

h3 {
  font-size: 21px;
  margin-top: 33px;
}

.image_bandeau {
  width: 100%;
  height: 400px;
}

.entete_principale {
  width: 100%;
  height: 800px;
  background-image: url("images/openpark_home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F17D4A;
  position: relative;
  z-index: 0;
}
.entete_principale h1 {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-family: "freestyle", sans-serif;
  color: white;
  font-weight: normal;
  font-size: 63px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}
.entete_principale h2 {
  position: absolute;
  color: white;
  font-size: 15px;
  font-weight: normal;
  bottom: 30px;
  text-align: center;
  width: 100%;
  text-shadow: 0 2px 4px rgb(0, 0, 0);
}

.entete_secondaire {
  height: 500px;
}

#espaces {
  background-image: url("images/openpark_espaces.jpg");
  background-position: top center;
}

.bouton_entete {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  border: solid 3px white;
  width: 231px;
  height: 28px;
  padding-top: 9px;
  font-size: 17px;
}
.bouton_entete:hover {
  border: solid 3px #F17D4A;
}

.container {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 80px;
  scroll-margin-top: 120px;
}

#container_orange_home {
  height: auto;
  background-image: url(images/openpark_accueil.jpg);
  scroll-margin-top: 120px;
}

.container_orange {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 100px;
  scroll-margin-top: 120px;
}
.container_orange .texte {
  width: 60%;
  text-align: center;
  margin-bottom: 70px;
}
.container_orange .texte ul {
  list-style-type: disc;
}
.container_orange .texte ul li {
  text-align: left;
  padding-bottom: 20px;
}
.container_orange .texte ul li::marker {
  color: #F17D4A;
}
.container_orange .texte div {
  width: 60%;
  margin: 0 auto;
}
.container_orange .texte div h2 {
  margin-top: 70px;
  font-family: "freestyle", sans-serif;
  font-size: 55px;
  font-weight: normal;
}
.container_orange .texte .bouton {
  position: absolute;
  bottom: 0;
  transform: translate(-50%, 50%);
}

span {
  font-weight: bold;
  display: block;
}

#container_services_quotidiens div {
  margin-top: 40px;
}
#container_services_quotidiens div img {
  width: 60px;
}

#communaute_bandeau {
  background-image: url(images/detente_home.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#communaute h2 {
  font-family: "freestyle", sans-serif;
  font-size: 55px;
  font-weight: normal;
  margin-top: 50px;
}

.fond_orange {
  width: 100%;
  background-color: #FFF4EF;
}

/* ---------- SECTION AVIS ---------- */
#avis {
  width: 80%;
  padding: 60px 0;
  text-align: center;
  position: relative;
}
#avis h2 {
  margin-top: 0;
}
#avis #container_avis {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#avis .avis-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
#avis .avis-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  cursor: grab;
  user-select: none;
}
#avis .avis-container:active {
  cursor: grabbing;
}
#avis {
  /* ✅ 3 avis visibles, plus étroits et centrés */
}
#avis .avis {
  flex: 0 0 calc(33.3333333333% - 40px);
  margin: 0 20px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5;
  border: 2px solid #F17D4A;
  background-color: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center; /* ✅ centre tout le texte */
  display: flex;
  flex-direction: column;
  align-items: center; /* ✅ centre les éléments horizontalement */
  justify-content: space-between;
  min-height: 220px; /* assure une hauteur homogène */
}
#avis .avis a {
  color: #F17D4A;
}
#avis .avis p {
  margin: 0 0 15px 0;
}
#avis .avis .auteur {
  color: #F17D4A;
  font-weight: bold;
  margin-top: auto;
}
#avis .avis .auteur span {
  display: block;
  color: #777;
  font-weight: normal;
  font-size: 12px;
  margin-top: 3px;
}
#avis .avis .etoiles {
  color: #F17D4A;
  font-size: 20px;
  margin-top: 10px;
  letter-spacing: 2px;
}
#avis .fleche {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
}
#avis .fleche img {
  width: 30px;
}
#avis .fleche:disabled {
  opacity: 0;
  pointer-events: none;
}
#avis .bouton {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.container_espaces {
  margin-bottom: 40px;
}

.espaces_openpark {
  margin-bottom: 50px;
  scroll-margin-top: 120px;
}

.liste_espaces {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2rem;
}
.liste_espaces .salle {
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: transform 0.2s ease;
}
.liste_espaces .salle .icon {
  width: 120px;
  margin: 0 auto 1rem auto;
}
.liste_espaces .salle .icon img {
  width: 100%;
  object-fit: contain;
  align-self: flex-end;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.liste_espaces .salle p {
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
}
.liste_espaces .salle:hover {
  transform: translateY(-5px);
}

.container_orange_simple {
  padding: 20px 20% 35px 20%;
  text-align: center;
  background-color: #FFF4EF;
}

.entete_terciaire {
  height: 350px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

#openspace {
  background-image: url(images/openpark_openspace.jpg);
}

#bureau {
  background-image: url(images/openpark_bureau.jpg);
}

#bien-etre {
  background-image: url(images/openpark_bienetre.jpg);
}

#reunion {
  background-image: url(images/openpark_reunion.jpg);
}

.carousel {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel__container {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.carousel__container img {
  width: 30%;
  height: auto;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel__container img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel__container {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 50px;
}
.carousel__container img {
  width: 20%;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel__container img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* Pop-up */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.lightbox.active {
  display: flex;
}
.lightbox__img {
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}
.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
}
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1rem;
}
.lightbox__arrow.left {
  left: 1rem;
}
.lightbox__arrow.right {
  right: 1rem;
}
.lightbox__arrow:hover {
  color: #f37b3f;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel__container {
    flex-direction: column;
    align-items: center;
  }
  .carousel__container img {
    width: 90%;
  }
}
/* FOOTER */
.espace_footer {
  margin-top: 75px;
}

.footer {
  font-size: 14px;
  width: 70%;
  margin: 0 auto;
}
.footer img {
  width: 30px;
}
.footer p {
  margin: 0 0 10px 0;
}
.footer .strong {
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}
.footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  text-align: left;
}
@media (max-width: 900px) {
  .footer .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-container .footer-divider {
    display: none;
  }
}
.footer .footer-column {
  flex: 1;
}
.footer .footer-column.right .footer-link {
  display: block;
}
.footer .footer-title {
  font-weight: 600;
}
.footer .footer-link {
  color: #F17D4A;
  text-decoration: none;
  transition: 0.2s;
}
.footer .footer-link:hover {
  text-decoration: underline;
}
.footer .footer-divider {
  width: 1px;
  background-color: #F17D4A;
  align-self: stretch;
}
.footer .footer-socials {
  margin: 1.5rem 0 1rem 0;
}
.footer .footer-socials a {
  color: #F17D4A;
  font-size: 1.3rem;
  margin: 0 0.5rem;
  transition: color 0.3s;
}
.footer .footer-socials a:hover {
  color: #F17D4A;
}
.footer .footer-bottom {
  font-size: 10px;
  color: #777;
  text-align: center;
  margin: 50px auto 40px auto;
}
.footer .mentions {
  font-size: 12px;
}

.tarifs_details {
  text-align: center;
  margin: 0 auto 50px auto;
  scroll-margin-top: 120px;
}
.tarifs_details .bouton {
  margin-top: 12px;
  display: inline-block;
}
.tarifs_details .prix {
  display: flex;
  justify-content: space-between;
  width: 280px;
  margin: 0 auto;
}
.tarifs_details .prix_reunion {
  width: 280px;
  margin: 30px auto 0 auto;
}
.tarifs_details .prix_reunion p {
  font-size: 12px;
  font-weight: bold;
}
.tarifs_details .prix_reunion .sous-prix {
  display: flex;
  justify-content: space-between;
}
.tarifs_details .prix_reunion .sous-prix ul {
  margin-top: 0;
}
.tarifs_details .icon {
  width: 150px;
  margin: 0 auto;
}
.tarifs_details .icon:hover p {
  color: #F17D4A;
}
.tarifs_details .icon p {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: black;
  text-align: center;
}
.tarifs_details .icon p:hover {
  color: #F17D4A;
}
.tarifs_details span {
  font-size: 14px;
  color: #F17D4A;
  font-weight: normal;
  display: inline;
}
.tarifs_details ul {
  margin-top: 35px;
  padding: 0;
  list-style: none;
  text-align: left;
}
.tarifs_details ul li {
  list-style-type: none;
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
}
.tarifs_details ul li span {
  font-weight: bold;
}

.sous-icon img {
  width: 100px;
  margin-top: 20px;
}

.texte_orange {
  color: #F17D4A;
  font-weight: bold;
}

.titre_cadre {
  margin-top: 45px;
}

#studio {
  display: flex;
  scroll-margin-top: 120px;
}
#studio .fond_studio {
  width: 13%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#studio #fond_1 {
  background-image: url("images/fond_studio_1.jpg");
}
#studio #fond_2 {
  background-image: url("images/fond_studio_2.jpg");
}

.margin-top {
  margin-top: 40px;
}

#openpark_faq {
  background-image: url("images/openpark_faq.jpg");
  background-position: top;
}

#openpark_services {
  background-image: url("images/openpark_services.jpg");
  background-position: top;
}

#openpark_infos {
  background-image: url("images/openpark_infos.jpg");
  background-position: top;
}

#openpark_reserver {
  background-image: url("images/openpark_reserver.jpg");
  background-position: top;
}

#openpark_devis {
  background-image: url("images/openpark_devis.jpg");
  background-position: top;
}

#container_orange_domiciliation {
  background-image: url("images/openpark_domiciliation.jpg");
}

#contact {
  background-image: url("images/openpark_contact.jpg");
}
#contact p a {
  color: #000;
}

#impression {
  position: relative;
  margin-bottom: 120px;
  scroll-margin-top: 120px;
}
#impression .bouton {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 50%);
}

#domiciliation {
  scroll-margin-top: 120px;
}

#acces {
  scroll-margin-top: 120px;
}
#acces p {
  margin: 5px 0 0 0;
}
#acces .icon img {
  width: 320px;
  margin: 30px 0 30px 0;
}

.plan {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 30px;
}

.plan_mobile {
  display: none;
}

#horaires {
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 100px;
}
#horaires .bouton {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 50%);
}

/* FORMULAIRE DE RESERVATION */
#formulaire {
  padding-top: 30px;
  padding-bottom: 30px;
}

.form-container * {
  box-sizing: border-box;
}

.form-container {
  width: 60%;
  margin: 0 auto;
  position: relative;
}
.form-container select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px;
  border: 2px solid #F17D4A;
  border-radius: 10px;
  font-size: 15px;
  height: 52px;
  background-image: url("images/icons/fleche_bas.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 45px;
  cursor: pointer;
}
.form-container label {
  display: block;
  margin: 16px 0 6px;
  font-weight: 600;
  color: #333;
}
.form-container input, .form-container textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #F17D4A;
  border-radius: 10px;
  background-color: white;
  font-size: 15px;
}
.form-container textarea {
  height: 140px;
  resize: vertical;
}
.form-container .checkbox {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.form-container .checkbox input {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}
.form-container .submit-btn {
  width: 100%;
  margin-top: 25px;
  padding: 15px;
  font-size: 18px;
  background: #F17D4A;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.form-container .submit-btn:hover {
  background: white;
  color: #F17D4A;
  border: 1px solid #F17D4A;
}
.form-container #status {
  text-align: center;
  margin-top: 12px;
  font-weight: 600;
}

.nav_mobile {
  display: none;
}

/* FIN FORMULAIRE DE RESERVATION */
#burger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #F17D4A;
}

.dropdown-toggle .arrow {
  display: none;
}
.dropdown-toggle {
  all: unset;
  cursor: pointer;
  background-color: #F17D4A;
  color: white;
  display: block;
  padding: 15px 20px;
}

#image_home_mobile {
  display: none;
}

.menu_mobile {
  display: none;
}

#navbar #barre nav ul li .menu_desktop a {
  padding: 0;
}
#navbar #barre nav ul li .menu_desktop a button:hover {
  background-color: rgb(237.3384615385, 91, 26.6615384615);
}

#recherche_faq .search-wrapper {
  position: relative;
  width: 40%;
  margin: 0 auto;
}
#recherche_faq .search-wrapper img {
  width: 20px;
  position: absolute;
  top: 7px;
  right: -9px;
}
#recherche_faq #faq-search {
  all: unset;
  border: 1px solid #F17D4A;
  background-color: white;
  padding: 5px 10px;
  border-radius: 30px;
  width: 100%;
}

/* ✅ RESPONSIVE */
/* MOBILE */
@media (max-width: 900px) {
  #recherche_faq .search-wrapper {
    width: 80%;
  }
  #recherche_faq img {
    display: none;
  }
  .menu_mobile {
    display: block;
  }
  .menu_desktop {
    display: none;
  }
  /* Afficher le hamburger */
  #burger {
    display: block;
    position: absolute;
    top: 16px;
    left: 19px;
  }
  #telephone {
    display: none !important;
  }
  #reservation_reseaux {
    display: none !important;
  }
  #entete-barre {
    width: 90% !important;
    margin: 13px auto 13px auto;
  }
  #navbar {
    height: 80px;
  }
  #navbar #barre nav {
    background: transparent;
  }
  #navbar #barre nav ul li {
    background-color: #F17D4A;
  }
  #navbar #barre nav ul li a {
    font-size: 20px;
    width: 65%;
    margin: 0 auto;
    text-align: left;
  }
  #navbar #barre nav ul li a.active {
    background-color: #F17D4A;
  }
  #navbar #barre #entete-barre {
    display: block;
    position: relative;
  }
  #navbar #barre #entete-barre #logo {
    position: absolute;
    right: 0;
    top: 2px;
  }
  /* Menu caché par défaut */
  #barre nav > ul {
    display: none !important;
    flex-direction: column;
    background: white;
    padding: 20px;
    position: absolute;
    top: 80px; /* ajuste selon ta barre */
    left: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  /* Quand le menu est ouvert */
  #burger.open + nav > ul {
    display: block !important;
  }
  /* Cacher les sous-menus par défaut */
  .submenu {
    display: none;
    padding: 10px 20px;
    width: 99%;
    border: 2px solid white;
    line-height: 13px;
  }
  .submenu a {
    font-size: 16px !important;
  }
  /* Afficher quand ouvert */
  .submenu.open {
    display: block;
  }
  /* Style du bouton dropdown */
  .dropdown-toggle {
    width: 65%;
    padding: 15px 20px;
    background: #F17D4A;
    border: none;
    font-size: 20px;
    margin: 0 auto;
    color: white;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .dropdown-toggle .arrow {
    display: block;
  }
  .dropdown-toggle .arrow img {
    width: 20px;
  }
  #avis {
    width: 100%;
  }
  #avis .avis {
    flex: 0 0 90%;
    margin: 0 10px;
    box-sizing: border-box;
  }
  .entete_principale {
    height: 510px;
  }
  .entete_principale h1 {
    line-height: 47px;
    left: 3%;
    width: 95%;
    font-size: 60px;
    bottom: 54px;
  }
  .entete_principale h2 {
    bottom: 30px;
    left: 4%;
    font-size: 15px;
    width: 90%;
  }
  .container {
    width: 80%;
    margin-bottom: 45px;
  }
  .container_orange {
    background-color: #FFF4EF;
    margin-bottom: 10px;
  }
  .container_orange .texte {
    width: 100%;
    margin-bottom: 45px;
  }
  .container_orange .texte .bouton {
    transform: none;
    position: relative;
    width: 70%;
  }
  .container_orange .texte ul li {
    font-size: 14px;
  }
  .container_orange .texte div {
    width: 78%;
  }
  .container_orange .texte div h2 {
    margin-top: 42px;
    font-size: 36px;
  }
  #container_orange_home {
    background-image: none;
  }
  h2 {
    margin-top: 56px;
  }
  p {
    font-size: 14px;
  }
  #image_home_mobile {
    display: block;
    width: 100%;
    height: 200px;
    background-image: url(images/openpark_accueil_mobile.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .bouton {
    width: 55%;
    padding: 13px 24px 12px 22px;
    font-size: 15px;
    margin: 0 auto;
    display: block;
  }
  .bouton_entete {
    padding: 11px 24px 7px 25px;
  }
  .image_bandeau {
    height: 200px;
  }
  #communaute h2 {
    margin-top: 42px;
    font-size: 36px;
  }
  .footer {
    width: 90%;
    padding-top: 25px;
  }
  #footer_general {
    border-top: 2px solid #F17D4A;
  }
  .footer-column {
    width: 100%;
    text-align: center;
  }
  .liste_espaces {
    padding: 0;
    display: block;
  }
  .liste_espaces .icon {
    margin: 0 auto 4rem auto !important;
  }
  .entete_secondaire {
    height: 330px;
  }
  .container_orange_simple {
    padding: 20px 10% 35px 10%;
  }
  .fond_studio {
    display: none;
  }
  #openpark_infos {
    background-image: url(images/openpark_infos_mobile.jpg);
  }
  #contact {
    background-image: none;
  }
  #acces .icon img {
    width: 290px;
  }
  .plan {
    display: none;
  }
  .plan_mobile {
    display: block;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .form-container {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
