/* Look inspiré de tes captures : fond sombre, teinte cuivre/or, menu centré */
:root{
  --overlay: .28; /* assombrit le fond (0=aucun, 1=noir) */
  --vignette: .55;

  --wrap: 1020px;
  --gold: #c79b55;
  --gold2:#9e773f;
  --text:#d9d2c6;
  --muted:#b9b0a3;
  --panel: rgba(0,0,0,.35);
  --shadow: 0 10px 40px rgba(0,0,0,var(--overlay));
}
*{box-sizing:border-box}
html,body{
  margin:0;
  font-family: "Lora", Georgia, serif;
  color:var(--text);
  background-color:#000;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,var(--overlay)), rgba(0,0,0,var(--overlay))),
    url("../assets/img/background.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow-x:hidden;
}



/* Typo premium (titres + menu) */
.h1, .nav__a, .foot__links a{
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: .02em;
}
.home__text, .page .panel, .note, .foot__copy{
  font-family: "Lora", Georgia, serif;
}


/* Background + vignette (comme ton site) */
.bg{
  position:fixed; inset:0;
  /* Fallback (toujours supporté) */
  background-color:#000;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,var(--overlay)), rgba(0,0,0,var(--overlay))),
    url("../assets/img/bg-placeholder.svg");
  background-size: cover;
  background-position: center;
  filter: saturate(.9) contrast(1.0);
  z-index:0;
}

/* Si le navigateur supporte AVIF, on remplace juste l'image */
@supports (background-image: url("x.avif")) {
  .bg{
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,var(--overlay)), rgba(0,0,0,var(--overlay))),
      url("../assets/img/background.avif");
  }
}

.vignette{
  position:fixed; inset:-30px;
  background:
    radial-gradient(closest-side at 50% 35%, rgba(0,0,0,0) 0%, rgba(0,0,0,var(--vignette)) 70%, rgba(0,0,0,.88) 100%);
  z-index:1;
}

/* Header */
.mast{
  text-align:center;
  padding-top: 20px;
}
.logo img{
  width:min(560px, 86vw);
  height:auto;
  display:block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.7));
}

.nav{ margin-top: 18px; }
.nav__ul{
  list-style:none;
  padding:0;
  margin:0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 12px;
  flex-wrap: nowrap;
  max-width: calc(var(--wrap) - 80px);
}
.nav__a{
  color:#e7dfd4;
  text-decoration:none;
  font-size: 18px;
  padding: 6px 6px;
  display:inline-block;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.nav__a:hover{ color: var(--gold); }
.nav__a.is-active{
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Main */
.wrap{
  max-width: calc(var(--wrap) - 80px);
  margin: 0 auto;
  padding: 26px 18px 60px;
}
.h1{
  text-align:center;
  margin: 26px 0 28px;
  font-weight: normal;
  font-size: 22px;
  color: var(--gold);
}
.home .h1{
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}
.home__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items:start;
}
.home__text{
  text-align:center;
  font-size: 18px;
  line-height: 1.9;
}
.home__text p{ margin: 0 0 18px; }
.home__text .small{ font-size: 26px; color: var(--muted); margin-top: 10px; }

.snat{
  margin: 16px auto 10px;
  width: 340px;
  max-width: 90%;
  background: rgba(255,255,255,.85);
  padding: 10px 14px;
  box-shadow: var(--shadow);
}
.snat img{ width:100%; height:auto; display:block; }

.cta{ margin-top: 20px; }
.btn{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  border: 2px solid #c8b8a8;
  color: #c8b8a8;
  background: rgba(255,255,255,.05);
  padding: 10px 16px;
  border-radius: 28px;
  text-decoration:none;
  font-size: 14px;
  letter-spacing:.03em;
  box-shadow: 0 6px 22px rgba(0,0,0,.45);
}
.btn:hover{
  border-color: var(--gold);
  color: var(--gold);
}

/* Slider mimic : photo encadrée + "scotch" + flèches */
.slider{
  position:relative;
  width: min(520px, 92%);
  margin: 64px auto 0;
  background: rgba(0,0,0,.30);
  padding: 18px;
  box-shadow: var(--shadow);
}
.slider__img{
  width:100%;
  height:auto;
  display:block;
}
.tape{
  position:absolute;
  width: 76px;
  height: 26px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.12);
  transform: rotate(-18deg);
  filter: blur(.2px);
}
.tape--l{ left: 18px; top: -10px; }
.tape--r{ right: 18px; top: -10px; transform: rotate(18deg); }
.slider__btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 90px;
  background: transparent;
  border: 0;
  cursor:pointer;
}
.slider__btn--prev{ left: -56px; }
.slider__btn--next{ right: -56px; }
.slider__btn::before{
  content:"";
  position:absolute;
  inset: 0;
  margin:auto;
  width: 0; height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  opacity:.75;
}
.slider__btn--prev::before{ border-right: 26px solid rgba(255,255,255,.45); }
.slider__btn--next::before{ border-left: 26px solid rgba(255,255,255,.45); }
.slider__btn:hover::before{ opacity:1; }

/* Page panels */
.page .panel{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}
.page .panel a{ color: var(--gold); }

/* Galerie */
.galleryFrame{
  max-width: 720px;
  margin: 30px auto 10px;
  background: rgba(60,60,60,.8);
  padding: 34px;
  box-shadow: var(--shadow);
}
.galleryFrame__img{
  display:block;
  width:100%;
  height:auto;
}
.note{
  text-align:center;
  color: var(--muted);
  font-size: 14px;
}
code{ background: rgba(0,0,0,.35); padding: 2px 6px; border-radius: 6px; border:1px solid rgba(255,255,255,.08); }

/* Footer */
.foot{ padding: 26px 0 20px; }
.foot__inner{
  max-width: calc(var(--wrap) - 80px);
  margin: 0 auto;
  padding: 0 18px;
  text-align:center;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}
.foot__links{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}
.foot__links a{ color: rgba(255,255,255,.55); text-decoration:none; }
.foot__links a:hover{ color: var(--gold); }

@media (max-width: 980px){
  .home__grid{ grid-template-columns: 1fr; }
  .slider{ margin-top: 18px; }
  .slider__btn--prev{ left: -20px; }
  .slider__btn--next{ right: -20px; }
}

/* Bouton "Laissez un avis sur Google" (style pill) */
.btn--google{
  background: rgba(255,255,255,.06);
  border-color: rgba(216, 203, 191, .85);
  color: rgba(216, 203, 191, .95);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(0,0,0,var(--overlay));
}
.btn--google .btn__arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(216, 203, 191, .55);
  margin-left: 6px;
  font-size: 26px;
  line-height: 1;
}
.btn--google:hover{
  border-color: var(--gold);
  color: var(--gold);
}
.btn--google:hover .btn__arrow{
  border-color: rgba(199,155,85,.75);
}


.google-center{
  text-align:center;
  margin-top: 25px;
  margin-bottom: 25px;
}


/* Prevent nav from wrapping and allow horizontal scroll if needed */
.nav__ul{
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
}
.nav__ul::-webkit-scrollbar{
  height: 6px;
}
.nav__ul::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
}

/* MENU avec Yanone Kaffeesatz */
.nav__a{
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 26px;
  letter-spacing: .01em;
}


/* Google button bottom block */
.google-bottom{
  text-align:center;
  margin-top:40px;
  margin-bottom:30px;
}


/* Assure que le contenu passe au-dessus du fond */
.mast, .wrap, .foot{
  position: relative;
  z-index: 2;
}


/* Désactive les anciens calques de fond (on met le fond directement sur body) */
.bg, .vignette{ display:none !important; }


/* Logo transparent : éviter tout fond parasite */
.logo img{
  background: transparent !important;
}


/* V5 — Titre de bienvenue plus grand et sur une seule ligne (desktop) */
.welcome{
  margin: 26px 0 28px;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.15;
  white-space: nowrap;
  text-align: center;
  color: var(--muted);
  text-shadow: 0 2px 10px rgba(0,0,0,.65);
}

/* Mobile : on évite le débordement, on réduit la taille */
@media (max-width: 520px){
  .welcome{
    font-size: 1.9rem;
    white-space: normal;
  }
}


/* Titre de page (sous le menu) */
.page-title{
  margin: 18px 0 28px;
  text-align:center;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--muted);
  font-size: 1.9rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

/* Rendez-vous — layout 4 conteneurs */
.rv-grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 28px;
}
.rv-stack{
  display:grid;
  gap: 26px;
  margin-bottom: 30px;
}

.rv-card{
  background: rgba(18,18,18,.62);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}

.rv-card h2{
  margin: 0 0 12px;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  letter-spacing: .6px;
  font-size: 1.05rem;
  color: var(--gold);
  text-transform: uppercase;
}

.rv-card p{
  margin: 0 0 12px;
  line-height: 1.55;
}

.rv-card--withimg .rv-figure{
  margin: 14px 0 0;
  display:flex;
  justify-content:center;
}

.rv-figure img{
  width: min(360px, 100%);
  height: auto;
  border-radius: 10px;
  opacity: .95;
}

.rv-card--wide{
  max-width: 980px;
  margin: 0 auto;
}

.rv-steps p{ margin-bottom: 12px; }

.rv-actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--muted);
  text-decoration:none;
  background: rgba(0,0,0,.25);
  transition: transform .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(0,0,0,.35); }
.btn--ghost{ background: transparent; }

.rv-note{
  opacity: .85;
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .rv-grid2{ grid-template-columns: 1fr; }
  .rv-card--wide{ max-width: 100%; }
}

.nav a.is-active{
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 6px;
}
