/** Cache le footer promotionnel WordPress */ 

#colophon.site-footer {
	display: none;
}

/** CONTACT FORMULAIRE DESIGN */ 

/* SECTION CONTACT */
.wp-block-group {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

/* TITRE */
.wp-block-heading {
    font-size: 48px !important;
    font-weight: 500;
    text-align: left;
    margin-bottom: 10px;
}

/* FORMULAIRE */
.jetpack-contact-form__form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* INPUTS */
.wp-block-jetpack-input,
textarea {
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
    padding: 14px !important;
    transition: all 0.3s ease;
}

/* FOCUS INPUT */
.wp-block-jetpack-input:focus,
textarea:focus {
    border-color: #c59d5f !important;
    box-shadow: 0 0 0 2px rgba(197,157,95,0.2);
    outline: none;
}

/* LABEL */
.wp-block-jetpack-label {
    font-weight: 500;
    margin-bottom: 5px;
}

/* BOUTON */
.wp-block-button__link {
    border-radius: 30px !important;
    padding: 14px 30px !important;
    font-weight: 500;
    transition: all 0.3s ease;
	  background: #069a97 !important;
}

/* HOVER BOUTON */
.wp-block-button__link:hover {
    background: #047d7a!important;
    transform: translateY(-2px);
}

/* COLONNES */
.wp-block-columns {
    gap: 40px;
}

/* MAP */
.googlemaps iframe {
    border-radius: 12px;
    width: 100%;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/** Fond sur mobile */
@media (max-width: 768px) {
  .wp-block-cover.alignfull.has-parallax {
    min-height: unset !important;
    aspect-ratio: 16 / 10 !important;
  }
  .wp-block-cover__image-background.has-parallax {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center 70% !important;
  }
  .wp-block-cover__inner-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding-bottom: 24px !important;
    height: 100% !important;
  }
  .wp-block-cover__inner-container .wp-block-jetpack-layout-grid {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
  }

  /* Cache le bouton desktop sur mobile/tablette */
  .bouton-desktop {
    display: none !important;
  }
}

/* Cache le bouton mobile sur desktop */
.bouton-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .bouton-mobile {
    display: block !important;
  }
}