/* =====================================================================
   Claire Silaee, Retouche & Création couture
   Feuille de style unique du site.

   POUR CHANGER LES COULEURS DU SITE ENTIER, modifiez seulement les
   quelques lignes ci-dessous. Tout le reste s'ajuste automatiquement.
   ===================================================================== */

:root {
  --noir:          #130F11;   /* le fond de toute la page */
  --prune:         #6E3159;   /* les boutons pleins */
  --prune-clair:   #8F4576;   /* les boutons au survol */
  --prune-lumiere: #D9A8C6;   /* les titres et les prix, lisibles sur le noir */
  --creme:         #F0EAE6;   /* le texte courant */
  --doux:          #B5ABA5;   /* le texte secondaire */
  --trait:         rgba(255,255,255,.14);
  --panneau:       rgba(255,255,255,.05);
  --panneau-fort:  rgba(255,255,255,.075);

  --titre: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --corps: "Karla", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --large: 1120px;

  /* TAILLE DU LOGO dans le bandeau du haut. Augmentez ou diminuez
     cette seule valeur pour agrandir ou réduire le logo partout. */
  --taille-logo: 86px;
}

/* ------------------------------------------------- base ------------ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--noir);
  color: var(--creme);
  font-family: var(--corps);
  font-size: 17.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Le fond noir mêlé de violine, fixé derrière toute la page.
   Les trois taches de couleur sont volontairement larges et douces. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--noir);
  background-image:
    radial-gradient(ellipse 1100px 750px at 88% -10%, rgba(143,69,118,.55), transparent 62%),
    radial-gradient(ellipse 900px 700px at 2% 30%,   rgba(94,42,78,.45),   transparent 64%),
    radial-gradient(ellipse 1000px 800px at 95% 72%, rgba(120,52,98,.40),  transparent 62%),
    radial-gradient(ellipse 800px 600px at 30% 108%, rgba(110,49,89,.42),  transparent 60%);
}

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

a { color: var(--prune-lumiere); }

.zone {
  max-width: var(--large);
  margin: 0 auto;
  padding: 0 22px;
}

h1, h2, h3 {
  font-family: var(--titre);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 14px;
}

h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  color: var(--prune-lumiere);
}

h3 { font-size: 1.32rem; color: var(--creme); }

p { margin: 0 0 16px; }

.chapo {
  font-size: 1.12rem;
  color: var(--doux);
  max-width: 62ch;
}

.surtitre {
  font-family: var(--corps);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--prune-lumiere);
  font-weight: 700;
  margin: 0 0 10px;
  opacity: .85;
}

section { padding: 68px 0; }

/* les sections "pale" deviennent des panneaux légèrement éclaircis */
section.pale {
  background: var(--panneau);
  border-top: 1px solid var(--trait);
  border-bottom: 1px solid var(--trait);
}

/* ------------------------------------------------- boutons --------- */
.bouton, .bouton-clair {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid var(--prune);
  transition: background .18s, color .18s, border-color .18s;
  cursor: pointer;
}
.bouton { background: var(--prune); color: #fff; }
.bouton:hover { background: var(--prune-clair); border-color: var(--prune-clair); }

.bouton-clair {
  background: transparent;
  color: var(--creme);
  border-color: rgba(255,255,255,.45);
}
.bouton-clair:hover { background: var(--creme); color: var(--noir); border-color: var(--creme); }

/* ------------------------------------------------- en-tête --------- */
/* Le bandeau reste collé en haut de l'écran quand on descend dans la
   page, pour que le menu soit toujours à portée de clic. */
.entete {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17,13,15,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--trait);
  transition: background .2s;
}
.entete .zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: padding .22s ease;
}
.marque { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.marque img {
  width: var(--taille-logo);
  height: var(--taille-logo);
  transition: width .22s ease, height .22s ease;
}
.marque .nom {
  font-family: var(--titre);
  font-size: 2rem;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1.1;
  transition: font-size .22s ease;
}

/* Une fois qu'on a commencé à descendre, le bandeau se resserre pour
   ne pas manger l'écran. Le logo reste largement visible. */
.entete.reduit .zone { padding-top: 8px; padding-bottom: 8px; }
.entete.reduit .marque img { width: 52px; height: 52px; }
.entete.reduit .marque .nom { font-size: 1.5rem; }
.entete.reduit .marque .metier { opacity: .75; }
.marque .metier {
  display: block;
  font-family: var(--corps);
  font-size: .66rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--doux);
  margin-top: 5px;
}
.menu { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.menu a {
  color: var(--creme);
  text-decoration: none;
  font-size: .95rem;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
}
.menu a:hover { border-bottom-color: var(--prune-lumiere); }
.menu a.actif { border-bottom-color: var(--prune-lumiere); color: #fff; }

/* ------------------------------------------------- héros ----------- */
.hero {
  padding: 88px 0 96px;
  position: relative;
  border-bottom: 1px solid var(--trait);

  /* QUAND VOUS AUREZ VOTRE PHOTO : enregistrez-la dans le dossier
     images sous le nom accueil.jpg, puis supprimez les deux barres
     obliques au début des deux lignes suivantes. */
  /* background-image: linear-gradient(rgba(19,15,17,.70), rgba(19,15,17,.84)), url("images/accueil.jpg"); */
  /* background-size: cover; background-position: center; */
}
.hero .zone { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.5rem, 6.6vw, 4.1rem);
  color: #fff;
  max-width: 16ch;
  margin-bottom: 18px;
}
.hero .accroche {
  font-size: 1.2rem;
  color: #E4DFD8;
  max-width: 54ch;
  margin-bottom: 30px;
}
.hero .lieu {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--prune-lumiere);
  margin-bottom: 18px;
}
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero .rappel { font-size: .96rem; color: var(--doux); margin: 0; }

/* ------------------------------------------------- grilles --------- */
.duo, .trio, .quatuor { display: grid; gap: 26px; }
.duo    { grid-template-columns: 1fr; }
.trio   { grid-template-columns: 1fr; }
.quatuor{ grid-template-columns: 1fr; }

.carte {
  background: var(--panneau-fort);
  border: 1px solid var(--trait);
  padding: 30px 28px;
}
.carte .prix-appel {
  font-family: var(--titre);
  font-size: 1.6rem;
  color: var(--prune-lumiere);
  display: block;
  margin: 6px 0 12px;
}
.carte ul { margin: 0 0 18px; padding-left: 20px; color: var(--doux); }
.carte li { margin-bottom: 5px; }

.atout .num {
  font-family: var(--titre);
  font-size: 2.4rem;
  color: var(--prune-lumiere);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.atout p { margin: 0; color: var(--doux); }

/* ------------------------------------------------- tarifs ---------- */
.tarifs { width: 100%; border-collapse: collapse; margin-bottom: 26px; }
.tarifs caption {
  text-align: left;
  font-family: var(--corps);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--prune-lumiere);
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--prune-lumiere);
  margin-bottom: 6px;
}
.tarifs td { padding: 11px 0; border-bottom: 1px solid var(--trait); vertical-align: top; }
.tarifs td.prix { text-align: right; white-space: nowrap; font-weight: 700; padding-left: 18px; color: #fff; }
.tarifs .note { display: block; font-size: .85rem; color: var(--doux); font-style: italic; }

/* ------------------------------------------------- portrait -------- */
.portrait { display: grid; gap: 30px; align-items: start; }
.portrait .cadre {
  background: var(--panneau);
  border: 1px solid var(--trait);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  text-align: center;
  color: var(--doux);
  font-size: .9rem;
  font-style: italic;
}
.portrait .cadre img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------- galerie --------- */
.galerie { display: grid; gap: 22px; grid-template-columns: 1fr; }
.piece { background: var(--panneau-fort); border: 1px solid var(--trait); }
.piece .image {
  aspect-ratio: 1 / 1;
  background: var(--panneau);
  display: flex; align-items: center; justify-content: center;
  color: var(--doux); font-size: .85rem; font-style: italic;
  text-align: center; padding: 18px;
  border-bottom: 1px solid var(--trait);
}
.piece .image img { width: 100%; height: 100%; object-fit: cover; }
.piece .texte { padding: 20px 22px 24px; }
.piece .texte p { color: var(--doux); }
.piece .tarif { font-family: var(--titre); font-size: 1.4rem; color: var(--prune-lumiere); }

/* ------------------------------------------------- citation -------- */
.temoignage {
  background: rgba(143,69,118,.22);
  border-left: 4px solid var(--prune-lumiere);
  padding: 28px 30px;
  max-width: 70ch;
}
.temoignage p { font-family: var(--titre); font-size: 1.3rem; font-style: italic; margin-bottom: 10px; color: #fff; }
.temoignage .qui { font-size: .9rem; color: var(--doux); font-style: normal; }

/* ------------------------------------------------- contact --------- */
.coordonnees { display: grid; gap: 26px; }
.bloc-contact { background: var(--panneau-fort); border: 1px solid var(--trait); padding: 26px 26px 30px; }
.bloc-contact .gros {
  font-family: var(--titre);
  font-size: 1.9rem;
  color: var(--prune-lumiere);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

form label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 6px; color: var(--creme); }
form input, form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.28);
  font-family: var(--corps);
  font-size: 1rem;
  color: var(--creme);
  margin-bottom: 16px;
  border-radius: 2px;
}
form input::placeholder, form textarea::placeholder { color: rgba(181,171,165,.75); }
form input:focus, form textarea:focus { outline: 2px solid var(--prune-lumiere); outline-offset: 1px; }
form textarea { min-height: 130px; resize: vertical; }
.mention-rgpd { font-size: .82rem; color: var(--doux); margin-top: 14px; }

/* ------------------------------------------------- pied ------------ */
.pied {
  background: rgba(0,0,0,.42);
  border-top: 1px solid var(--trait);
  color: var(--doux);
  padding: 48px 0 34px;
  font-size: .93rem;
}
.pied a { color: var(--creme); }
.pied .colonnes { display: grid; gap: 26px; margin-bottom: 28px; }
.pied h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.pied .bas {
  border-top: 1px solid var(--trait);
  padding-top: 18px;
  font-size: .84rem;
  color: var(--doux);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* ------------------------------------------------- écrans larges --- */
@media (min-width: 700px) {
  .duo     { grid-template-columns: 1fr 1fr; }
  .trio    { grid-template-columns: repeat(3, 1fr); }
  .quatuor { grid-template-columns: repeat(2, 1fr); }
  .galerie { grid-template-columns: repeat(2, 1fr); }
  .portrait{ grid-template-columns: 300px 1fr; gap: 46px; }
  .coordonnees { grid-template-columns: 1fr 1fr; }
  .pied .colonnes { grid-template-columns: repeat(3, 1fr); }
  section { padding: 84px 0; }
}

@media (min-width: 1000px) {
  .quatuor { grid-template-columns: repeat(4, 1fr); }
  .galerie { grid-template-columns: repeat(3, 1fr); }
}

/* sur petit écran, un logo un peu plus mesuré pour laisser la place au menu */
@media (max-width: 520px) {
  :root { --taille-logo: 66px; }
  .marque .nom { font-size: 1.65rem; }
  .entete.reduit .marque img { width: 40px; height: 40px; }
  .entete.reduit .marque .nom { font-size: 1.25rem; }
  .entete.reduit .marque .metier { display: none; }
  .entete.reduit .menu { gap: 16px; }
  .entete.reduit .menu a { font-size: .86rem; }
}

/* le bandeau étant collé en haut, on décale les ancres pour qu'un titre
   visé par un lien ne se retrouve pas caché dessous */
h1, h2, h3 { scroll-margin-top: 120px; }
