
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
}

/* Sécurité RevSlider */
.rev_slider_wrapper,
.rev_slider,
.tp-banner-container,
.tp-banner,
.tp-caption {
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* Overlay */
.rev_slider_wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.70)
    );
    z-index: 1;
}

/* Image */
.rev-slidebg {
    filter: brightness(0.9) contrast(1.08);
}

/* ================= HERO BOX ================= */
.hero-content-box {
    max-width: 100%;
    width: min(92vw, 1100px);
    margin: auto;
    padding: 60px;
    background: rgba(0,0,0,0.42);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 35px 90px rgba(0,0,0,0.7);
    box-sizing: border-box;
}

/* ================= TITRE ================= */
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(34px, 4vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 1.2px; /* réduit */
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 12px 35px rgba(0,0,0,0.9);

    /* 🔥 ANTI DÉPASSEMENT */
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

/* ================= TEXTE ================= */
.hero-text {
    font-family: 'Poppins', sans-serif;
    
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    max-width: 900px;
    margin: 0 auto 40px;

    white-space: normal;
    overflow-wrap: break-word;
}

/* ================= ACTIONS ================= */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ================= BOUTONS ================= */
.site-button {
    background: #f37c16;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 42px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 18px 45px rgba(243,124,22,0.55);
    transition: all 0.35s ease;
    max-width: 100%;
    text-align: center;
}

/* Bouton secondaire */
.site-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: none;
}

/* ================= TABLETTE ================= */
@media (max-width: 1024px) {
    .hero-content-box {
        padding: 42px 30px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: 1px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .hero-content-box {
        padding: 28px 18px;
        border-radius: 16px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 15.5px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .site-button {
        width: 100%;
    }
}

/* Supprimer timer */
.tp-bannertimer {
    display: none !important;
}


/* ================= DESKTOP LARGE ================= */
@media (min-width: 1200px) {

    /* BOX un peu plus large */
    .hero-content-box {
        padding: 70px 80px;
        max-width: 1200px;
    }

    /* TITRE plus grand */
    .hero-title {
        font-size: 72px;
        line-height: 1.1;
        letter-spacing: 1.5px;
        margin-bottom: 26px;
    }

    /* TEXTE plus lisible */
    .hero-text {
        font-size: 35px;
        max-width: 980px;
        margin-bottom: 50px;
    }

    /* BOUTONS plus grands */
    .site-button {
        font-size: 23px;
        padding: 20px 54px;
        border-radius: 60px;
    }

    /* Icônes mieux alignées */
    .site-button i {
        font-size: 20px;
    }
}
  /* TOP HEADER */
  .top-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
  }

  .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  /* LOGO */
  .header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-logo img {
    width: 70px;
    height: auto;
  }

  .logo-text strong {
    font-size: 20px;
    color: #1b1b1b;
  }

  .logo-text span {
    font-size: 14px;
    color: #555;
  }

  /* INFOS */
  .header-infos {
    display: flex;
    gap: 35px;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    background: #f37c16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 18px;
  }

  .info-text strong {
    display: block;
    font-size: 15px;
    color: #1b1b1b;
  }

  .info-text span {
    font-size: 13px;
    color: #666;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .header-flex {
      flex-direction: column;
      gap: 20px;
     
    }

    .header-infos {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
  }

  /* MASQUER INFOS SUR MOBILE */
  @media (max-width: 768px) {
    .header-infos {
      display: none;
    }
  }