@charset "UTF-8";
/* =====================  THEME  ===================== */
:root{
  --bg:#fcf0e2;          /* sable clair */
  --ink:#1F1F1F;         /* texte principal */
  --muted:#6F6F6F;       /* texte secondaire */
  --gold:#C5A457;        /* accent chic */
  --panel:#FFFFFF;       /* panneaux blancs */
  --radius:16px;
  --shadow:0 8px 30px rgba(0,0,0,.08);

  --wrap-w: min(1200px, 92%);
  --header-h: 64px;      /* header desktop (logo 70px) */
  /* Titres uniformes */
  --title-min: 22px;
  --title-fluid: 2.2vw;
  --title-max: 28px;
}

/* =====================  BASE  ===================== */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--ink);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
html{ scroll-padding-top: calc(var(--header-h) + 8px); }

/* Conteneur global aligné au header */
.wrap{ width:var(--wrap-w); margin-inline:auto; }

/* =====================  HEADER & NAV  ===================== */
header{
  position:sticky; top:0; z-index:50;
  background: var(--bg);
  border-bottom:1px solid rgba(0,0,0,.06);
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.nav{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0; }
.brand{ display:flex; align-items:center; gap:14px; }
.brand img{ height:70px; width:auto; object-fit:contain; } /* +40% */

nav ul{ display:flex; align-items:center; gap:28px; list-style:none; margin:0; padding:0; }
nav a{ font-weight:500; letter-spacing:.2px; }
nav a:hover{ color:var(--gold); }
.pill{ padding:8px 14px; border-radius:999px; background:var(--panel); border:1px solid rgba(0,0,0,.08); }

/* Burger */
.burger{ display:none; appearance:none; background:transparent; border:0; padding:6px; cursor:pointer; border-radius:12px; }
.burger .label{ display:none; }
.burger span{ display:block; width:26px; height:2px; background:var(--ink); margin:6px 0; transition:transform .25s ease, opacity .2s ease; }

@media (max-width:760px){
  .brand img{ height:50px; }
  .burger{ display:inline-flex; flex-direction:column; align-items:center; }
  .burger .label{ display:block; font-size:11px; line-height:1; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--ink); margin-bottom:2px; }
  header nav{
    display:none; position:absolute; right:4%; top:calc(100% + 6px);
    background:var(--panel); border:1px solid rgba(0,0,0,.08); border-radius:14px;
    box-shadow:var(--shadow); padding:12px 14px; width:min(280px,92vw);
  }
  header.menu-open nav{ display:block; }
  nav ul{ flex-direction:column; align-items:flex-start; gap:12px; }
  nav a{ padding:6px 2px; }
  header.menu-open .burger span:nth-child(2){ opacity:0; }
  header.menu-open .burger span:nth-child(3){ transform:translateY(8px) rotate(45deg); }
  header.menu-open .burger span:nth-child(4){ transform:translateY(-8px) rotate(-45deg); }
}

/* Ancrage des sections ciblées */
#lieu, #experience, #galerie, #reserver, #contact{ scroll-margin-top: calc(var(--header-h) + 8px); }

/* =====================  HERO  ===================== */
.hero{ position:relative; min-height:70vh; overflow:hidden; background:#000; isolation:isolate; }
.hero::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.25) 100%); z-index:1; }
.hero-slides{ position:absolute; inset:0; z-index:0; }
.hero-slides .slide{ position:absolute; inset:0; opacity:0; transition:opacity 1.2s ease; }
.hero-slides .slide.active{ opacity:1; }
.hero-slides img{ width:100%; height:100%; object-fit:cover; }

/* =====================  TITRES & TEXTE  ===================== */
.t-section{
  font-family:"Playfair Display", ui-serif, Georgia, serif;
  font-weight:700;
  font-size:clamp(var(--title-min), var(--title-fluid), var(--title-max));
  line-height:1.12;
  letter-spacing:.005em;
  margin:0 0 12px;
}
.section{ padding:56px 0; }
.section p{ margin:0 0 12px; line-height:1.8; color:var(--ink); }

/* =====================  INTRO / LIEU  ===================== */
#intro{ padding:48px 0 8px; }
#intro .intro-body{ width:var(--wrap-w); margin-inline:auto; }
#intro h2{ composes: t-section; /* pour IDE, sinon gardé ci-dessous */ }
#intro h2{
  font-family:"Playfair Display", ui-serif, Georgia, serif;
  font-weight:700;
  font-size:clamp(var(--title-min), var(--title-fluid), var(--title-max)); /* ~30% plus petit */
  line-height:1.12; letter-spacing:.005em; margin:0 0 12px;
}
#intro p{ max-width:840px; margin:0; color:var(--muted); line-height:1.65; }
#intro .grid{ display:grid; gap:28px; grid-template-columns:1fr 1fr; align-items:start; }

#lieu{ padding:56px 0; }
#lieu .grid{ display:grid; gap:28px; grid-template-columns:1fr 1fr; align-items:start; }
#lieu p{ margin:0 0 12px; line-height:1.8; }

/* =====================  EXPÉRIENCE  ===================== */
#experience{ padding:56px 0; }
#experience > .cols{
  width:var(--wrap-w); margin-inline:auto; display:grid;
  grid-template-columns:1fr 1fr; gap:28px;
}
#experience p{ margin:0 0 12px; line-height:1.8; }
#experience .equip h3{ margin:0 0 10px; font-size:18px; }
#experience .equip ul{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
#experience .equip li{
  position:relative; padding-left:26px; line-height:1.7;
  border-bottom:1px dashed rgba(0,0,0,.06); padding-bottom:8px;
}
#experience .equip li:last-child{ border-bottom:0; }
#experience .equip li::before{
  content:""; position:absolute; left:0; top:.6em; width:10px; height:10px; border-radius:50%;
  background:var(--gold); box-shadow:0 0 0 3px rgba(197,164,87,.18);
}
#experience .equip{ min-width:0; }

/* =====================  GALERIE  ===================== */
.gallery{ padding:36px 0 60px; }
.grid{ display:grid; gap:22px; grid-template-columns:repeat(2, minmax(0,1fr)); }
#galerie > .grid{
  width:var(--wrap-w); margin-inline:auto; padding-inline:0;
  grid-template-columns:1fr 1fr; gap:28px;
}
#galerie figure, #galerie .tile{ margin:0; display:block; overflow:hidden; border-radius:var(--radius); background:var(--panel); box-shadow:var(--shadow); }
.tile img{ width:100%; height:auto; display:block; transition:transform .5s ease; }
.tile:hover img{ transform:scale(1.02); }

/* =====================  FORMULAIRES  ===================== */
.form-card{ background:var(--panel); border:1px solid rgba(0,0,0,.06); border-radius:16px; box-shadow:var(--shadow); padding:20px; }
.grid-2{ display:grid; gap:14px; grid-template-columns:1fr 1fr; }
.field{ display:flex; flex-direction:column; gap:6px; }
.input{ padding:12px 14px; border-radius:12px; border:1px solid rgba(0,0,0,.14); background:#fff; }
.input:focus{ outline:none; border-color:var(--gold); box-shadow:0 0 0 3px color-mix(in srgb, var(--gold) 25%, transparent); }
.btn-primary{ display:inline-block; padding:12px 20px; border-radius:999px; background:var(--gold); border:0; color:#1a1a1a; font-weight:700; letter-spacing:.2px; box-shadow:0 6px 18px rgba(0,0,0,.12); cursor:pointer; }
.btn-primary:hover{ transform:translateY(-1px); box-shadow:0 10px 26px rgba(0,0,0,.16); }

/* Select */
.select-wrap{ position:relative; }
.select-wrap select{
  -webkit-appearance:none; -moz-appearance:none; appearance:none;
  width:100%; height:48px; padding:0 2.6rem 0 .9rem; border:1px solid #e6e2da; border-radius:12px; background:#fff;
  font:inherit; color:inherit; box-shadow:0 1px 2px rgba(0,0,0,.04), 0 0 0 1px rgba(0,0,0,.02);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.select-wrap select:focus{ outline:none; border-color:#cdb27b; box-shadow:0 0 0 4px rgba(205,178,123,.15); background:#fff; }
.select-wrap::after{
  content:""; position:absolute; right:.9rem; top:50%; translate:0 -50%;
  width:12px; height:12px; pointer-events:none; opacity:.65;
  background:no-repeat center/12px 12px url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}
.select-wrap select:disabled{ opacity:.6; cursor:not-allowed; }
.select-wrap select:invalid{ color:#8e8b86; }

/* =====================  FORMULES  ===================== */
.formules{ text-align:center; padding:60px 20px; background:var(--bg); }
.formules h2{ font-family:"Playfair Display", ui-serif, Georgia, serif; font-weight:700; font-size:clamp(var(--title-min), var(--title-fluid), var(--title-max)); line-height:1.12; margin:0 0 12px; }
.formules p{ color:var(--muted); max-width:600px; margin:auto; }
.formules-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(250px,1fr)); gap:30px; margin-top:40px; }
.carte{ background:var(--panel); padding:30px; border-radius:var(--radius); box-shadow:var(--shadow); }
.carte h3{ color:var(--ink); font-size:1.3rem; margin-bottom:10px; }
.carte .prix{ font-weight:bold; color:var(--gold); margin:15px 0; }
.btn-dore{ display:inline-block; background:var(--gold); color:white; padding:10px 20px; border-radius:var(--radius); text-decoration:none; transition:.3s; }
.btn-dore:hover{ opacity:.9; }
.formules-pro .carte{ border:1px solid #efeae2; }
.formules-pro .carte ul{ margin:.5rem 0 0; padding-left:1.1rem; color:#6b665e; }
.formules-pro .carte ul li{ margin:.15rem 0; list-style:disc; }

/* =====================  FOOTER & RESEAUX  ===================== */
footer{ background:var(--bg); border-top:1px solid rgba(0,0,0,.06); padding:36px 0 48px; }
.foot{ display:grid; gap:18px; grid-template-columns:1fr auto; align-items:start; }
.foot .brand img{ height:34px; }
.foot small{ color:var(--muted); }
.social{ display:flex; gap:12px; }
.social a.icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:46px; height:46px; border-radius:999px; background:#111; color:#fff; border:1px solid rgba(0,0,0,.12);
  box-shadow:0 6px 18px rgba(0,0,0,.12); transition:transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.social a.icon svg{ width:22px; height:22px; display:block; }
.social a.icon:hover{ background:var(--gold); color:#1a1a1a; border-color:transparent; box-shadow:0 10px 26px rgba(0,0,0,.16); transform:translateY(-1px); }

/* =====================  MENTIONS LÉGALES  ===================== */
main.wrap{ width:var(--wrap-w); margin-inline:auto; padding-block:36px 64px; }
main.wrap p, main.wrap li{ font-size:clamp(15.5px, 1.15vw, 18px); line-height:1.75; color:var(--ink); margin:0 0 12px; }
main.wrap .lead{ font-size:clamp(16px, 1.25vw, 19px); color:var(--muted); margin:2px 0 18px; }
main.wrap h1.t-section{ font-family:"Playfair Display", ui-serif, Georgia, serif; font-weight:700; font-size:clamp(26px, 2.6vw, 34px); line-height:1.12; margin:0 0 12px; }
main.wrap h2{ font-family:"Playfair Display", ui-serif, Georgia, serif; font-weight:700; font-size:clamp(20px, 2.0vw, 26px); line-height:1.18; margin:0 0 10px; }
main.wrap .stack{ display:grid; gap:18px; }
main.wrap .card{ background:var(--panel); border:1px solid rgba(0,0,0,.06); border-radius:16px; box-shadow:var(--shadow); padding:18px 20px; }
main.wrap ul.clean{ list-style:none; padding-left:0; margin:8px 0 0; }
main.wrap ul.clean li{ position:relative; padding-left:18px; }
main.wrap ul.clean li::before{ content:"•"; position:absolute; left:0; top:0; line-height:1.2; color:var(--gold); }
@media (max-width:600px){
  main.wrap{ padding-block:24px 48px; }
  main.wrap .card{ padding:16px; }
}

/* =====================  RESPONSIVE GRILLES  ===================== */
@media (max-width:760px){
  .grid{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
  #lieu .grid, #experience .cols{ grid-template-columns:1fr; }
  /* Galerie mobile : 1 colonne bien large */
  #galerie > .grid{ grid-template-columns:1fr; gap:16px; width:var(--wrap-w); margin-inline:auto; padding-inline:0; }
}
/* Si tu as déjà .card pour le formulaire, on la réutilise. Sinon, ce bloc donne le rendu attendu. */
.card.map-card {
  background: #fff;         /* adapte si ton fond est crème */
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

/* Cadre interne de l'image */
.map-card .map-frame {
  border-radius: 14px;
  overflow: hidden;         /* arrondis appliqués à l’image */
  background: #f7f7f7;
}

/* Image responsive, largeur 100% du conteneur (donc même largeur que le formulaire) */
.map-card img {
  display: block;
  width: 100%;
  height: auto;
}
/* --- PAGE MUSIQUE / PIANO --- */

/* Variante du hero pour la salle de musique */
.hero-musique .hero-image img {
    width: 100%;
    height: 60vh;          /* même hauteur que ton hero principal si tu veux */
    max-height: 700px;
    object-fit: cover;
    display: block;
}

/* Texte sur la salle de musique */
.texte-musique {
    max-width: 900px;
    margin: 0 auto;
}

.texte-musique h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.texte-musique p {
    margin-bottom: 1rem;
}

/* Liste un peu respirante */
.texte-musique ul {
    margin: 0 0 1.5rem 1.2rem;
    padding-left: 1rem;
}

/* Visuel pleine largeur sous le texte */
.section-image-musique img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Bloc appel à l’action */
.section-cta {
    text-align: center;
    max-width: 900px;
    margin: 3rem auto 4rem;
}

.section-cta .cta-buttons {
    margin-top: 1.5rem;
}

.section-cta .btn {
    margin: 0 0.5rem 0.5rem;
}
/* Correction affichage hero musique */
.hero-musique .hero-inner {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    color: #ffffff; /* texte bien visible */
    z-index: 3;
}

.hero-musique .hero-inner h1,
.hero-musique .hero-inner p {
    color: #ffffff !important;
}

/* Si un overlay existe dans ton hero, on l'éclaircit */
.hero-musique::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* pas opaque */
    z-index: 2;
}

/* S'assurer que l'image est derrière l'overlay */
.hero-musique .hero-image img {
    width: 100%;
    height: 75vh;      /* un peu plus haut */
    object-fit: cover;
    object-position: center 70%;  /* on montre davantage le bas du piano */
    display: block;
}

/* PAGE MUSIQUE : pas de voile noir sur le hero */
.page-musique .hero::after {
    background: none;
}

.hero-musique::before {
    content: none;
}
/* PAGE BILLARD : pas de voile noir sur le hero */
.page-billard .hero::after {
    background: none;
}

/* Image hero billard : cadrage pour bien voir la table */
.hero-billard .hero-image img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    object-position: center 65%; /* ajuster si besoin pour voir plus/moins la table */
    display: block;
}

/* Texte page billard */
.texte-billard {
    max-width: 900px;
    margin: 0 auto;
}

.texte-billard h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.texte-billard p {
    margin-bottom: 1rem;
}

.texte-billard ul {
    margin: 0 0 1.5rem 1.2rem;
    padding-left: 1rem;
}

/* Image secondaire billard */
.section-image-billard img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
/* --- PAGE BILLARD : suppression du voile noir + texte blanc --- */
.page-billard .hero::after {
    background: none;          /* enlève le bandeau noir */
}

.hero-billard::before {
    content: none;             /* au cas où un autre overlay soit prévu */
}

.page-billard .hero .hero-inner {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    z-index: 3;
    color: #ffffff;
}

.page-billard .hero .hero-inner h1,
.page-billard .hero .hero-inner p {
    color: #ffffff !important;
}
/* --- PAGE HOME CINÉMA --- */

/* Pas de voile noir sur le hero */
.page-homecinema .hero::after {
    background: none;
}

/* Image hero : cadrage pour bien voir l'écran et le lit */
.hero-homecinema .hero-image img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    object-position: center 55%; /* ajuste 50–65% si besoin */
    display: block;
}

/* Texte principal */
.texte-homecinema {
    max-width: 900px;
    margin: 0 auto;
}

.texte-homecinema h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.texte-homecinema p {
    margin-bottom: 1rem;
}

.texte-homecinema ul {
    margin: 0 0 1.5rem 1.2rem;
    padding-left: 1rem;
}
/* --- PAGE HOME CINÉMA : suppression du voile noir + texte blanc --- */
.page-homecinema .hero::after {
    background: none;   /* enlève le bandeau noir */
}

.hero-homecinema::before {
    content: none;      /* annule un éventuel overlay additionnel */
}

.page-homecinema .hero .hero-inner {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    z-index: 3;
    color: #ffffff;
}

.page-homecinema .hero .hero-inner h1,
.page-homecinema .hero .hero-inner p {
    color: #ffffff !important;  /* assure lisibilité */
}
.hero-homecinema .hero-image img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    object-position: center 58%; /* ajuste selon le rendu visuel */
}
@media (max-width: 900px) {
  .page-homecinema .hero .hero-inner {
      bottom: 20%;
  }
}
