:root{
  --bg:#0b0f19;
  --card:rgba(255,255,255,.06);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --line:rgba(255,255,255,.14);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
  --max: 1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(120,120,255,.22), transparent 55%),
    radial-gradient(1200px 600px at 90% 10%, rgba(0,220,200,.14), transparent 50%),
    var(--bg);
  color: var(--text);
}

a{color:inherit; text-decoration:none}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(11,15,25,.62);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.brand{display:flex; gap:10px; align-items:center; font-weight:700}
.brand__dot{
  width:12px; height:12px; border-radius:99px;
  background: linear-gradient(135deg, rgba(0,220,200,1), rgba(120,120,255,1));
  box-shadow: 0 0 0 6px rgba(255,255,255,.04);
}

.menu{display:flex; gap:18px; align-items:center}
.menu a{opacity:.9}
.menu a:hover{opacity:1}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-weight: 650;
}
.btn:hover{background: rgba(255,255,255,.14)}
.btn--ghost{background: transparent}
.btn--sm{padding: 10px 14px; font-size: .95rem}

/* BURGER */
.burger{
  display:none;
  width:44px; height:40px;
  background: transparent; border:1px solid rgba(255,255,255,.16);
  border-radius: 999px;
}
.burger span{display:block; height:2px; margin:6px 10px; background: rgba(255,255,255,.82)}
.mobile{
  display:none;
  border-top: 1px solid var(--line);
  padding: 10px 0 14px;
}
.mobile a{display:block; padding: 10px 0; opacity:.92}

/* HERO */
.hero{
  position:relative;
  min-height: 72vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom: 1px solid var(--line);
}

/* Layer 1: blurred fill background (full width) */
.hero__bg{
  position:absolute;
  inset:0;
  z-index:0;

  background:
    linear-gradient(to bottom, rgba(11,15,25,.55), rgba(11,15,25,.92)),
    url("dj.png") no-repeat center;

  background-size: cover;
  filter: blur(16px) saturate(1.1);
  transform: scale(1.10);
  opacity: .85;
}

/* Content is above everything */
.hero__content{
  position:relative;
  z-index:1;
  padding: 70px 0;
}

/* Layer 2: the "full image", kept inside a wide rectangle behind text */
.hero__content::before{
  content:"";
  position:absolute;

  /* This creates a wide rectangle behind your text */
  left: -60px;
  right: -60px;
  top: -40px;
  bottom: -40px;

  z-index:-1;
  pointer-events:none;

  background:
    linear-gradient(to bottom, rgba(11,15,25,.25), rgba(11,15,25,.70)),
    url("dj.png") no-repeat center 35%;

  /* ✅ show the image fully */
  background-size: contain;

  /* ✅ avoid the “square poster” feeling */
  background-color: rgba(11,15,25,.10);
  border-radius: 28px;
}

/* Hero text */
.pill{
  display:inline-flex; align-items:center;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  margin:0 0 16px;
}

h1{
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  line-height: 1.05;
  margin: 0 0 14px;
}

.lead{
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0 0 22px;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap}

/* Stats */
.stats{
  margin-top: 28px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.stat{
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
}
.stat__n{display:block; font-weight:720}
.stat__t{display:block; color: var(--muted); font-size:.95rem; margin-top:4px}

/* SECTIONS */
.section{padding: 72px 0}
.section__head{margin-bottom: 18px}
.section__head h2{margin:0 0 8px; font-size: clamp(1.6rem, 2.6vw, 2.1rem)}
.section__head p{margin:0; color: var(--muted); max-width:70ch}

/* GRID / CARDS */
.grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.grid--2{grid-template-columns: repeat(2, minmax(0,1fr))}

.card{
  position:relative;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card--featured{
  background: linear-gradient(180deg, rgba(120,120,255,.16), rgba(255,255,255,.06));
  border-color: rgba(120,120,255,.30);
}
.badge{
  position:absolute; top:16px; right:16px;
  font-size:.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
}
.card__icon{font-size: 1.5rem}
.card h3{margin: 10px 0}
.list{margin: 0; padding-left: 18px; color: var(--muted); line-height:1.7}
.card__actions{margin-top: 12px}
.link{opacity:.92; font-weight:650}
.link:hover{opacity:1; text-decoration: underline}

.note{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
}

.panel{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius2);
  padding: 18px;
}

.steps{margin-top: 20px; display:grid; gap: 12px}
.step{
  display:flex; gap: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius2);
  padding: 16px 18px;
}
.step__n{
  width: 34px; height: 34px; border-radius: 12px;
  display:grid; place-items:center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.12);
  font-weight: 800;
}
.step p{margin:0; color: var(--muted); line-height:1.6}

.contact{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
.contact__left, .contact__right{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius2);
  padding: 20px;
  box-shadow: var(--shadow);
}
.contact__cards{
  margin: 16px 0;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.mini{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 14px;
}
.mini p{margin:0 0 10px; color: var(--muted)}

.social{margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap}
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.12);
  opacity:.92;
}
.chip:hover{opacity:1}

.quote{background: rgba(0,0,0,.10); border-radius: 18px; padding: 14px; border:1px solid rgba(255,255,255,.10)}
.footer{
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  color: rgba(255,255,255,.75);
}

@media (max-width: 920px){
  .grid{grid-template-columns: 1fr}
  .grid--2{grid-template-columns: 1fr}
  .stats{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .menu{display:none}
  .burger{display:block}

  /* On mobile, reduce the full-image rectangle */
  .hero__content::before{
    left: -16px;
    right: -16px;
    top: -10px;
    bottom: -10px;
    background-position: center 25%;
  }
}
/* --- Google Reviews card --- */
.review-card{
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.review-stars{
  font-size: 1.2rem;
  letter-spacing: 3px;
  opacity: .95;
}

.review-small{
  color: var(--muted);
  font-size: .9rem;
}

.review-title{
  margin: 0;
}

.review-text{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-hint{
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
}

.contact__right{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.right-block{
  padding: 6px 2px;           /* pas de cadre, juste de l’air */
}

.review-card{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 14px;
}
/* ====== CONTACT – ALIGNEMENT CENTRÉ ====== */

/* Centre tout le contenu des cartes Contact */
.contact__left,
.contact__right {
  text-align: center;
}

/* Centre les sous-cartes Devis / Rendez-vous */
.contact__left > .panel,
.contact__left > .card {
  text-align: center;
}

/* Centre les boutons */
.contact__left .btn,
.contact__right .btn {
  margin-left: auto;
  margin-right: auto;
}

/* Centre les infos contact (tel, mail, zone) */
.contact__left p,
.contact__left a {
  justify-content: center;
}

/* Centre les réseaux sociaux */
.social {
  justify-content: center;
}

/* Centre la liste Exemples d’événements */
.contact__right ul {
  list-style-position: inside;
  padding-left: 0;
}

/* Avis Google – centre tout */
.review-card {
  text-align: center;
}

.review-top {
  justify-content: center;
}

.review-hint {
  text-align: center;
}
