/* =====================================================
   VARIABLES
===================================================== */
:root{
  --noir-profond:#0f0f0f;
  --noir-satin:#141414;
  --or:#c9a45c;
  --or-clair:#f5d58b;
  --beige-clair:#f6f1eb;
  --beige-fonce:#e8dfd4;
}

/* =====================================================
   BASE
===================================================== */
*{
  box-sizing:border-box;
}

body{
  margin:0;
  padding-top:90px;
  font-family:"Playfair Display", serif;
  background:var(--noir-profond);
  color:#fff;
  line-height:1.6;
}

/* Grain noir sablé */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:3px 3px;
  opacity:.35;
  pointer-events:none;
  z-index:-1;
}

h1,h2,h3{
  margin:0 0 20px;
  font-weight:600;
}

a{
  color:inherit;
}

/* =====================================================
   HEADER / MENU STICKY
===================================================== */
.header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background:rgba(15,15,15,.85);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(201,164,92,.25);
  transition:all .4s ease;
}

.header.is-sticky{
  background:rgba(10,10,10,.95);
  box-shadow:0 10px 30px rgba(0,0,0,.6);
}

.header-inner{
  max-width:1400px;
  margin:auto;
  padding:18px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition:padding .4s ease;
}

.header.is-sticky .header-inner{
  padding:10px 40px;
}

.logo{
  font-size:26px;
  font-weight:700;
  color:var(--or);
}

/* MENU */
.main-nav ul{
  display:flex;
  gap:35px;
  list-style:none;
  margin:0;
  padding:0;
}

.main-nav a{
  text-decoration:none;
  color:#fff;
  font-weight:500;
  position:relative;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,var(--or),var(--or-clair));
  transition:width .3s ease;
}

.main-nav a:hover::after{
  width:100%;
}

/* Boutons */
.btn,
.btn-devis{
  display:inline-block;
  background:linear-gradient(135deg,var(--or),var(--or-clair));
  color:#111;
  padding:12px 28px;
  font-weight:600;
  text-decoration:none;
  border-radius:4px;
  transition:transform .3s ease, box-shadow .3s ease;
}

.btn:hover,
.btn-devis:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,.4);
}

/* =====================================================
   HERO
===================================================== */
.hero{
  padding:160px 20px;
  text-align:center;
  background:
    linear-gradient(
      rgba(15,15,15,.65),
      rgba(15,15,15,.85)
    ),
    url("../img/hero.jpg") center / cover no-repeat;
}
.hero p{
  max-width:700px;
  margin:0 auto 30px;
  opacity:.9;
}

/* =====================================================
   EXPERTISES
===================================================== */
.expertises{
  position:relative;
  background:
    linear-gradient(135deg,var(--beige-clair),var(--beige-fonce));
  color:#111;
  padding:110px 20px;
 
}

.expertises::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(rgba(0,0,0,.05) 1px, transparent 1px);
  background-size:4px 4px;
  opacity:.25;
  pointer-events:none;
}

.expertises::after{
  content:"";
  position:absolute;
  inset:2px;
  border:1px solid rgba(201,164,92,.6);
    pointer-events:none;
}

/* =====================================================
   SECTIONS NOIRES
===================================================== */
.realisations{
  padding:100px 20px;
  background:
    linear-gradient(180deg,#111,#0d0d0d);
}

.avis{
  padding:90px 20px;
  background:
    linear-gradient(135deg,#101010,#181818);
}

/* =====================================================
   GRID / CARTES
===================================================== */
.grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.grid img{
  width: 100%;
  max-width: 250px; /* ajuste selon ton design */
  margin: 0 auto;
  display: block;
}
.realisations-grid{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center; /* 👈 centre chaque carte */
}
.realisation-item{
  background:
    linear-gradient(145deg,#1a1a1a,#0f0f0f);
     width: 100%;
  max-width: 350px; /* ajuste selon ton design */
  border:1px solid rgba(201,164,92,.3);
  padding:20px;
  border-radius: 12px;
  box-shadow:0 10px 25px rgba(0,0,0,.6);
  transition:transform .4s ease, box-shadow .4s ease;
}

.realisation-item:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 40px rgba(0,0,0,.8);
}

/* =====================================================
   AVIS
===================================================== */
blockquote{
  max-width:800px;
  margin:40px auto;
  padding:30px;
  background:#141414;
  border-left:4px solid var(--or);
  font-style:italic;
}

blockquote cite{
  display:block;
  margin-top:15px;
  font-style:normal;
  color:var(--or);
}

/* =====================================================
   FOOTER
===================================================== */
* FOOTER */
.site-footer {
  background-image: url('../img/footer.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  font-size: 13px;
  text-align: center;
  color: #aaa;

  max-height: 350px; /* important pour voir l’image */
}
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid rgba(255,215,0,0.15);
  backdrop-filter: blur(8px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}


/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:1024px){
  .grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .grid{
    grid-template-columns:1fr;
  }

  .header-inner{
    padding:14px 20px;
  }

  .expertises{
    clip-path:none;
  }

  body{
    padding-top:80px;
  }
}

@media(max-width:480px){
  h1{font-size:1.9rem;}
  h2{font-size:1.6rem;}
}

.expertises{
  position: relative;
  padding:110px 20px;
  color:#111;
  overflow:hidden;

  background:
    linear-gradient(
      rgba(255,255,255,0.15),
      rgba(255,255,255,0.15)
    ),
}

.expertises .grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  text-align:center;
}

.expertises .grid > div{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  font-weight:600;
  font-size:16px;
  color:#111;
}

/* Images icônes */
.expertises .grid img{
  width:390px;          /* ajuste si besoin */
  height:auto;
  display:block;
}

/* CONTACT */
.contact { background: #050505; }
.contact-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.contact-text { max-width: 360px; }
.contact-form-wrapper { flex: 1; min-width: 260px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%; border-radius: 4px; border: 1px solid #333;
  background: #111; color: #f5f5f5;
  padding: 10px 12px; font-size: 14px; font-family: inherit;
}
.contact-form textarea { grid-column: 1 / -1; resize: vertical; min-height: 120px; }
.contact-form button { grid-column: 1 / -1; justify-self: flex-start; }

/* SECTIONS */
.section { padding: 80px 0; }
.section.dark { background: #050505; }
.section.light { background: #f3eee5; color: #111; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; letter-spacing: .18em;
  text-align: center; text-transform: uppercase;
  margin-bottom: 40px; color: #d4af37;
}
.section-title2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; letter-spacing: .18em;
  text-align: center; text-transform: uppercase;
  margin-bottom: 40px; color: #030300;
}
.section-rea {
  font-family: serif;
  font-size: 15px; letter-spacing: .18em;
  text-align: center; text-transform: uppercase;
  margin-bottom: 40px; color: #ffffff;
}
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container2 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--pad);
}
/* LABEL comme un input */
.form-label{
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 6px;
  border-radius: 4px;
  border: 1px solid #333;
  background: #111;
  color: #f5f5f5;
  font-size: 14px;
  font-family: inherit;
  letter-spacing: 0.02em;
}

/* SELECT harmonisé avec les inputs */
.form-select{
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #333;
  background: #111;
  color: #f5f5f5;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 16px;
}

/* Focus cohérent */
.form-select:focus{
  outline: none;
  border-color: #d4af37;
}

/* ======================
   AVIS CLIENTS (Premium)
   ====================== */

.avis-clients{
  background: var(--bg-2);
}

.avis-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.avis-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  transition: transform .2s ease, border-color .2s ease;
}

.avis-card:hover{
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.35);
}

.avis-stars{
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.avis-text{
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245,245,245,0.85);
  margin-bottom: 14px;
}

.avis-author{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}

.avis-note-global{
  margin-top: 26px;
  text-align: center;
  font-size: 14px;
  letter-spacing: .08em;
  color: rgba(245,245,245,0.75);
}

/* Responsive */
@media (max-width: 900px){
  .avis-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   SÉPARATEUR PREMIUM (ligne dorée)
   ========================= */

.section-separator{
  position: relative;
  overflow: hidden;
}

/* Ligne dorée horizontale */
.section-separator::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212,175,55,0.9),
    transparent
  );
  pointer-events:none;
}

/* Ligne dorée diagonale (plus étendue) */
.section-separator::after{
 content:"";
  position:absolute;
  bottom:10px;
  left:-5%;
  width:110%;
  height:2px;
  background: linear-gradient(
    to right,
    transparent 10%,
    rgba(212,175,55,0.95) 50%,
    transparent 90%
  );
  transform: rotate(-1.3deg);
  pointer-events: none;
}
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container2 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--pad);
}
/* ==============================
   🧱 Services
============================== */


.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto;
}
.service-card {
  width: 300px;
}

.service-card1 {
  width: 500px;
}

.service-card2 {
  width: 300px;
  color: var(--gold);
}


.hero {
  padding: 100px 20px;
}

.container-2cols {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center; /* alignement vertical */
  gap: 60px;
}

.col {
  flex: 1;
}

/* Colonne gauche (texte principal) */
.col.gauche h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.col.gauche p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Colonne droite (avis ou bloc secondaire) */
.col.droite {
  background: rgba(255,255,255,0.04);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(201,164,92,0.25);
}

.col.droite h3 {
  margin-bottom: 10px;
}

/* Responsive mobile */
@media (max-width: 900px) {
  .container-2cols {
    flex-direction: column;
    text-align: center;
  }

  .col.gauche h1 {
    font-size: 36px;
  }
}

.hero {

  padding: 100px 20px;
  padding-top: 160px;

}

.container-2cols {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* Colonnes */
.col {
  flex: 1;
}

/* TEXTE GAUCHE */
.col.gauche h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.col.gauche h1 span {
  color: #C9A45C;
}

.subtitle {
  font-size: 18px;
  color: #CFCFCF;
  margin-bottom: 25px;
}

/* LISTE AVANTAGES */
.benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.benefits li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
}

.benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #C9A45C;
  font-weight: bold;
}

/* BOUTON APPEL */
.btn {
  display: inline-block;
  padding: 16px 34px;
  background: linear-gradient(135deg, #E0C27A, #B8962E);
  color: #1C1B1A;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

/* IMAGE DROITE */
.col.droite {
  text-align: right;
}

.col.droite img {
  max-width: 550px;
  width: 100%;

}


@media (max-width: 900px) {
  .container-2cols {
    flex-direction: column;
    text-align: center;
  }

  .col.droite {
    text-align: center;
    margin-top: 40px;
  }

  .col.gauche h1 {
    font-size: 34px;
  }
}
.btn-center {
  grid-column: 1 / -1; /* prend toute la largeur de la grid */
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.btn-call {
  text-align: center;
}

.btn-call span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-top: 6px;
}
/* SCROLL ANIMATIONS */
/* Simple scroll animations: elements get class 'in-view' added by JS */
[data-anim] {opacity:0;transform:translateY(30px);transition:all .8s cubic-bezier(.2,.8,.2,1)}
[data-anim].in-view {opacity:1;transform:translateY(0)}

/* small fade for images/cards */
.real-card{transform-origin:center;transition:transform .6s ease, box-shadow .3s}
[data-anim] .real-card.in-view {transform:translateY(0) scale(1); box-shadow:0 12px 30px rgba(0,0,0,0.12)}


.titre-centre-premium {
  text-align: center;
  margin: 0 auto 20px auto;
   letter-spacing: 2px;
}