/* ============================================================
   PAGE TÉLÉTRAVAIL & WORKATION
   ============================================================ */

/* Supprime le style bouton sur les liens du header et footer */
#header a.u-btn,
#footer a.u-btn {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Hero image */
.tele-hero {
  position: relative;
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}

.tele-slogan {
  text-align: center;
  font-size: 1.2rem; /* plus petit */
  font-style: italic; /* italique */
  font-weight: 400;
  line-height: 1.4;
  margin: 20px auto 0px auto;
  max-width: 700px;
  color: #3a3a3a;
}
.tele-hero {
  max-width: 1140px; /* même largeur que .tele-container */
  margin: 0 auto;    /* centre l’image */
}
.tele-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 1140px;
}


.tele-hero-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* Section principale */
.tele-section {
  background: #fff;
  padding: 50px 20px 60px;
}

.tele-container {
  max-width: 1140px;
  margin: 0 auto;
}

.tele-titre {
  font-family: 'Lato', sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #b8962e;
  text-align: center;
  margin: 0 0 10px;
}

.tele-intro {
  margin-bottom: 25px !important; /* réduit l'espace sous le paragraphe */
}

.tele-titre {
  margin-top: 0px !important; /* réduit l'espace au-dessus du titre */
}

.tele-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a5568;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

/* Grille 4 atouts */

.tele-atout-icone img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.tele-atouts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 20px;
  margin-bottom: 50px;
}

.tele-atout {
  flex: 0 0 calc(25% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.tele-atout-icone {
  width: 75px;
  height: 75px;
}

.tele-atout-icone svg {
  width: 75px;
  height: 75px;
}

.tele-atout-titre {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a5568;
  margin: 0;
}

.tele-section .tele-atout-texte {
  font-size: 0.8rem !important;
}
.tele-atout-texte {
  font-size: 0.6rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* Sections texte */
.tele-proposition {
  max-width: 760px;
  margin: 0 auto 36px;
  padding-top: 30px;
  border-top: 1px solid #e8d9b0;
}

.tele-prop-titre {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a5568;
  margin: 0 0 14px;
}

.tele-proposition p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0;
}

.tele-liste {
  padding-left: 20px;
  margin: 0;
}

.tele-liste li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 4px;
}

.tele-lien {
  color: #b8962e;
  text-decoration: none;
}

.tele-lien:hover {
  text-decoration: underline;
}

/* CTA */
.tele-cta {
  text-align: center;
  margin-top: 40px;
}

.tele-btn {
  display: inline-block;
  background-color: #b8962e;
  color: #fff;
  padding: 14px 48px;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s;
}

.tele-btn:hover {
  background-color: #9a7a22;
}

/* Responsive tablette */
@media (max-width: 767px) {
  .tele-hero {
    max-width: 100%;
  }
  .tele-hero-img {
    height: 300px;
    max-width: 100%;
  }
  .tele-hero-caption {
    font-size: 1.5rem;
  }
  .tele-titre {
    font-size: 1.8rem;
  }
  .tele-atout {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Responsive mobile */
@media (max-width: 480px) {
  .tele-hero {
    max-width: 100%;
  }
  .tele-hero-img {
    height: 220px;
    max-width: 100%;
  }
  .tele-hero-caption {
    font-size: 1.2rem;
    bottom: 16px;
  }
  .tele-section {
    padding: 30px 16px 40px;
  }
  .tele-titre {
    font-size: 1.5rem;
  }
  .tele-atout {
    flex: 0 0 100%;
  }
  .tele-btn {
    width: 100%;
    text-align: center;
  }
}
/* Hover bleu clair élégant pour le menu */
#header .u-nav-link {
  transition: color 0.25s ease;
}

#header .u-nav-link:hover {
  color: #6FA8DC !important; /* bleu clair */
}

/* Hover bleu clair dans le menu mobile */
#header .u-popupmenu-items .u-nav-link:hover {
  color: #6FA8DC !important;
}
/* Lien actif = bleu, même si un style global met les liens en gris */
#header .u-nav-link[style*="3A6EA5"] {
  color: #3A6EA5 !important;
}

/* Le lien actif reste bleu même au hover */
#header .u-nav-link[style*="3A6EA5"]:hover {
  color: #3A6EA5 !important;
}

/* Le lien actif = bleu clair, même au hover */
#header .u-nav-link[style*="6FA8DC"],
#header .u-nav-link[style*="6FA8DC"]:hover {
  color: #6FA8DC !important;
}

/* Contraindre l'image hero sur tous les écrans */
.tele-hero {
  max-width: 1140px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: hidden !important;
}

.tele-hero-img {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}