/* Home page CSS */

@import url(./homepage/header.css);
@import url(./homepage/hero.css);
@import url(./homepage/about.css);
@import url(./homepage/services.css);
@import url(./homepage/reviews.css);
@import url(./homepage/last-articles.css);
@import url(./homepage/footer.css);
@import url(./homepage/blog.css);

/* pages CSS */
@import url(./pages/about.css);
@import url(./pages/mentions.css);
@import url(./pages/cgps.css);
@import url(./pages/plansite.css);
@import url(./pages/curage.css);
@import url(./pages/pompage.css);
@import url(./pages/inspection.css);
@import url(./pages/debouchage.css);
@import url(./pages/maintenance-pro.css);
@import url(./pages/urgence.css);
@import url(./pages/404.css);
@import url(./pages/paroles-de-pro.css);
@import url(./pages/contact.css);
@import url(./pages/devis.css);
@import url(./pages/blog-articles.css);

/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

option {
  color: #000;
}

/* ✅ IMPORTANT : stop overscroll global */
html,
body {
  overflow-x: hidden;
}

/* =========================
   FOND GÉNÉRAL
========================= */

body {
  background: linear-gradient(90deg, #0f4c81 0%, #00b09b 100%);
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================
   TITRES
========================= */

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* =========================
   GLASSMORPHISM
========================= */

.card-glass-reviews {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.card-glass {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* =========================
   SEPARATOR FIN REVIEWS
========================= */

.reviews-separator {
  height: 150px;
  width: 100%;
  background: #fff;
  clip-path: polygon(0 0, 100% 18%, 100% 100%, 0 100%);
  position: relative;
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO CENTRÉ */
.reviews-separator .separator-logo {
  width: 250px;
  height: auto;
  z-index: 10;
  filter: none;
}

/* =====================================================
   CONTAINER GLOBAL (si utilisé)
===================================================== */

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

/* =====================================================
   ✅ MODE GRAND ÉCRAN (contrôlé par JS)
   -> class ajoutée : html.large-screen
===================================================== */

html.large-screen body {
  font-size: 19px;
}

html.large-screen h1 {
  font-size: 3.3rem;
  line-height: 1.15;
}

html.large-screen h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

html.large-screen h3 {
  font-size: 1.8rem;
  line-height: 1.25;
}

html.large-screen p,
html.large-screen li,
html.large-screen a {
  font-size: 1.12rem;
}

html.large-screen .container,
html.large-screen .reviews-container,
html.large-screen .services-container,
html.large-screen .about-container {
  max-width: 1650px !important;
}

html.large-screen .hero-visual img,
html.large-screen .about-image-wrapper img {
  transform: scale(1.06);
  transform-origin: center;
}

html.large-screen .hero,
html.large-screen .about,
html.large-screen .services,
html.large-screen .reviews,
html.large-screen .last-articles-section {
  padding-top: 140px;
  padding-bottom: 140px;
}

html.large-screen .btn-rounded,
html.large-screen .btn-primary {
  font-size: 1.1rem;
  padding: 16px 30px;
}
