﻿/* =====================================================
   QUETZAL — style2.css
   Home page definitive stylesheet
   Compatible XHTML 1.0 Transitional
   Optimized for Expression Web
===================================================== */

:root {
  --bg: #061612;
  --bg-alt: #071814;
  --panel: #0a231d;
  --panel-2: #0d2b24;
  --panel-3: #11352e;
  --text: #ffffff;
  --text-soft: #e5f0eb;
  --text-muted: #bfd0c8;
  --accent: #f1d17a;
  --accent-2: #d9a441;
  --border: rgba(241, 209, 122, 0.15);
  --border-soft: rgba(241, 209, 122, 0.08);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.22);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.18);
  --radius-lg: 22px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container-pad: clamp(14px, 5vw, 72px);
  --section-pad-y: clamp(34px, 6vw, 84px);
  --transition: 0.3s ease;
}

/* =====================================================
   RESET GLOBAL
===================================================== */

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1em;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote {
  margin-top: 0;
}

#container,
.home-wide,
.wide-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* =====================================================
   HERO PREMIUM
===================================================== */

.hero-wide {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bg);
}

.hero-wide__banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1.03) contrast(1.05);
}

.hero-wide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 22, 18, 0.04) 0%,
    rgba(6, 22, 18, 0.20) 42%,
    rgba(6, 22, 18, 0.82) 100%
  );
}

.hero-wide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}

.hero-wide__inner {
  width: 100%;
  padding: 12vh var(--container-pad) 7vh;
}

.hero-wide__logo {
  width: clamp(66px, 8vw, 110px);
  margin-bottom: 15px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.hero-wide__kicker,
.wide-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-wide h1 {
  margin: 0;
  max-width: 11ch;
  font-family: Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.7);
}

.hero-wide__lead {
  max-width: 800px;
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.hero-wide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
  width: 100%;
}

.hero-wide__actions a,
.wide-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 25px;
  border-radius: 999px;
  border: 1px solid rgba(241, 209, 122, 0.4);
  background: rgba(0, 0, 0, 0.25);
  font-weight: 700;
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.hero-wide__actions a:hover,
.wide-section a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* =====================================================
   SECTIONS GLOBALES
===================================================== */

.wide-section {
  width: 100%;
  padding: var(--section-pad-y) var(--container-pad);
  margin: 0;
}

.wide-feature {
  padding: 0;
}

.wide-feature__copy {
  padding: clamp(22px, 4vw, 40px) var(--container-pad);
  background: linear-gradient(180deg, var(--panel), var(--panel-3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  margin: 0 0 20px;
  color: var(--accent-2);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.section-header-center {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto clamp(22px, 4vw, 45px);
}

/* =====================================================
   UNIVERSE CARDS
===================================================== */

#univers .univers-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#univers .univers-card {
  position: relative;
  display: block;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #000;
}

#univers .univers-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.35s ease;
}

#univers .univers-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  padding: 22px 18px 26px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.82) 42%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

#univers .univers-card strong {
  display: block;
  margin: 0 0 6px;
  font-size: 1.18rem;
  line-height: 1.1;
}

#univers .univers-card em {
  display: block;
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

#univers .univers-card:hover img {
  transform: scale(1.06);
}

/* =====================================================
   BLOCS IMAGE / TEXTE
===================================================== */

.quote-split,
.about-split,
.booking-split {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.quote-split__image img,
.about-split__image img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
}

.quote-split__text,
.about-split__text,
.booking-box {
  padding: 50px;
  background: linear-gradient(180deg, var(--panel), var(--panel-3));
}

blockquote {
  margin: 0;
  font-size: clamp(1.08rem, 3vw, 2rem);
  line-height: 1.5;
  font-style: italic;
}

/* =====================================================
   MUSICIENS
===================================================== */

#musiciens {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#musiciens .section-header-center {
  margin: 0;
  padding: 0 var(--container-pad) 18px;
  max-width: none;
  overflow: hidden;
}

#musiciens .musicians-grid {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: block;
}

#musiciens .musician-card {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

#musiciens .musician-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* =====================================================
   SEO BOX
===================================================== */

.seo-box {
  width: 100%;
  padding: clamp(30px, 6vw, 80px) var(--container-pad);
  display: flex;
  justify-content: center;
}

.seo-box__inner {
  width: min(1280px, 100%);
  padding: clamp(18px, 4vw, 56px) clamp(16px, 4vw, 60px);
  background: linear-gradient(180deg, #08231d 0%, #0d2b24 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* =====================================================
   FOOTER
===================================================== */

footer,
.site-footer,
#footer {
  width: 100%;
  background: #04110e;
  color: var(--text-muted);
}

footer a,
.site-footer a,
#footer a {
  color: var(--text);
}

/* =====================================================
   TABLETTE
===================================================== */

@media (max-width: 1200px) {
  #univers .univers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-wide__inner {
    padding-top: 9vh;
    padding-bottom: 6vh;
  }

  .quote-split,
  .about-split,
  .booking-split {
    grid-template-columns: 1fr;
  }

  .quote-split__image img,
  .about-split__image img {
    min-height: 300px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 640px) {
  .hero-wide__inner {
    padding: 22px 16px 26px;
  }

  .hero-wide__logo {
    width: 66px;
    margin-bottom: 8px;
  }

  .hero-wide__kicker,
  .wide-kicker {
    margin-bottom: 8px;
    font-size: 9px;
    letter-spacing: 2px;
  }

  .hero-wide h1 {
    font-size: clamp(2.8rem, 18vw, 4.1rem);
    line-height: 0.84;
    max-width: 6.6ch;
  }

  .hero-wide__lead {
    max-width: 18ch;
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .hero-wide__actions {
    margin-top: 16px;
    gap: 10px;
    flex-direction: column;
  }

  .hero-wide__actions a {
    width: 100%;
  }

  .wide-feature__copy {
    padding: 22px 14px;
    background: linear-gradient(180deg, #071814 0%, #0b241f 100%);
    border-top-color: rgba(241, 209, 122, 0.06);
    border-bottom-color: rgba(241, 209, 122, 0.06);
  }

  .section-header-center {
    margin-bottom: 22px;
  }

  .quote-split,
  .about-split,
  .booking-split {
    gap: 14px;
  }

  .quote-split__text,
  .about-split__text,
  .booking-box {
    padding: 18px;
    background: linear-gradient(180deg, #071814 0%, #0b241f 100%);
  }

  blockquote {
    font-size: 1.08rem;
    line-height: 1.45;
  }

  #univers .univers-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #univers .univers-card {
    min-height: 240px;
    border-radius: 18px;
  }

  #univers .univers-card img {
    height: 240px;
  }

  #univers .univers-card span {
    padding: 14px 14px 20px;
  }

  #univers .univers-card strong {
    font-size: 1.02rem;
  }

  #univers .univers-card em {
    font-size: 0.82rem;
  }

  #musiciens .section-header-center {
    padding: 0 14px 14px;
  }

  .seo-box {
    padding: 30px 14px;
  }

  .seo-box__inner {
    padding: 18px 16px;
    border-radius: 14px;
  }
}

/* =====================================================
   DESKTOP HARMONY
===================================================== */

@media (min-width: 901px) {
  .hero-wide__overlay {
    background: linear-gradient(
      180deg,
      rgba(6, 22, 18, 0.00) 0%,
      rgba(6, 22, 18, 0.18) 40%,
      rgba(6, 22, 18, 0.72) 100%
    );
  }

  .wide-feature__copy {
    background: linear-gradient(180deg, #081c17 0%, #09211b 52%, #0c2b24 100%);
    border-top: 1px solid rgba(241, 209, 122, 0.06);
    border-bottom: 1px solid rgba(241, 209, 122, 0.06);
  }

  .quote-split__text,
  .about-split__text,
  .booking-box {
    background: linear-gradient(180deg, #081c17 0%, #0b241f 100%);
  }

  .seo-box__inner {
    background: linear-gradient(180deg, #08231d 0%, #0d2b24 100%);
  }
}
/*==================================================
MENU MOBILE PREMIUM
==================================================*/

/* Bouton hamburger */
#mobile-toggle{
    display:none;
    position:fixed;
    top:22px;
    right:22px;
    width:56px;
    height:56px;
    padding:0;
    border:none;
    border-radius:50%;
    background:rgba(6,22,18,.88);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 10px 35px rgba(0,0,0,.45);
    cursor:pointer;
    z-index:10001;
    transition:.35s ease;
}

#mobile-toggle:hover{
    background:rgba(10,35,29,.95);
}

#mobile-toggle span{
    display:block;
    width:24px;
    height:2px;
    margin:6px auto;
    background:#fff;
    transition:all .35s ease;
}


/* Menu caché par défaut */
#mobile-menu{
    display:none;
    position:fixed;
    top:0;
    right:-100%;
    width:85%;
    max-width:360px;
    height:100vh;
    padding:110px 40px 50px;
    background:linear-gradient(180deg,#08211c 0%,#061612 100%);
    box-shadow:-15px 0 45px rgba(0,0,0,.45);
    transition:right .40s ease;
    z-index:10000;
    overflow-y:auto;
}

#mobile-menu ul{
    margin:0;
    padding:0;
    list-style:none;
}

#mobile-menu li{
    margin:13px 0;
}

#mobile-menu a{
    display:block;
    color:#fff;
    text-decoration:none;
    font-family:"Cinzel",serif;
    font-size:18px;
    letter-spacing:1px;
    transition:all .25s ease;
}

#mobile-menu a:hover,
#mobile-menu a:focus{
    color:#d4af37;
    padding-left:8px;
}


/* Ouverture */
body.mobile-open{
    overflow:hidden;
}

body.mobile-open #mobile-menu{
    right:0;
}


/* Animation du hamburger */
body.mobile-open #mobile-toggle span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

body.mobile-open #mobile-toggle span:nth-child(2){
    opacity:0;
}

body.mobile-open #mobile-toggle span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}


/* MOBILE UNIQUEMENT */
@media screen and (max-width:900px){

    #mobile-toggle{
        display:block;
    }

    #mobile-menu{
        display:block;
    }

}
/*==================================================
LOGO MENU MOBILE
==================================================*/

.mobile-logo{

    text-align:center;

    margin:0 auto 42px auto;

}


.mobile-logo a{

    display:inline-block;

}


.mobile-logo img{

    display:block;

    width:150px;

    height:auto;

    margin:0 auto;

    filter:
        drop-shadow(0 0 10px rgba(212,175,55,0.35));

    opacity:0;

    transform:scale(.92);

    animation:mobileLogoAppear .6s ease forwards;

}


/* Apparition du logo à l'ouverture */

body.mobile-open .mobile-logo img{

    animation-delay:.15s;

}


@keyframes mobileLogoAppear{

    from{

        opacity:0;

        transform:scale(.92);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}


/* Ajustement petits écrans */

@media screen and (max-width:480px){

    .mobile-logo{

        margin-bottom:32px;

    }


    .mobile-logo img{

        width:125px;

    }

}
/* ========================= */
/* FIL D'ARIANE */
/* ========================= */

/*
Fil d'Ariane Quetzal
- Style sobre et cohérent avec le template vert / or.
- Contraste renforcé pour rester lisible sur fond sombre.
- Mise en page simple pour ne pas perturber la bannière ni le menu.
- Le HTML recommandé est :
  <nav class="ariane" aria-label="Fil d’Ariane">
    <ol>
      <li><a href="/">Accueil</a></li>
      <li><a href="...">Niveau 2</a></li>
      <li><a href="...">Niveau 3</a></li>
      <li><span class="courant" aria-current="page">Page courante</span></li>
    </ol>
  </nav>
*/

.ariane-prog{
  margin:0.35em 0 1em 0;
  padding:0.55em 0.8em 0.6em 0.8em;
  background:linear-gradient(180deg,#123c34 0%,#0b2b25 100%);
  border:1px solid rgba(217,164,65,0.38);
  border-radius:8px;
  box-shadow:0 4px 14px rgba(0,0,0,0.18);
}

.ariane-prog .ariane{
  margin:0;
  padding:0;
  font-size:0.92em;
  line-height:1.4;
}

.ariane-prog .ariane ol{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  white-space:nowrap;
}

.ariane-prog .ariane li{
  display:flex;
  align-items:center;
  color:#f3eadb;
}

.ariane-prog .ariane li:not(:last-child)::after{
  content:"›";
  display:inline-block;
  margin:0 0.32em;
  color:#d9a441;
  font-weight:bold;
}

.ariane-prog .ariane a{
  color:#f7e6b2;
  text-decoration:underline;
  text-underline-offset:0.12em;
}

.ariane-prog .ariane a:hover,
.ariane-prog .ariane a:focus{
  color:#ffffff;
  text-decoration:underline;
}

.ariane-prog .ariane .courant{
  color:#ffffff;
  font-weight:bold;
}

/* ========================= */
/* FIL D'ARIANE TABLETTE */
/* ========================= */

@media screen and (max-width:768px){

  .ariane-prog{
    padding:0.5em 0.7em 0.55em 0.7em;
  }

  .ariane-prog .ariane{
    font-size:0.88em;
    line-height:1.45;
  }

  .ariane-prog .ariane li:not(:last-child)::after{
    margin:0 0.24em;
  }

}


/* ========================= */
/* FIL D'ARIANE MOBILE */
/* ========================= */

@media screen and (max-width:480px){

  .ariane-prog{
    margin:0.3em 0 0.9em 0;
    padding:0.46em 0.62em 0.5em 0.62em;
    border-radius:7px;
  }

  .ariane-prog .ariane{
    font-size:0.79em;
    line-height:1.5;
  }

  .ariane-prog .ariane li:not(:last-child)::after{
    margin:0 0.18em;
  }

}
