/* ============================================================
   Et si… — CSS
   ============================================================ */

/* Typographie */

@font-face {
  font-family: 'BirchStd';
  src: url('fonts/BirchStd.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'euphorigenic';
  src: url('fonts/euphorigenic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MISTRESS';
  src: url('fonts/MISTRESS.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Variables ------------------------------------------- */
:root {
  /* Couleurs principales */
  --blue-main    : #40536f;
  --blue-dark    : #2B374A;
  --beige        : #EBE3CE;

  /* Couleurs des univers musicaux */
  --gold         : #F5C842;
  --coral        : #E86040;
  --teal         : #3DBFA0;
  --rose         : #D8609A;
  --indigo       : #7B72D8;
  --blue         : #1e4260;
  --green        : #007d3d;
  --red          : #db2230;

  /* Texte */
  --text         : #F0F4FF;
  --muted        : rgba(220, 230, 255, 0.65);

  /* Utilitaires beige avec opacité */
  --beige-rgb    : 235, 227, 206;

  /* Typographies */
  --font-title   : 'BirchStd', Georgia, serif;
  --font-subtitle   : 'euphorigenic', Georgia, serif;
  --font-second   : 'MISTRESA', Georgia, serif;
  --font-body    : 'Source Sans 3', 'Helvetica Neue', sans-serif;
}

/* ---- Reset & base ---------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 50px; /* ajuste selon la hauteur réelle de ta nav */ }
body {
  font-family : var(--font-body);
  background  : var(--blue-main);
  color       : var(--text);
  overflow-x  : hidden;
  line-height : 1.7;
  font-size   : 16px;
}
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: #f8d76a; }

/* ---- Navigation ------------------------------------------ */
nav {
  position        : fixed;
  top: 0; left: 0; right: 0;
  z-index         : 100;
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  padding         : 0.9rem 2.5rem;
  /*background      : rgba(43, 55, 74, 0.96);
  backdrop-filter : blur(10px);
  border-bottom   : 1px solid rgba(var(--beige-rgb), 0.15);*/
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
nav.scrolled {
  background: rgba(43, 55, 74, 0.96);
  backdrop-filter : blur(10px);
  border-bottom: 1px solid rgba(var(--beige-rgb), 0.15);
}
.nav-logo {
  font-family    : var(--font-title);
  font-size      : 1.5rem;
  color          : var(--beige);
  letter-spacing : 0.02em;
}
.nav-links { display: flex; gap: 1.75rem; }
.nav-links a {
  color          : rgba(var(--beige-rgb), 0.75);
  font-size      : 0.82rem;
  font-weight    : 600;
  letter-spacing : 0.07em;
  text-transform : uppercase;
  transition     : color 0.2s;
}
.nav-links a:hover { color: var(--beige); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 2px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ---- Hero ------------------------------------------------ */
.hero {
  min-height      : 100vh;
  min-height      : 100dvh; 
  display         : flex;
  flex-direction  : column;
  align-items     : center;
  justify-content : center;
  text-align      : center;
  padding         : 4rem 2rem;
  
  /*background      : linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-main) 100%);*/
 background: url('assets/banner.jpg') center center / cover no-repeat;
  position: relative;
}
.hero-banner {
  width: 100%;
  padding: 4rem 2rem;
  height: 700px;
  background: url('assets/banner.jpg') center center / cover no-repeat;
  position: relative;
}

/* overlay pour lisibilité */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19, 43, 63, var(--overlay-opacity, 0.50));
  transition: background 0.6s ease;
}

/* contenu au-dessus de l'overlay */
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-video-section {
  display: flex;
  flex-direction  : column;
  align-items     : center;
  justify-content : center;
  width: 100%;
  justify-content: center;
  padding: 3rem 2rem;
}
.eyebrow {
  display        : inline-block;
  font-size      : clamp(0.72rem, 3vw, 0.85rem);
  font-weight    : 600;
  letter-spacing : 0.18em;
  text-transform : uppercase;
  color          : var(--beige);
  background     : rgba(var(--beige-rgb), 0.1);
  padding        : 0.35rem 1rem;
  border-radius  : 2rem;
  margin-bottom  : 1.5rem;
  border         : 1px solid rgba(var(--beige-rgb), 0.25);
}
.hero h1 {
  font-family    : var(--font-title);
  font-size      : clamp(3rem, 15vw, 15rem);
  line-height    : 0.9;
  margin-bottom  : 0.2em;
  color          : var(--beige);
  letter-spacing : 0.03em;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-family   : var(--font-subtitle);
  font-size     : clamp(1.25rem, 2.5vw, 2.5rem);
  line-height    : 1.2;
  letter-spacing: 0.03em;
  color         : rgba(var(--beige-rgb), 0.8);
  margin-bottom : 0.5rem;
  /*max-width     : 640px;*/
}
.hero-sub { font-size: clamp(1rem, 2vw, 1.5rem); color: var(--muted); margin-bottom: 2.5rem; }
.hero-video {
  width         : 100%;
  max-width     : 820px;
  aspect-ratio  : 16 / 9;
  border-radius : 12px;
  overflow      : hidden;
  border        : 1px solid rgba(var(--beige-rgb), 0.2);
}
.hero-video iframe { width: 100%; height: 100%; display: block; }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---- Boutons --------------------------------------------- */
.btn {
  padding        : 0.7rem 1.6rem;
  border-radius  : 2rem;
  font-size      : 0.88rem;
  font-weight    : 600;
  text-decoration: none;
  transition     : all 0.2s;
  cursor         : pointer;
  border         : none;
  letter-spacing : 0.03em;
  font-family    : var(--font-body);
}
.btn-beige { background: var(--beige); color: var(--blue-dark); }
.btn-beige:hover { background: #f2ecdf; transform: translateY(-2px); color: var(--blue-dark); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid rgba(var(--beige-rgb), 0.3); }
.btn-ghost:hover { border-color: var(--beige); color: var(--beige); }

/* ---- Séparateur ------------------------------------------ */
.divider {
  height     : 1px;
  background : linear-gradient(to right, transparent, rgba(var(--beige-rgb), 0.15), transparent);
  max-width  : 1080px;
  margin     : 0 auto;
}

/* ---- Sections communes ----------------------------------- */
.wrap { max-width: 1080px; margin: 0 auto; padding: 3rem 2rem; }
.text-center { text-align: center;}
.section-label {
  font-size      : 0.9rem;
  font-weight    : 600;
  letter-spacing : 0.18em;
  text-transform : uppercase;
  color          : var(--beige);
  margin-bottom  : 0.6rem;
  opacity        : 0.7;
}
.section-title {
  font-family    : var(--font-title);
  font-size      : clamp(1.9rem, 4vw, 2.9rem);
  line-height    : 1.1;
  margin-bottom  : 1.75rem;
  color          : var(--beige);
  letter-spacing : 0.02em;
}
.section-title em { font-style: italic; color: var(--gold); }

.body-text { font-size: 1rem; line-height: 1.8; color: rgba(var(--beige-rgb), 0.85); text-align: justify; }
.body-text p { margin-bottom: 1.1rem; }
.body-text p:last-child { margin-bottom: 0; }
.body-text strong { color: var(--gold); font-weight: 600; }

/* ---- Histoire -------------------------------------------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 0.5rem; }

.pullquote {
  background    : rgba(var(--beige-rgb), 0.03);
  border-radius : 12px;
  padding       : 1.75rem 2rem;
  border-left   : 3px solid var(--beige);
  margin-bottom : 1.5rem;
}
.pullquote p { /*font-family: var(--font-subtitle); */font-size: 1.05rem; line-height: 1.7; color: var(--beige); text-align: justify;}

.stats-row { display: flex; background: rgba(var(--beige-rgb), 0.03); border-radius: 12px; overflow: hidden; border: 1px solid rgba(var(--beige-rgb), 0.15); }
.stat { flex: 1; text-align: center; padding: 1.25rem 0.5rem; border-right: 1px solid rgba(var(--beige-rgb), 0.1); }
.stat:last-child { border-right: none; }
.stat-num{font-family: var(--font-title);font-size:2rem;letter-spacing : 0.03em;font-weight:700;color:var(--gold);display:block}
    .stat-time {color:var(--gold)}
    .stat-nb {color:var(--teal)}
    .stat-style {color:var(--rose)}
.stat-label{font-size:0.72rem;text-transform:uppercase;letter-spacing:0.08em;color:var(--muted);display:block;margin-top:0.1rem}



/* ---- Univers --------------------------------------------- */
.worlds { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-top: 2rem; }
.world {
  background    : rgba(var(--beige-rgb), 0.06);
  border-radius : 12px;
  padding       : 1.4rem 1rem;
  text-align    : center;
  border        : 1px solid rgba(var(--beige-rgb), 0.1);
  transition    : transform 0.2s, background 0.2s;
}
.world:hover { transform: translateY(-4px); background: rgba(var(--beige-rgb), 0.12); }
.world-icon { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
.world-name { font-weight: 600; font-size: 0.92rem; color: var(--beige); margin-bottom: 0.3rem; }
.world-sub { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }
.world.jazz    { border-top: 5px solid var(--blue); }
.world.cuba    { border-top: 5px solid var(--gold); }
.world.ireland { border-top: 5px solid var(--green); }
.world.india   { border-top: 5px solid var(--teal); }
.world.gypsy   { border-top: 5px solid var(--red); }

/* ---- Artistes -------------------------------------------- */
.artists { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.artist { background: rgba(255, 255, 255, 0.02); border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.12); padding: 2rem; }
.avatar { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-title);letter-spacing : 0.03em; font-size: 1.3rem; margin-bottom: 1.1rem; }
.artist img {
  width: 100%;
  /*height: 300px;        /* hauteur fixe identique des deux côtés */
  aspect-ratio: 3/2;
  object-fit: cover;    /* recadre sans déformer */
  border-radius: 8px;
  margin-bottom: 1.1rem;
}
.avatar-sf { background: linear-gradient(135deg, var(--indigo), var(--rose)); color: #fff; }
.avatar-ga { background: linear-gradient(135deg, var(--teal), var(--gold)); color: var(--blue-dark); }
.artist-role { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; font-weight: 600; }
.artist-name { font-family: var(--font-title); letter-spacing : 0.05em;font-size: 2rem; color: var(--beige); margin-bottom: 0.5rem;  }
.artist-bio { font-size: 0.87rem; line-height: 1.75; color: rgba(var(--beige-rgb), 0.8); }
.artist-bio + .artist-bio { margin-top: 0.75rem; }
.artist-link { display: inline-block; margin-top: 0.9rem; font-size: 0.8rem; color: var(--gold); border-bottom: 1px solid rgba(var(--beige-rgb), 0.35); padding-bottom: 1px; transition: border-color 0.2s; }
.artist-link + .artist-link { margin-left: 1rem; }
.artist-link:hover { border-color: var(--gold); color: var(--gold); }

.crew { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.crew-chip { background: rgba(var(--beige-rgb), 0.03); border-radius: 8px; padding: 0.65rem 1rem; font-size: 0.82rem; border: 1px solid rgba(var(--beige-rgb), 0.12); }
.crew-chip strong { color: var(--beige); font-weight: 600; }
.crew-chip span { color: var(--muted); font-size: 0.76rem; display: block; margin-top: 0.1rem; }

/* ---- Infos pratiques ------------------------------------- */
.practical { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.info-card { background: rgba(255, 255, 255, 0.03); border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.12); padding: 2rem; }
.info-card h3 {/*font-family: var(--font-second); letter-spacing : 0.03em;*/font-size: 1.2rem; color: var(--beige); margin-bottom: 1.25rem; }
.info-row { display: flex; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(var(--beige-rgb), 0.03); font-size: 0.87rem; }
.info-row:last-of-type { border-bottom: none; }
.info-key { color: rgba(var(--beige-rgb), 0.55); min-width: 100px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; padding-top: 0.1rem; flex-shrink: 0; }
.info-val { color: var(--beige); line-height: 1.5; }
.info-val a { color: var(--gold); }
.info-val a:hover { text-decoration: underline; }
.dl-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.dl-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1.1rem; border-radius: 2rem; background: rgba(var(--beige-rgb), 0.1); color: var(--beige); font-size: 0.82rem; border: 1px solid rgba(var(--beige-rgb), 0.25); transition: all 0.2s; font-weight: 600; }
.dl-btn:hover { background: rgba(var(--beige-rgb), 0.2); color: var(--beige); }

/* ---- Footer ---------------------------------------------- */
footer { background: var(--blue-dark); text-align: center; padding: 3rem 2rem; border-top: 1px solid rgba(var(--beige-rgb), 0.1); color: rgba(var(--beige-rgb), 0.6); font-size: 0.82rem; line-height: 1.8; }
footer strong { color: var(--beige); }
footer a { color: rgba(var(--beige-rgb), 0.6); }
footer a:hover { color: var(--beige); }

/* ---- Responsive ------------------------------------------ */
@media (max-width: 768px) {
  nav { padding: 0.8rem 1.25rem; }
  .nav-links { display: none; position: fixed; top: 56px; left: 0; right: 0; background: var(--blue-dark); padding: 1.5rem; flex-direction: column; gap: 1.25rem; border-bottom: 1px solid rgba(var(--beige-rgb), 0.12); }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .wrap { padding: 1.5rem 1.25rem; }
  .story-grid, .artists, .practical { grid-template-columns: 1fr; }
  .worlds { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 4rem 1.25rem; }
 
  .btn { text-align: center; }
}
@media (max-width: 600px) {
   .cta-row { flex-direction: column; align-items: stretch; }
}
@media (max-width: 420px) {
  .worlds { grid-template-columns: 1fr; }
}
