
/* =========================
   VARIABLES
   ========================= */
:root{
  --bg-dark: #182542;
  --overlay: rgba(10,15,25,0.65);
  --text-light: #ffffff;

  /* espace stable ~1cm visuel */
  --gap-1cm-px: 38px;

  /* rotateur: hauteur stable */
  --rotator-h: 420px;
  --rotator-h-mobile: 260px;
}

/* =========================
   RESET / BASE
   ========================= */
*{ box-sizing:border-box; margin:0; padding:0; }

html, body{ height:100%; }

body{
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  display:flex;
  flex-direction:column;
}

/* =========================
   BACKGROUND
   ========================= */
.bg-video{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -3;
  pointer-events:none;
}

.page-overlay{
  position: fixed;
  inset: 0;
  background: rgba(187, 194, 207, 0.3); /* translucide */
  z-index: -2;
}



.bg-logo{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;

  object-fit: cover;        /* remplit l’écran sans déformer */
  object-position: center;  /* centré */

  opacity: 0.3;            /* ajuste selon ton goût */
  z-index: -1;
  pointer-events: none;
}




/* Home: pas de video */
.page-home .bg-video{ display:none; }

/* =========================
   IMAGE FIXE FULLSCREEN
   ========================= */
.imagexxx{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;

  object-fit: cover;
  object-position: center;

  z-index: -0;
  pointer-events: none;
}

/* =========================
   CONTENT WRAPPER
   ========================= */
.page-content{
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 6% 60px;
  flex: 1 0 auto;
}

/* =========================
   I18N VISIBILITY
   ========================= */
[data-lang]{ display:inline; }
/* défaut FR */
[data-lang]:not([data-lang="fr"]){ display:none; }


