:root{
  --bg:#0b0f14;
  --panel:#0f1621;
  --text:#eaf0ff;
  --muted:#a9b4cf;
  --brand:#7c5cff;
  --brand2:#26d0ce;
  --border:rgba(255,255,255,.08);
  --radius:18px;
}

/* ================= RESET ================= */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background: var(--bg); /* ✅ plus de halo bleu */
  color:var(--text);
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

/* ================= CONTAINER ================= */
.container{
  width:min(1100px,92%);
  margin:auto;
}



/* ================= NAV ================= */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(11,15,20,.85);
  border-bottom:1px solid var(--border);
}
.nav__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
}
.brand__dot{
  width:12px;height:12px;border-radius:50%;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
}
.nav__links{
  display:flex;
  gap:16px;
  align-items:center;
}
.nav__links a{
  color:var(--muted);
  font-weight:700;
  transition:.2s;
}
.nav__links a:hover{color:white}

.nav__burger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
}
.nav__burger span{
  width:22px;height:2px;background:white;
}

/* ================= HERO ================= */
.hero{
  position:relative;
  min-height:85vh;
  display:flex;
  align-items:flex-end;
  padding:120px 0 60px 0;
}
.hero__bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
}
.hero__overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.3),rgba(0,0,0,.9));
}
.hero__content{
  position:relative;
  z-index:2;
}
.badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
  margin-bottom:10px;
}
h1{
  font-size:clamp(38px,6vw,70px);
  margin-bottom:10px;
}
.lead{
  max-width:600px;
  color:rgba(255,255,255,.85);
  margin-bottom:20px;
}

/* ================= BUTTONS ================= */
.btn{
  padding:12px 18px;
  border-radius:14px;
  font-weight:900;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#061018;
  display:inline-block;
  transition:.25s;
}
.btn:hover{
  transform:translateY(-2px);
}
.btn--ghost{
  background:rgba(255,255,255,.08);
  color:white;
  border:1px solid var(--border);
}
.btn--ghost:hover{
  background:rgba(255,255,255,.12);
}

/* ================= STATS ================= */
.hero__stats{
  margin-top:20px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.stat{
  padding:12px 16px;
  border-radius:var(--radius);
  background:rgba(15,22,33,.6);
  border:1px solid var(--border);
}
.stat__num{
  font-weight:900;
  font-size:18px;
}
.stat__label{
  font-size:13px;
  color:var(--muted);
}

/* ================= STATUS DOT ================= */
.statusWrapper{
  display:flex;
  align-items:center;
  gap:8px;
}
.statusDot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:red;
}
.statusDot.online{
  background:#00ff5a;
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(0,255,90,.75);}
  70%{box-shadow:0 0 0 14px rgba(0,255,90,0);}
  100%{box-shadow:0 0 0 0 rgba(0,255,90,0);}
}

/* ================= SECTIONS ================= */
.section{
  padding:70px 0;
}
.section--alt{
  background:rgba(255,255,255,.02);
}
.section h2{
  margin-bottom:14px;
}

/* ================= GALERIE (PREMIUM) ================= */

.masonry{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}

.shot{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(15,22,33,.55);
  cursor:pointer;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  transition: transform .6s ease, filter .6s ease;
  filter:saturate(1.05) contrast(1.03);
}

/* overlay */
.shot::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0) 65%);
  opacity:.85;
  transition:opacity .35s ease;
}

/* shine */
.shot::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:linear-gradient(120deg, transparent 40%, rgba(255,255,255,.14), transparent 60%);
  transform:translateX(-40%) rotate(10deg);
  opacity:0;
  transition:opacity .35s ease, transform .7s ease;
  pointer-events:none;
}

/* caption */
.shotCaption{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:2;
  text-align:left;
}

.shotCaption h3{
  font-size:15px;
  font-weight:950;
  margin:0 0 3px 0;
  color:white;
}

.shotCaption p{
  margin:0;
  font-size:12px;
  color:rgba(255,255,255,.75);
  font-weight:650;
}

/* hover */
.shot:hover{
  transform:translateY(-8px) scale(1.01);
  border-color:rgba(124,92,255,.35);
  box-shadow:0 20px 45px rgba(0,0,0,.55);
}
.shot:hover img{
  transform:scale(1.08);
  filter:brightness(1.08);
}
.shot:hover::after{
  opacity:.95;
}
.shot:hover::before{
  opacity:1;
  transform:translateX(40%) rotate(10deg);
}


/* ================= INFOS CARDS ================= */
.muted{
  color:var(--muted);
  line-height:1.7;
  font-weight:650;
}
.infoGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:16px;
}
.infoCard{
  border:1px solid var(--border);
  background:rgba(15,22,33,.60);
  border-radius:var(--radius);
  padding:14px;
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.infoCard:hover{
  transform:translateY(-4px);
  border-color:rgba(124,92,255,.35);
  background:rgba(15,22,33,.72);
}
.infoCard h3{
  margin-bottom:8px;
  font-size:16px;
  font-weight:950;
}
.infoCard p{
  color:var(--muted);
  line-height:1.6;
  font-weight:650;
}

/* ================= FOOTER ================= */
.footer{
  padding:25px 0;
  text-align:center;
  border-top:1px solid var(--border);
  color:var(--muted);
}

/* ================= MODAL ================= */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:100;
}
.modal[aria-hidden="false"]{display:block}
.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.7);
  border:none;
}
.modal__content{
  position:absolute;
  inset:50px;
  background:rgba(15,22,33,.95);
  border-radius:var(--radius);
  display:flex;
  align-items:center;
  justify-content:center;
}
.modal__close{
  position:absolute;
  top:15px;
  right:15px;
  background:rgba(0,0,0,.6);
  border:none;
  color:white;
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
}


/* ================= VIDEOS (LECTEUR) ================= */
.videoGrid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:18px;
}

.videoCard{
  border:1px solid var(--border);
  background:rgba(15,22,33,.60);
  border-radius:22px;
  padding:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.videoCard:hover{
  transform:translateY(-6px);
  border-color:rgba(124,92,255,.35);
  box-shadow:0 20px 45px rgba(0,0,0,.55);
}

.videoHeader{
  margin-bottom:12px;
}

.videoHeader h3{
  font-size:16px;
  font-weight:950;
  margin:0 0 4px 0;
}

.videoHeader p{
  margin:0;
  font-size:13px;
  color:var(--muted);
  font-weight:650;
}

.videoPlayer{
  width:100%;
  border-radius:16px;
  background:#000;
  outline:none;
}


/* ================= MOBILE ================= */
@media (max-width:900px){

  .nav__links{
    display:none;
    position:absolute;
    right:20px;
    top:70px;
    flex-direction:column;
    background:rgba(11,15,20,.95);
    padding:15px;
    border-radius:16px;
    border:1px solid var(--border);
  }

  .nav__links.is-open{display:flex}
  .nav__burger{display:flex}

  .hero{
    padding-top:110px;
    min-height:80vh;
  }

  .hero__stats{
    flex-direction:column;
  }

  .modal__content{
    inset:20px;
  }

  .infoGrid{
    grid-template-columns:1fr;
  }
}
