/*
Theme Name: the7dtchild
Author: Dream-Theme
Author URI: http://dream-theme.com/
Description: The7 is perfectly scalable, performance and SEO optimized, responsive, retina ready multipurpose WordPress theme. It will fit every site – big or small. From huge corporate portals to studio or personal sites – The7 will become a great foundation for your next project!
Version: 1.0.0
License: This WordPress theme is comprised of two parts: (1) The PHP code and integrated HTML are licensed under the GPL license as is WordPress itself.  You will find a copy of the license text in the same directory as this text file. Or you can read it here: http://wordpress.org/about/gpl/ (2) All other parts of the theme including, but not limited to the CSS code, images, and design are licensed according to the license purchased. Read about licensing details here: http://themeforest.net/licenses/regular_extended
Template: dt-the7
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600;700&display=swap');

/* Police globale */
.wpcf7 form { font-family: 'Roboto Slab', serif; }

/* Grille 2 colonnes */
.wpcf7 form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

/* Pleine largeur */
.wpcf7 form .form-row {
  display: flex;
  flex-direction: column;
}

/* Champs qui doivent couvrir toute la ligne */
.wpcf7 form .form-row--full {
  grid-column: 1 / -1;
}

/* Labels au-dessus */
.wpcf7 form .form-row label {
  font-weight: 700;
  font-size: 17px;    /* +2px */
  margin-bottom: 6px;
  color: #0a0a0a;
}

/* Champs */
.wpcf7 form input,
.wpcf7 form select,
.wpcf7 form textarea {
  width: 100%;
  font-family: 'Roboto Slab', serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid #e3e3e7;
  border-radius: 16px;     /* arrondi plus doux */
  background: #fff;
  color: #0a0a0a;
  transition: border-color .2s ease, box-shadow .2s ease;
  box-sizing: border-box;
}

.wpcf7 form textarea { min-height: 120px; }

/* Focus */
.wpcf7 form input:focus,
.wpcf7 form select:focus,
.wpcf7 form textarea:focus {
  border-color: #6648FF;
  box-shadow: 0 0 0 3px rgba(102,72,255,0.12);
  outline: none;
}

/* Bouton */
.wpcf7 form .btn-devis {
  background: #6648FF;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  width: 100%;          /* bouton full largeur */
  height: 70px;
  margin: 10px 0;
  padding: 0 14px;
  border-radius: 16px;  /* même arrondi que les champs */
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .06s ease, filter .2s ease;
  font-family: 'Roboto Slab', serif;
}

.wpcf7 form .btn-devis:hover { filter: brightness(.96); }
.wpcf7 form .btn-devis:active { transform: translateY(1px); }

/* Responsive : 1 co*
