/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Web&Fix
Author URI: https://generatepress.com/about
Description: Web&fix.
Version: 3.6.0.1763674617
*/

/*=====================
  0) DESIGN TOKENS
=====================*/

:root {
  /* Couleurs Elementor compatibles */
  --e-global-color-primary: #0B2C57;
  --e-global-color-secondary: #FF7A00;
  --e-global-color-text: #111827;
  --e-global-color-accent: #FF7A00;

  /* Palette Web&Fix */
  --wf-blue: #0B2C57;
  --wf-orange: #FF7A00;
  --wf-light: #F7F9FC;
  --wf-white: #FFFFFF;

  /* Typo Web&Fix */
  --wf-heading-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wf-text-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Échelles */
  --wf-text-size: 18px;
  --wf-h1-size: 56px;
  --wf-h2-size: 40px;
  --wf-h3-size: 28px;
  --wf-h4-size: 22px;
  --wf-h5-size: 18px;
  --wf-h6-size: 16px;
  --wf-text-lh: 1.65;
  --wf-heading-tight: 1.2;
  --wf-heading: 1.3;

  /* Layout */
  --wf-container: 1200px;
  --wf-radius: 12px;
  --wf-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/*=====================
  1) RESPONSIVE TOKENS
=====================*/

@media (max-width: 921px) {
  :root {
    --wf-text-size: 16px;
    --wf-h1-size: 42px;
    --wf-h2-size: 34px;
    --wf-h3-size: 24px;
    --wf-h4-size: 20px;
  }
}

@media (max-width: 767px) {
  :root {
    --wf-text-size: 15px;
    --wf-h1-size: 32px;
    --wf-h2-size: 28px;
    --wf-h3-size: 20px;
    --wf-h4-size: 18px;
  }
}

/*=====================
  2) TYPO GLOBALE
=====================*/

body,
button,
input,
select,
textarea {
  font-family: var(--wf-text-font);
  font-size: var(--wf-text-size);
  line-height: var(--wf-text-lh);
  color: var(--e-global-color-text);
  background-color: var(--wf-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--wf-heading-font);
  color: var(--e-global-color-primary);
  letter-spacing: .5px;
  margin-top: 0;
}

h1 {
  font-size: var(--wf-h1-size);
  line-height: var(--wf-heading-tight);
  font-weight: 700;
}

h2 {
  font-size: var(--wf-h2-size);
  line-height: var(--wf-heading);
  font-weight: 600;
}

h3 {
  font-size: var(--wf-h3-size);
  line-height: var(--wf-heading);
  font-weight: 600;
}

h4 {
  font-size: var(--wf-h4-size);
  line-height: 1.35;
  font-weight: 500;
}

h5 {
  font-size: var(--wf-h5-size);
  line-height: 1.4;
  font-weight: 500;
}

h6 {
  font-size: var(--wf-h6-size);
  line-height: 1.45;
  font-weight: 400;
}

p {
  margin: 0 0 1.1em;
}

/* Elementor */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--wf-heading-font);
  color: var(--e-global-color-primary);
}

.elementor-widget-text-editor,
.elementor-widget-text-editor p {
  font-family: var(--wf-text-font);
  color: var(--e-global-color-text);
}

/*=====================
  3) UTILITAIRES
=====================*/

.wf-container {
  max-width: var(--wf-container);
  margin-inline: auto;
  padding-inline: 1rem;
}

.wf-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Carte générique */
.wf-card {
  background: #fff;
  border-radius: var(--wf-radius);
  box-shadow: var(--wf-shadow);
}

/*=====================
  4) BOUTONS
=====================*/

.wf-btn {
  --btn-bg: transparent;
  --btn-bd: transparent;
  --btn-fg: var(--wf-blue);
  --btn-shadow: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.35rem;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  text-decoration: none;
  border: 2px solid var(--btn-bd);
  color: var(--btn-fg);
  background: var(--btn-bg);
  box-shadow: var(--btn-shadow);
  transition:
    transform .12s ease,
    box-shadow .15s ease,
    background-color .15s ease,
    color .15s ease,
    border-color .15s ease;
  will-change: transform;
}

.wf-btn:hover {
  transform: translateY(-1px);
}

.wf-btn:focus-visible {
  outline: 3px solid rgba(255,122,0,.55);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255,122,0,.25);
}

.wf-btn:active {
  transform: translateY(0) scale(.99);
}

.wf-btn[aria-disabled="true"],
.wf-btn.is-disabled {
  opacity: .55;
  pointer-events: none;
  filter: grayscale(.2);
}

.wf-btn-primary {
  --btn-bg: linear-gradient(135deg, var(--wf-orange), #FFA94D);
  --btn-bd: transparent;
  --btn-fg: #fff;
  --btn-shadow: 0 10px 24px rgba(255,122,0,.28);
}

.wf-btn-primary:hover {
  box-shadow: 0 14px 28px rgba(255,122,0,.34);
}

.wf-btn-outline {
  --btn-bg: transparent;
  --btn-bd: var(--wf-blue);
  --btn-fg: var(--wf-blue);
}

.wf-btn-outline:hover {
  --btn-bg: rgba(11,44,87,.08);
}

.wf-btn--lg {
  padding: 1rem 1.5rem;
  border-radius: 14px;
  font-size: clamp(1rem,1.4vw,1.1rem);
}

.wf-btn--sm {
  padding: .6rem .9rem;
  border-radius: 10px;
  font-size: .95rem;
}

.wf-btn--block {
  display: flex;
  width: 100%;
}

@keyframes wf-spin {
  to { transform: rotate(360deg); }
}

.wf-btn.is-loading {
  position: relative;
  pointer-events: none;
  opacity: .9;
}

.wf-btn.is-loading::after {
  content: "";
  width: 1em;
  height: 1em;
  border: 2px solid rgba(255,255,255,.6);
  border-top-color: #fff;
  border-radius: 50%;
  margin-left: .25rem;
  animation: wf-spin .75s linear infinite;
}

/* Mobile: boutons full-width */
@media (max-width:767px) {
  button,
  .button,
  input[type="submit"],
  .elementor-button {
    padding: 12px 18px;
    border-radius: 10px;
  }
  .wf-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion:reduce) {
  .wf-btn,
  .wf-btn:hover,
  .wf-btn:active {
    transition: none;
    transform: none;
  }
}

/*=====================
  5) HERO
=====================*/

.wf-hero {
  background: var(--wf-light);
  color: var(--e-global-color-text);
  width: 100%;
	max-height:100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 4rem 1.5rem;
  font-family: var(--wf-text-font);
  border-radius:15px
}

.wf-hero h1 {
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--wf-blue);
}

.wf-hero h1 strong {
  color: var(--wf-orange);
}

.wf-k {
  color: var(--wf-orange);
  font-weight: 700;
}

.wf-hero-sub {
  font-size: clamp(1rem,1.4vw,1.2rem);
  opacity: .9;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 800px;
  color: var(--wf-blue);
}

.wf-hero-content {
  max-width: 900px;
  animation: fadeIn 1s ease-out;
}

.wf-hero-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
}

@media (max-width: 767px) {
  .wf-hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*=====================
  6) SERVICES
=====================*/

.wf-services {
  background: var(--wf-blue);
  color: #fff;
  padding: 3.5rem 1rem;
  border-radius:15px
}

.wf-services__wrap {
  max-width: 1400px;
  margin-inline: auto;
}

.wf-services__head {
  text-align: center;
  margin-bottom: 2.2rem;
}

.wf-services__head h2 {
  color: #fff;
  font-size: clamp(1.8rem,3.4vw,2.4rem);
  line-height: 1.2;
  margin: 0 0 .6rem;
  font-weight: 900;
}

.wf-services__intro {
  max-width: 920px;
  margin: 0 auto;
  opacity: .95;
}

.wf-services__intro span {
  color: #ffa94d;
}

.wf-services__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3,1fr);
}

@media (max-width:1024px) {
  .wf-services__grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:720px) {
  .wf-services__grid {
    grid-template-columns: 1fr;
  }
}

/* Cartes services */

.wf-services .wf-card {
  background: #0e396f;
  border: 1px solid rgba(255,255,255,.12);
  border-radius:15px
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.wf-card__image {
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.wf-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wf-card__body {
  padding: 1.1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wf-card__title {
  margin: .5rem 0 .4rem;
}

.wf-card__title a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: clamp(1.1rem,2vw,1.35rem);
}

.wf-card__title a:hover {
  color: var(--wf-orange);
  text-decoration: underline;
}

.wf-card__text {
  margin: .25rem 0 .8rem;
  opacity: .95;
}

.wf-card__bullets {
  margin: 0 0 1rem 1rem;
}

.wf-card__bullets li {
  margin: .15rem 0;
}

.wf-card__cta {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1.5rem;
}

.wf-note {
  font-size: 12px;
  color: var(--wf-orange);
}

/*=====================
  7) SECTION RDV / CAL.COM (optionnel)
   -> supprime ce bloc si tu n'utilises plus cette section
=====================*/

.wf-cal-wrapper {
  margin: 40px auto;
  padding: 32px 24px;
  background: #f7f9fc;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.wf-cal-title {
  text-align: center;
  color: var(--wf-blue);
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px;
}

.wf-cal-subtitle {
  text-align: center;
  color: #555;
  font-size: 15px;
  margin: 0 0 28px;
}

.wf-cal-inline {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Boutons du plugin de formulaire */
.cfp-form-submit {
  background: linear-gradient(45deg,#667eea 0%,#764ba2 100%);
  text-transform: uppercase;
  font-weight: bold;
}

.cfp-form-input,
.cfp-form-textarea {
  border: 2px solid #667eea;
  border-radius:15px
}

/*=====================
  8) PAGE À PROPOS
=====================*/

.about-webfix {
  font-family: var(--wf-text-font);
  line-height: 1.7;
  color: #0B2C57;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.about-webfix h1,
.about-webfix h2,
.about-webfix h3 {
  color: #0B2C57;
  margin-bottom: .6rem;
  font-weight: 700;
}

.about-webfix h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-webfix h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.about-webfix h3 {
  font-size: 1.15rem;
  margin-top: 1.2rem;
}

.about-webfix p {
  margin-bottom: .8rem;
  font-size: 1rem;
}

.about-webfix .accent {
  color: #FF7A00;
  font-weight: 600;
}

.about-webfix .highlight {
  background: rgba(255,122,0,0.06);
  border-left: 3px solid #FF7A00;
  padding: .75rem 1rem;
  border-radius:15px
  margin: 1rem 0;
}

.about-webfix ul {
  padding-left: 1.2rem;
  margin-bottom: .8rem;
}

.about-webfix li {
  margin-bottom: .3rem;
}

.about-webfix .tagline {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.about-webfix .section-intro {
  font-size: 1.02rem;
  opacity: .9;
}

/* Liens d'ancrage */
.anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.2rem 0 1.8rem;
}

.anchor-links a {
  padding: .35rem .8rem;
  border-radius: 999px;
  background: var(--wf-light);
  color: var(--wf-blue);
  font-size: .95rem;
  text-decoration: none;
}

.anchor-links a:hover {
  background: var(--wf-orange);
  color: #fff;
}

.about-webfix .cta-block {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(11,44,87,0.12);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
  text-align: center;
}

.about-webfix .cta-block p {
  margin-bottom: 1rem;
}

.about-webfix .cta-button {
  display: inline-block;
  background: #FF7A00;
  color: #ffffff;
  padding: .7rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .98rem;
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    background .15s ease;
}

.about-webfix .cta-button:hover {
  background: #e26d00;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.about-webfix .meta-keywords {
  font-size: .85rem;
  opacity: .8;
  margin-top: 2rem;
}

/*=====================
  9) FOOTER
=====================*/

.wfx-footer-seo {
  background-color: #0B2C57;
  color: #ffffff;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 50px 20px 50px;
  font-size: 14px;
  border-radius:15px
	  max-width: 1400px;
	margin-inline: auto;
}

.wfx-footer-inner {
  
  margin: 0 auto 25px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
	
	
  
}

.wfx-col h3,
.wfx-col h4 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #ffffff;
}

.wfx-col h3 {
  font-size: 18px;
}

.wfx-col h4 {
  font-size: 15px;
}

.wfx-col p {
  margin: 5px 0;
  line-height: 1.5;
}

/* Liste services */
.wfx-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.wfx-list li {
  margin-bottom: 4px;
}

.wfx-list a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wfx-list a:hover {
  color: #FF7A00;
}

/* Liens légaux */
.wfx-legal-nav {
  font-size: 13px;
  opacity: 0.9;
}

.wfx-legal-nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 4px;
}

.wfx-legal-nav a:hover {
  color: #FF7A00;
}

/* Bouton devis */
.wfx-btn-devis {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 26px;
  border-radius: 999px;
  background-color: #FF7A00;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.wfx-btn-devis:hover {
  background-color: #ff9630;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Séparateur */
.wfx-footer-separator {
  max-width: 1200px;
  margin: 25px auto 15px;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.16);
}

/* Bas du footer */
.wfx-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.wfx-copy {
  font-size: 13px;
  opacity: 0.85;
  margin: 0;
}

/* Responsive footer */
@media (max-width: 900px) {
  .wfx-footer-inner {
    grid-template-columns: 1fr;
  }
}


/*=====================
  10) FORMULAIRES WEB&FIX (contact + devis)
=====================*/

.wf-form-wrapper {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.wf-form {
  display: block;
}

.wf-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

@media (max-width: 640px) {
  .wf-form-grid {
    grid-template-columns: 1fr;
  }
}

.wf-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.wf-form-group label {
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--wf-blue);
}

.wf-form-group input,
.wf-form-group select,
.wf-form-group textarea {
  padding: .6rem .75rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-family: var(--wf-text-font);
  font-size: 15px;
  line-height: 1.4;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.wf-form-group input:focus,
.wf-form-group select:focus,
.wf-form-group textarea:focus {
  outline: none;
  border-color: var(--wf-orange);
  box-shadow: 0 0 0 1px rgba(255,122,0,0.35);
  background-color: #fff;
}

.wf-form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
}

.wf-form-group--checkbox input[type="checkbox"] {
  margin-top: .2rem;
  margin-right: .45rem;
}

.wf-form-group--checkbox a {
  color: var(--wf-orange);
  text-decoration: underline;
}

.wf-form-rgpd-note {
  font-size: 12px;
  opacity: .8;
  margin: .3rem 0 1.1rem;
}

/* Alertes */

.wf-form-alert {
  border-radius: 10px;
  padding: .8rem 1rem;
  margin-bottom: 1.2rem;
  font-size: 14px;
}

.wf-form-alert--error {
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #7F1D1D;
}

.wf-form-alert--success {
  background-color: #ECFDF3;
  border: 1px solid #4ADE80;
  color: #14532D;
}

.wf-form-alert ul {
  margin: .35rem 0 0 1.1rem;
}

/* Honeypot (caché) */
.wf-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
