@charset "utf-8";
/* CSS Document */

body{
margin:0;
background:#03001e;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.lien{
  color:rgba(255,255,255,0.8);
  text-decoration:none;
  transition:color .15s ease;
}
.lien:hover{ color:#ffffff; }


.glossy_progrm{
margin:0; margin-bottom:20px; border-radius:10px; padding:15px; background:rgba(255,255,255,.75); border:1px solid #ffffff;/* Effet glossy (verre + reflet) */
  background:
    linear-gradient(140deg, rgba(255,255,255,.8), rgba(255,255,255,.5)) /* vernis */,
    rgba(255,255,255,0);                                                /* voile clair */
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.20),      /* liseré haut */
    inset 0 -1px 0 rgba(255,255,255,.06),     /* liseré bas  */
    0 10px 30px rgba(0,0,0,.35);              /* ombre douce */
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%); /* Safari */
  overflow: hidden; 
  }
/* Barre globale */
.header{
  position:relative;
  z-index:50;
}
.header:hover{
background: #03001E;
background: linear-gradient(0deg, rgba(3, 0, 30, 0.61) 0%, rgba(3, 0, 30, 0.63) 100%);
}
.header__inner{
  max-width:100%;
  margin:0 auto;
  height:68px;
  padding:0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* Zone gauche (logo + nav) */
.header__left{
  display:flex;
  align-items:center;
  gap:28px;
  min-width:0;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:20px;
  color:#ffffff;
  text-decoration:none;
  white-space:nowrap;
}
.brand img{ height:34px; width:auto; display:block; }

/* Nav horizontale */
.nav{
  display:flex;
  align-items:center;
  gap:22px;
  min-width:0;
}
.nav__link{
  position:relative;
  display:inline-flex;
  align-items:center;
  height:68px;
  color:rgba(255,255,255,0.8);
  font-weight:700;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.1px;
  text-decoration:none;
  padding:0 2px;
  transition:color .15s ease;
}
.nav__link:hover{ color:#ffffff; }
.nav__link::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-1px;
  height:3px; background:transparent; border-radius:3px;
  transition:background .15s ease;
}
.nav__link:hover::after{ background:#ffffff; }
.nav__link.is-active{ color:#ffffff; }
.nav__link.is-active::after{ background:#ffffff; }

/* Zone droite (boutons) */
.header__right{ display:flex; align-items:center; gap:10px; }
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; font-weight:800; font-size:14px;
  line-height:1; border-radius:999px; border:1px solid transparent;
  background:transparent; color:#ffffff; cursor:pointer;
  transition:background .15s ease, color .15s ease, border-color .15s ease, transform .06s ease; text-decoration:none
}
.btn:active{ transform:translateY(0); }

/* Connexion = contour blanc discret */
.btn--outline{ border-color:rgba(255,255,255,.3); background:#FFFFFF; color:#03001e }
.btn--outline:hover{ background:#F3F3F3; }

/* Direct = pastille rouge */
.btn--live{ background:#ff0033; color:#fff; border-color:#ff0033; text-decoration:none }
.btn--live:hover{ background:#e3002d; border-color:#e3002d; }

/* Accessibilité focus */
.nav__link:focus-visible, .btn:focus-visible, .brand:focus-visible{
  outline:3px solid #00e1ff; outline-offset:3px; border-radius:6px;
}

/* Responsive */
@media (max-width: 920px){
  .header__inner{ gap:10px; }
  .header__left{ gap:16px; }
  .nav{ gap:14px; overflow:auto hidden; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
  .nav::-webkit-scrollbar{ display:none; }
  .brand{ font-size:18px; }
}
@media (max-width: 560px){
  .btn{ padding:8px 12px; font-size:13px; }
  .brand img{ height:28px; }
}


/* ================= FOOTER 4 COLONNES ================= */
.footer{
  background:#03001e;
  color:#ffffff;
  padding:40px 20px;
}
.footer__inner{
  max-width:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:30px;
}
.footer__col h4, .footer__bottom h4{
  font-size:14px;
  font-weight:800;
  margin-bottom:16px;
}
.footer__col ul{ list-style:none; margin:0; padding:0; }
.footer__col li{ margin-bottom:8px;font-size:14px; }
.footer__col p{ font-size:14px; }
.footer__col a{
  color:rgba(255,255,255,0.8);
  font-size:12px;
  text-decoration:none;
  transition:color .15s ease;
}
.footer__col a:hover{ color:#ffffff; }
.footer__col { text-align:center }

.footer__bottom{
  max-width:100%;
  margin:30px auto 0;
  padding-top:20px;
  text-align:center;
  font-size:13px;
  color:rgba(255,255,255,1);
}
.footer__bottom a{
  color:rgba(255,255,255,0.8);
  font-size:14px;
  text-decoration:none;
  transition:color .15s ease; margin-right:17px
}
.footer__bottom a:hover{ color:#ffffff; }
.footer__bottom span{
    padding-top: 7px;
    display: block;
	}


/* Responsive footer */
@media (max-width: 800px){
  .footer__inner{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 480px){
  .footer__inner{ grid-template-columns:1fr; }
}


/* ================= VIGNETTES PROGRAMMES ================= */
.programs{
  max-width:100%;
  margin:40px auto;
  padding:0 10px;
}
.programs__title{
  font-size:24px;
  font-weight:800;
  color:#ffffff;
  margin-bottom:24px;
}
.programs__grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:20px;
}
.program-card{
  background:#111827;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  transition:transform .15s ease, box-shadow .15s ease;
  display:flex;
  flex-direction:column;
}
.program-card:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 16px rgba(0,0,0,.4);
}
.program-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
}
.program-card__body{
  padding:14px 16px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.program-card__title{
  font-size:16px;
  font-weight:700;
  color:#ffffff;
  margin:0 0 6px;
}
.program-card__desc{
  font-size:14px;
  color:rgba(255,255,255,.7);
  line-height:1.4;
  flex:1;
}
.program-card__meta{
  margin-top:12px;
  font-size:13px;
  color:rgba(255,255,255,.5);
}

/* Responsive ajustements */
@media (max-width:600px){
  .programs__title{ font-size:20px; }
  .program-card img{ height:140px; }
}



/* ================= VIGNETTES PROGRAMMES ================= */
.programs1{
  max-width:100%;
  margin:40px auto;
  padding:0 10px;
}
.programs__title1{
  font-size:24px;
  font-weight:800;
  color:#ffffff;
  margin-bottom:24px;
}
.programs__grid1{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:20px;
}
.program-card1{
  background:#111827;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  transition:transform .15s ease, box-shadow .15s ease;
  display:flex;
  flex-direction:column;
}

.program-card1 img{
  width:100%;
  height:310px;
  object-fit:cover;
  display:block;
}
.program-card__body1{
  padding:14px 16px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.program-card__title1{
  font-size:16px;
  font-weight:700;
  color:#ffffff;
  margin:0 0 6px;
}
.program-card__desc1{
  font-size:14px;
  color:rgba(255,255,255,.7);
  line-height:1.4;
  flex:1;
}
.program-card__meta1{
  margin-top:12px;
  font-size:13px;
  color:rgba(255,255,255,.5);
}

/* Responsive ajustements */
@media (max-width:600px){
  .programs__title1{ font-size:20px; }
  .program-card1 img{ height:140px; }
}