/*────────────────────────── VARIABLES COULEUR */
:root {
  --gold: #d4af37;
  --black: #0f0f0f;
  --white: #ffffff;
  --red: #c10000;
}
/*────────────────────────── POLICES PERSONNALISÉES */

/* 1 ▸ Open Sans variable (poids & largeur) */
@font-face {
  font-family: "Open Sans VF";
  src: url("font/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf") format("truetype");
  font-display: swap;                  /* texte visible même si la police tarde */
}

/* 2 ▸ Nourd regular */
@font-face {
  font-family: "Nourd";
  src: url("font/Nourd_Font/nourd_regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 3 ▸ Nourd bold */
@font-face {
  font-family: "Nourd";
  src: url("font/Nourd_Font/nourd_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*────────────────────────── UTILISATION */

/* texte courant */
body,
p,
a,
span{
  font-family: "Open Sans VF", Arial, sans-serif;
}

/* titres */
h1,
h2,
h3,
h4{
  font-family: "Nourd", Arial, sans-serif;
  font-weight: 700;           /* prendra nourd_bold automatiquement */
}

/* si tu veux la version regular de Nourd quelque part */
.subtitle{
  font-family: "Nourd", Arial, sans-serif;
  font-weight: 400;
}

/*────────────────────────── RESET MINIMAL */
html, body{
  height:100%;                 /* 1. occuper toute la hauteur */
}



body{
  display:flex;
  flex-direction:column;       /* 2. empile header / main / footer */
  /* perspective: 1px; */
}

main{
  flex:1 0 auto;               /* 3. prend tout l’espace restant */
}

.site-footer{
  flex-shrink:0;               /* 4. ne se compresse pas, reste en bas */
}

*,
*::before,
*::after { box-sizing: border-box; }
body   { margin: 0px; font-family: 'Segoe UI', sans-serif; background: var(--white); color: var(--black);padding-bottom: 0%; }
html {margin-bottom: 0; padding: 0;}
/*────────────────────────── “T” décoratif en arrière-plan */
.bg-T{
  filter: blur(10);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(8) translateZ(-1px);
  perspective:1px;
  font-size: 10rem;          /* taille de base avant le scale */
  line-height: 1;
  font-weight: 700;          /* épaisseur visible même avec faible opacité */
  color: var(--black);       /* même noir que ta DA */
  opacity: .25;              /* ↓ ajuste pour plus/moins visible */

  z-index: -1;               /* toujours derrière tout */
  pointer-events: none;      /* clics traversent */
  user-select: none;         /* pas sélectionnable */
}

/* si tu veux qu’il se décale un peu en scroll (parallaxe “soft”) */
@media (prefers-reduced-motion: no-preference){

  .bg-T{
    transform: translate(-50%,-50%) scale(8) translateZ(-1px);
  }
}
/* body {perspective:1px} */
/*────────────────────────── HEADER GLOBAL */
#header {
  background: var(--white);
  text-align: center;
  padding: 1.5rem 2rem 2.8rem;   /* top / sides / bottom */
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

/* agrandir le logo */
#logo-titre{
  width: 260px;        /* ↗︎ avant 180 px */
  margin-bottom: 1rem; /* un peu d’air dessous */
}

/* bloc nom + baseline */
.brand-block{
  gap: .35rem;         /* espace entre nom & baseline */
  margin-top: .8rem;
}

.brand-block h1{
  font-size: 4rem;     /* ↗︎ avant 1.35 rem */
}
/* sous-titre entre logo et baseline */
.agency-tag{
  margin: .3rem 0 0;                    /* espace au-dessus */
  font-size: 1.15rem;                   /* lisible sans voler la vedette */
  font-weight: 500;
  letter-spacing: .4px;
  color: var(--black);
  text-transform: uppercase;
}

/* .brand-block .tagline{
  font-size: 1.2rem;   ↗︎ avant 1 rem
} */

/* titre de page */
.page-heading{
  margin-top: 2rem;                 /* le descendre un peu */
  font-size: clamp(2.2rem, 5vw, 3rem); /* ↗︎ taille réactive + grande */
}

/* tagline */
#titre > h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.5px;
  font-weight: 500;
}




/*────────────────────────── BURGER */
.burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;

  position: fixed;
  top: 1.6rem;
  right: 2rem;

  z-index: 1100;  /* au-dessus du voile et du menu */
  background: none;
  border: none;
  padding: 0;
}

.burger span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* état X quand menu ouvert */
#menu-toggle:checked ~ .burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
#menu-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
#menu-toggle:checked ~ .burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/*────────────────────────── MENU LATÉRAL */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 260px;
  background: var(--black);
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: 1.5rem;

  display: none;          /* caché tant que la case n’est pas cochée */
  z-index: 1001;          /* au-dessus du voile */
}

.menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s;
}
.menu a:hover::after { width: 100%; }

/* menu visible quand la case est cochée */
#menu-toggle:checked ~ .menu { display: flex; }

/*────────────────────────── VOILE SOMBRE */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  display: none;           /* caché par défaut */
  z-index: 1000;
}

/* voile visible quand la case est cochée */
#menu-toggle:checked ~ .overlay { display: block; }

/*────────────────────────── RESPONSIVE (logo & tagline plus petits) */
@media (max-width: 480px) {
  #logo-titre { width: 140px; margin-bottom: 0.4rem; }
  #titre h2  { font-size: .9rem; }
}
/* ===== SECTION OFFRES ===== */
.section-title {
  text-align: center;
  /* font-family: 'Playfair Display', serif; */
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 2.5rem;
  letter-spacing: .5px;
}

.offres {
  padding: 3.5rem 1.5rem;
}

/* grille responsive */
.offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* carte */
.offer-card {
  background: var(--black);
  border-left: 8px solid var(--red);           /* liseré rouge */
  border-radius: 12px;
  width: 290px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  transition: transform .3s;
}
.offer-card:hover { transform: translateY(-6px); }

/* image */
.offer-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

/* titres / texte */
.offer-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin: 1rem 1.2rem 0;
}

.offer-card .price {
  color: var(--gold);
  font-weight: 600;
  margin: .2rem 1.2rem 0;
}

.offer-card .desc {
  color: var(--white);
  font-size: .9rem;
  line-height: 1.5;
  margin: .6rem 1.2rem 1.4rem;
}

/* bouton */
.offer-card .btn {
  align-self: flex-start;
  margin: 0 1.2rem 1.6rem;
  padding: .55rem 1.4rem;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background .25s;
}
.offer-card .btn:hover { background: #b9962d; }

/* mobile : cartes pleine largeur */
@media (max-width: 500px) {
  .offer-card { width: 100%; }
}
/* ===== TITRE DE PAGE (“ACCUEIL”) ===== */
.page-heading {
  margin: 1.6rem 0 0;                       /* espace au-dessus */
  /* font-family: 'Playfair Display', serif;   ou ta police titre */
  font-size: clamp(1.9rem, 4vw, 2.5rem);    /* responsive */
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--black);
  text-transform: uppercase;
}
/*────────────────────────── CTA RÉALISATIONS */
.cta-realisations{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:3rem;
  padding:3.5rem 1.5rem;
}

.cta-text{

  flex:1 1 420px;
  max-width:600px;
  font-size:1.1rem;
  line-height:1.6;
}

/* ───────── bouton “Nos réalisations” harmonisé */
.btn-realisations{
  /* même liseré que les cartes */
  border-left: 8px solid var(--red);      /* rouge uniquement à gauche */
  border-radius: 12px;        /* même arrondi que .offer-card */
  background: var(--black);
  color: var(--white);

  padding: .85rem 2.4rem;
  font-weight: 600;
  letter-spacing: .4px;

  /* centrage parfait du texte */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* léger relief */
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
  transition: all .25s,transform .25s, box-shadow .25s;
  text-decoration: none;
}
.btn-realisations:hover{
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,.28);
    background:var(--red);
  border-radius: 5px;
}


/* mobile : texte au-dessus, bouton dessous */
@media(max-width:650px){
  .cta-realisations{ flex-direction:column; text-align:center; }
  .cta-action{ margin-top:1.6rem; }
}

/*────────────────────────── FOOTER */
.site-footer{
  background: var(--black);
  color: var(--white);
  padding: 2.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* icônes réseaux */
.social{
  display: flex;
  gap: 1.4rem;
}
.ico{
  width: 34px; height: 34px;
  display: block;
  background-size: 100% 100%;
  filter: invert(87%) sepia(53%) saturate(640%) hue-rotate(9deg) brightness(91%); /* passe l’icône en doré */
  transition: transform .25s;
}
.ico:hover{ transform: translateY(-4px); }

/* petites icônes en SVG inline-background (poids < 1 KB chacune) */
.insta{ background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ffffff" d="M224 202a54 54 0 100 108 54 54 0 000-108zm124-41a26 26 0 11-26-26 26 26 0 0126 26zm76 27c-1-35-9-66-32-89s-54-31-89-32c-35-2-141-2-176 0-35 1-66 9-89 32s-31 54-32 89c-2 35-2 141 0 176 1 35 9 66 32 89s54 31 89 32c35 2 141 2 176 0 35-1 66-9 89-32s31-54 32-89c2-35 2-141 0-176zM398 388a61 61 0 01-35 35c-24 9-80 7-139 7s-115 2-139-7a61 61 0 01-35-35c-9-24-7-80-7-139s-2-115 7-139a61 61 0 0135-35c24-9 80-7 139-7s115-2 139 7a61 61 0 0135 35c9 24 7 80 7 139s2 115-7 139z"/></svg>');}
.fb  { background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23ffffff" d="M279 288l14-92h-88v-60c0-25 12-50 52-50h40V6s-37-6-72-6c-73 0-121 44-121 124v70H79v92h65v224h100V288z"/></svg>');}
.in  { background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ffffff" d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.92 0 54.21a53.79 53.79 0 01107.58 0c0 29.71-24.08 53.89-53.79 53.89zM447.9 448h-92.68V302.4c0-34.7-12.38-58.4-43.36-58.4-23.62 0-37.6 15.86-43.76 31.18-2.24 5.46-2.8 13.07-2.8 20.73V448H173.1s1.24-246 0-271.1h92.66v38.4c-.18.29-.43.6-.61.89h.61v-.89c12.31-19 34.37-46.09 83.62-46.09 61.08 0 106.7 39.93 106.7 125.79z"/></svg>');}

/* mentions légales */
.legal{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:1rem 1.6rem;
  font-size:.85rem;
}
.legal a{
  color:var(--white);
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:border-color .25s;
}
.legal a:hover{ border-color:var(--gold); }

/* mobile : centre tout */
@media(max-width:500px){
  .legal{ justify-content:center; text-align:center; }
}
footer {
  margin-bottom: 0;
}
/*────────────── PAGE CONTACT */
.contact-page{
  padding:3rem 1.5rem 5rem;
  max-width:900px;
  margin:0 auto;
}

.contact-form{
  display:grid;
  grid-template-columns:60px 1fr;
  grid-template-rows:auto auto auto;
  gap:1.5rem 2rem;
}

/* rond doré */
.contact-dot{
  grid-row:1/2;
  grid-column:1/2;
  width:46px; height:46px;
  border-radius:50%;
  background:var(--gold);
  align-self:center;
  justify-self:center;
}

/* inputs */
.contact-form input[type="text"],
.contact-form textarea{
  width:100%;
  background:#eee;
  border:2px solid var(--black);
  padding:.9rem 1rem;
  font-size:1rem;
  font-family:inherit;
  border-radius:4px;
}
.textarea-wrap{ grid-column:2/3; }
.contact-form textarea{ min-height:160px; resize:vertical; }

/* RGPD */
.rgpd{
  grid-column:2/3;
  display:flex;
  align-items:center;
  gap:.8rem;
  font-size:.85rem;
}

/* bouton envoyer : même style que tes CTA noirs */
.btn-send{
  grid-column:2/3;
  padding:.9rem 2.2rem;
  background:var(--black);
  color:var(--white);
  border-left:8px solid var(--red);
  border-radius:12px;
  font-weight:600;
  letter-spacing:.4px;
  cursor:pointer;
  transition:all .25s, transform .25s, box-shadow .25s;
}
.btn-send:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 14px rgba(0,0,0,.28);
    background:var(--red);
  border-radius: 5px;
}

/* mobile */
@media(max-width:600px){
  .contact-form{
    grid-template-columns:1fr;
    grid-template-rows:auto auto auto auto;
  }
  .contact-dot{ display:none; }
  .btn-send{ justify-self:center; }
}
/* ===== HEADER COMPACT — pages internes ===== */
#header.compact{
  display:flex;
  align-items:center;
  gap:1rem;
  padding:1.2rem 2rem;
}

#header.compact #logo-titre{
  width:120px;
  flex-shrink:0;
}

#header.compact .brand-name{
  margin:0;
  font-size:1.6rem;
  font-weight:700;
  color:var(--gold);
}

#header.compact .tagline{
  margin:.25rem 0 0;
  font-size:1rem;
  font-weight:500;
}

#header.compact .agency-tag{
  margin:.15rem 0 0;
  font-size:.9rem;
  font-weight:400;
  text-transform:uppercase;
  letter-spacing:.4px;
}
/* ===== SECTION CLIENTS ===== */
.clients{
  padding:3rem 1.5rem 5rem;
  text-align:center;
}

/* switch */
.toggle{
  position:relative; display:inline-block;
  width:60px; height:28px; margin:0 0 2rem;
}
.toggle input{opacity:0;width:0;height:0;}
.slider{
  position:absolute; inset:0;
  background:#222; border-radius:34px;
  cursor:pointer; transition:.3s;
}
.slider::before{
  content:""; position:absolute; left:4px; top:4px;
  width:20px; height:20px; border-radius:50%;
  background:var(--gold); transition:.3s;
}
input:checked + .slider::before{ transform:translateX(30px); }

/* ligne d’icônes */
.icon-row{
  display:flex; gap:1rem; justify-content:center; flex-wrap:wrap;
  margin-bottom:2.5rem;
}
.icon-row img{
  width:46px; height:46px; border-radius:50%;
  cursor:pointer; filter:grayscale(1); opacity:.6; transition:.25s;
}
.icon-row img.active,
.icon-row img:hover{ filter:none; opacity:1; transform:scale(1.1); }

/* carte centrale */
.client-card{
  display:inline-flex; flex-direction:column; align-items:center;
  border-left:8px solid var(--red);
  border-radius:12px;
  background:var(--black); color:var(--white);
  padding:2rem 2.5rem; max-width:340px;
}
.client-card img{
  width:100px; height:100px; border-radius:50%; object-fit:cover;
  margin-bottom:1.2rem;
}
.client-card h3{ margin:.2rem 0 .6rem; font-size:1.25rem; }
.client-card p{ font-size:.95rem; line-height:1.5; }

/* masque le texte si switch off */
body:not(.show-client-text) #clientText{ display:none; }


/*────────────────── PAGE NOS OFFRES : conteneur général */
/*────────────────── CONTAINER PAGE OFFRES */
.offers-page{
  padding:4rem 2rem 6rem;
  max-width:1000px;
  margin:0 auto;
}

/*────────────────── BLOC INDIVIDUEL */
.offer-block{
  color: var(--white);
  background: var(--black);
  border-left:8px solid var(--red); 
  display:flex;
  gap:2.2rem;
  align-items:flex-start;
  margin-bottom:3rem;
  border-radius: 5px 0 0 5px;
}

.offer-block:hover .phone::after {
  background: rgba(0,0,0,0);
}

/* visuel : rectangle noir + liseré rouge */
.phone{
     /* liseré uniquement ici */
  border-radius:12px;
  padding:18px 16px;
}
.phone img{ width:200px; display:block; border-radius: 12px; ; }
.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.14);
  pointer-events: none;
  border-radius: inherit;
  transition: all 0.25s;
}

/* zone texte */
.offer-text{ flex:1; display:flex; flex-direction:column; }

/* paragraphes */
.offer-text p{
  margin:0;
  font-size:1.05rem;
  line-height:1.6;
}
.offer-text p strong{
  display:block;
  margin-bottom:1rem;
  font-size:1.2rem;
  color:var(--gold);
}

/* bouton CTA */
.btn-offer{
  align-self:flex-start;
  margin: 1.4rem;
  padding:.75rem 1rem;
  background:var(--black);
  color: var(--white);
  border-left:8px solid var(--red);
  border-radius: 5px 0 0 5px;
  font-weight:600;
  text-decoration:none;
  transition: all .25s, transform .25s, box-shadow .25s;
}
.btn-offer:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 14px rgba(0,0,0,.28);
  background:var(--red);
  color: var(--white);
    border-radius: 5px;

}
/* ruban discret coin-haut gauche du bloc */
.ribbon{
  position:absolute;                 /* se place par dessus .offer-block */
  top:0; left:0;                     /* coin haut gauche */
  transform:translate(-5%, -40%) rotate(0deg);
  background:var(--red);
  color:var(--white);
  padding:.25rem .8rem;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.4px;
  pointer-events:none;               /* pas cliquable */

  box-shadow:0 3px 8px rgba(0,0,0,.25);
}

/* pour que .offer-block devienne le référent du position:absolute */
.offer-block{ position:relative; }



/*──────── mobile : pile image puis texte */
@media(max-width:900px){
  .offer-block{ flex-direction:column; text-align:center; }
  .phone{ margin:0 auto 1.6rem; }
  .btn-offer{ align-self:center; }
}

.realisations{
  padding:4rem 1rem 6rem;          /* + padding sur les côtés */
  max-width:1300px;                /* un peu plus large */
  margin:0 auto;
  display:grid;
  gap:3rem;
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  justify-items:center;
}

.realisations iframe{
  width:100%;          /* colonne prend toute la largeur dispo */
  max-width:500px;     /* limite haute pour grands écrans     */
  height:350px;

  background:#0f0f0f;
  border:none;
  border-left:8px solid var(--red);
  border-radius:12px;
  box-shadow:0 6px 16px rgba(0,0,0,.35);

  /* masque tout éventuel scrollbar restant */
  overflow:hidden;
}
/*────────────── Bloc AVIS (placeholder) */
.avis-soon{
  padding: 4rem 1.5rem 6rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.avis-title{
  /* font-family: 'Playfair Display', serif; */
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 3rem;
}

.avis-card{
  background: #0f0f0f;           /* fond noir */
  color: var(--white);
  border-left: 8px solid var(--red);/* liseré rouge */
  border-radius: 12px;
  padding: 3rem 2rem;
  font-size: 1.15rem;
  line-height: 1.6;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}