*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Segoe UI, sans-serif;
  background:#000;
  color:#fff;
}

/* ===== HERO ===== */
.hero{
  height:100vh;
  position:relative;
  overflow:hidden;
}

.slider,.slide{
  position:absolute;
  inset:0;
}

.slide{
  width:100%;
  height:100%;
  object-fit:contain;
  opacity:0;
  transition:opacity 1.2s ease;
  background:#000;
}

.slide.active{opacity:1;}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.logo{
  width:120px;
  margin-bottom:15px;
}

/* 🔧 TITRE PRINCIPAL — CORRIGÉ */
.overlay h1{
  color:#fff;              /* blanc */
  font-size:2.3rem;        /* réduit */
  font-weight:800;         /* bien gras */
  max-width:70%;           /* ne dépasse plus la photo */
  margin:0 auto;
  line-height:1.25;
}

/* ===== BOUTONS ===== */
.buttons{
  margin-top:25px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  padding:14px 26px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

/* 🔧 RÉSERVER UNE SÉANCE — JAUNE + MOUVEMENT */
.btn.gold{
  background:#f5c36a;
  color:#000;
  box-shadow:0 8px 20px rgba(245,195,106,.4);
}

.btn.gold:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(245,195,106,.6);
}

/* 🔧 WHATSAPP — STYLE IDENTIQUE + MOUVEMENT */
.btn.dark{
  border:2px solid #fff;
  color:#fff;
}

.btn.dark:hover{
  transform:translateY(-4px);
  background:#fff;
  color:#000;
}

/* ===== SECTIONS ===== */
.gallery-section{
  padding:80px 6%;
  text-align:center;
}

.tagline{
  margin-bottom:40px;
  opacity:.85;
}

/* ===== GALERIES ===== */
.gallery{
  display:grid;
  gap:25px;
}

/* 🔒 MARIAGE / PORTRAIT / EVENEMENTS */
.portrait-grid{
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
}

.portrait-grid img{
  width:100%;
  height:380px;
  object-fit:cover;
  object-position:center top;
  border-radius:16px;
  box-shadow:0 15px 35px rgba(0,0,0,.7);
  transition:.4s;
}

.portrait-grid img:hover{
  transform:scale(1.05);
}

/* 🎂 ANNIVERSAIRES */
.anniversary-grid{
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
}

.anniversary-grid img{
  width:100%;
  height:320px;
  object-fit:contain;
  background:#000;
  padding:8px;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.6);
}

/* ===== FORM ===== */
.section{
  padding:80px 6%;
  text-align:center;
}

form{
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

input,select,textarea{
  padding:14px;
  border-radius:10px;
  border:none;
}

/* ===== FOOTER ===== */
footer{
  padding:40px;
  text-align:center;
}

.logo-footer{
  width:80px;
  margin-bottom:10px;
}


/* ❌ CACHER LE LOGO DANS LA PAGE D’ACCUEIL */
.hero .logo{
  display:none;
}




/* ===== MENU HAMBURGER ===== */
.menu-toggle{
  position:fixed;
  top:20px;
  left:20px;
  font-size:28px;
  color:#fff;
  cursor:pointer;
  z-index:2000;
  user-select:none;
  transition:transform .3s;
}

.menu-toggle:hover{
  transform:scale(1.1);
}

.side-menu{
  position:fixed;
  top:0;
  left:-280px;
  width:260px;
  height:100vh;
  background:#0e0e0e;
  padding:80px 20px;
  z-index:1999;
  transition:left .35s ease;
  box-shadow:5px 0 30px rgba(0,0,0,.6);
}

.side-menu.open{
  left:0;
}

.side-menu ul{
  list-style:none;
}

.side-menu li{
  margin-bottom:18px;
}

.side-menu a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
  font-weight:500;
  opacity:.9;
  transition:.3s;
}

.side-menu a:hover{
  color:#f5c36a;
  padding-left:6px;
}

.side-menu .divider{
  height:1px;
  background:rgba(255,255,255,.15);
  margin:20px 0;
}

/* overlay */
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  z-index:1500;
  transition:.3s;
}

.menu-overlay.active{
  opacity:1;
  pointer-events:auto;
}


.text-section{
  max-width:900px;
  margin:auto;
  line-height:1.8;
}

.text-section p{
  margin-bottom:18px;
  opacity:.9;
}