:root{
  --bg:#0b0b0d;
  --muted:#9aa0a6;
  --accent:#ff3b30;
  --card:#0f1113;
  --glass: rgba(255,255,255,0.03);
  color-scheme: dark;
}

*{box-sizing:border-box}
html,body{
  height:100%;margin:0;font-family:Inter,system-ui,Arial,sans-serif;
  background:linear-gradient(180deg,#050506 0%, #0b0b0d 100%);
  color:#e9eef2;
}

/* Header */
header{
  position:fixed;left:0;right:0;top:0;z-index:60;
  backdrop-filter: blur(6px);
  background:linear-gradient(180deg, rgba(11,11,13,0.6), rgba(11,11,13,0.15));
  padding:12px 24px;
  display:flex;align-items:center;justify-content:space-between;
}
.logo{font-weight:800;letter-spacing:1px}
nav a{color:var(--muted);text-decoration:none;margin-left:18px;font-weight:600;font-size:14px}
nav a:hover{color:#fff}

/* Sections */
section{min-height:100vh;display:grid;align-items:center;padding:120px 8vw 80px}

/* HERO */
.hero{display:grid;grid-template-columns:1fr 420px;gap:40px;align-items:center}
.hero .left p{color:var(--muted)}
.cta{display:inline-flex;gap:10px;align-items:center;margin:20px 0}
.btn{background:var(--accent);color:#111;padding:12px 18px;border-radius:10px;text-decoration:none;font-weight:700}
.btn.ghost{background:transparent;border:1px solid rgba(255,255,255,0.06);color:var(--muted)}

.card{background:var(--glass);padding:22px;border-radius:14px;box-shadow:0 6px 30px rgba(0,0,0,0.6)}
.player-cover{width:100%;height:60px;background:#111;border-radius:10px;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:24px}
.meta{display:flex;justify-content:space-between;align-items:center;margin-top:12px}
.sub{color:var(--muted);font-size:13px}

/* ABOUT background */
#about{
  position:relative;
  background:url("image/about-bg.jpg") center/cover no-repeat;
}
#about::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:0;
}
#about > *{position:relative;z-index:1}

/* Video background image */
#video {
  position: relative;
  background: url("image/video-bg.jpg") center/cover no-repeat;
}

#video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* overlay sombre pour la lisibilité */
  z-index: 0;
}

#video > * {
  position: relative;
  z-index: 1;
}

.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: stretch; /* important: make right column match left height */
}

/* ensure .card inside video grid has no padding */
.video-grid .card {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* LEFT: use aspect-ratio so the left column defines the row height */
.video-left {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

/* the embed on the left uses aspect-ratio so it sets the whole row height */
.video-left .embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto; /* height will be derived from aspect-ratio */
  position: relative;
}

/* RIGHT: stack two cards and force them to split the full available height */
.video-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

/* each small card must stretch and share the column height equally */
.video-side .card {
  flex: 1 1 0;
  display: flex;
}

/* for small cards, the embed should fill the card entirely */
.video-side .embed {
  width: 100%;
  height: 100%;
  position: relative;
}

/* iframe styles to fill their wrapper */
.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* make sure no extra margins break layout */
.video-grid .card * { margin: 0; }

/* === RESPONSIVE MOBILE === */
@media (max-width: 920px) {

  /* Une seule colonne */
  .video-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* Le stack de vidéos à droite devient un stack vertical normal */
  .video-side {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    height: auto !important;
  }

  /* Toutes les vidéos en 16:9 sur mobile */
  .video-left .embed,
  .video-side .embed {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
  }

  /* Les cards reprennent une mise en page simple sans forçage de hauteur */
  .video-side .card,
  .video-left .card {
    flex: unset !important;
    height: auto !important;
  }
    /* Ordre mobile : la grande vidéo en 1er */
  .video-left {
    order: 1;
  }

  /* Les petites vidéos après */
  .video-side {
    order: 2;
  }
  nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  }

  nav a {
  margin: 0;
  padding: 8px 0;
  width: 100%;
  }
  
  .burger {
    display: block;
  }

  #mobileMenu {
    display: none; /* hidden by default */
    flex-direction: column;
    gap: 12px;
    background: rgba(0,0,0,0.8);
    padding: 16px;
    border-radius: 12px;
    margin-top: 10px;
  }

  #mobileMenu.open {
    display: flex; /* shown when burger is clicked */
  }

  
  
}

.lang-flag img {
  width: 28px;
  height: auto;
}

/* Burger icon hidden on desktop */
.burger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Mobile navigation hidden by default */
#mobileMenu {
  display: flex;
  gap: 18px;
}

.lang-switch a {
  font-size: 20px; /* taille des emojis */
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.lang-switch a:hover {
  opacity: 1;
}

.lang-switch a.active {
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.45));
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.lang-switch img {
  width: 22px;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lang-switch img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* langue active (optionnel) */
.lang-switch .active img {
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.35));
}

.two-col{display:grid;grid-template-columns:1fr 1fr;gap:28px}

.underline{height:4px;width:64px;background:linear-gradient(90deg,var(--accent),#ff6b5c);border-radius:4px;margin-bottom:18px}

/* MUSIC */
.links{display:flex;gap:14px;margin-top:18px;flex-wrap:wrap}

/* TOUR */
.dates{display:flex;flex-direction:column;gap:12px}
.date{background:var(--glass);padding:14px;border-radius:10px;display:flex;justify-content:space-between;align-items:center}

/* CONTACT */
.contact .sub{margin-bottom:10px}

/* FOOTER */
footer{text-align:center;padding:40px 20px;color:var(--muted)}

/* Fade reveal */
.fade{opacity:0;transform:translateY(18px);transition:all .8s cubic-bezier(.2,.9,.3,1)}
.inview{opacity:1;transform:none}

/* Responsive */
@media(max-width:920px){
  .hero{grid-template-columns:1fr}
  .hero .left{order:2}
  .card{order:1}
  .two-col{grid-template-columns:1fr}
  header{padding:10px 16px}
  section{padding:100px 5vw}
}

/* small icons */
.social{display:flex;gap:12px}
.social a{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:8px;background:transparent;border:1px solid rgba(255,255,255,0.04);text-decoration:none;color:var(--muted)}