/* —— Base —— */
* { box-sizing: border-box; }
:root {
  --bg: #0f172a;
  --text: #0b1324;
  --muted: #6b7280;
  --primary: #1769ff;
  --accent: #22c55e;
  --card: #ffffff;
  --light: #f5f7fb;
}
html, body { margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }

/* —— Header —— */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}
.nav { display: flex; align-items: center; gap: 24px; padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .5px; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
nav { margin-left: auto; display: flex; gap: 22px; font-weight: 600; }
nav a { opacity: .8; }
nav a:hover { opacity: 1; }
.cta { background: var(--primary); color: white; padding: 10px 16px; border-radius: 10px; font-weight: 700; }

/* —— Hero —— */
.bg-cover { background-position: center; background-size: cover; background-repeat: no-repeat; }
.bg-1 { background-image: url('assets/background1.jpeg'); }
.bg-2 { background-image: url('assets/background2.jpeg'); }
.bg-3 { background-image: url('assets/background3.jpeg'); }
.bg-4 { background-image: url('assets/background4.jpeg'); }
.bg-5 { background-image: url('assets/background5.jpeg'); }

.hero { min-height: 78vh; display: grid; place-items: stretch; }
.hero .overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
  width: 100%; height: 100%;
}
.hero .container { display: grid; place-content: center; min-height: 78vh; text-align: center; color: white; }
.hero h1 { font-size: clamp(28px, 5vw, 52px); margin: 0 0 10px; }
.hero p { font-weight: 500; opacity: .95; margin: 0 0 24px; }
.accent { color: var(--accent); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-block; padding: 12px 18px; border-radius: 12px; font-weight: 700; border: 2px solid transparent; }
.btn.primary { background: var(--accent); color: #053; }
.btn.ghost { border-color: #fff; color: #fff; background: transparent; }

/* —— Sections —— */
.section { padding: 72px 0; }
.section.light { background: var(--light); }
.section-title { font-size: clamp(24px, 3.6vw, 36px); margin: 0 0 6px; }
.section-subtitle { margin: 0 0 24px; color: var(--muted); }

/* —— Services grid —— */
.grid.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.04);
}
.card h3 { margin: 4px 0 10px; }
.card p { margin: 0; color: #374151; }

/* —— Band —— */
.band { min-height: 36vh; display: grid; place-items: center; }
.band .overlay { width: 100%; height: 100%; background: rgba(0,0,0,.45); display: grid; place-items: center; }
.band .overlay.tight { background: rgba(0,0,0,.35); }
.quote { color: white; font-size: clamp(18px, 3.2vw, 28px); font-weight: 600; text-align: center; }

/* —— À propos —— */
.about { display: grid; grid-template-columns: 1.25fr 1fr; gap: 26px; align-items: center; }
.media { border-radius: 16px; min-height: 320px; box-shadow: 0 10px 30px rgba(2,6,23,.15); border: 1px solid #e5e7eb; }
.ticks { list-style: none; padding: 0; margin: 14px 0 22px; }
.ticks li { margin: 6px 0; padding-left: 26px; position: relative; }
.ticks li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 900; }

/* —— Galerie —— */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tile { aspect-ratio: 4/3; border-radius: 14px; border: 1px solid #e5e7eb; box-shadow: 0 6px 20px rgba(2, 6, 23, 0.06); }

/* —— Form —— */
.form { display: grid; gap: 14px; }
.form .row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 6px; font-weight: 600; }
input, textarea, select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font: inherit; outline: none; background: white;
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(23,105,255,.15); }
.tiny { font-size: 12px; color: var(--muted); }

/* —— Footer —— */
.footer { background: #0b1324; color: #d1d5db; padding: 36px 0; text-align: center; }
.footer .tiny { color: #9ca3af; }

/* —— Responsive —— */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  nav { display: none; }
  .form .row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}
/* base */ .section{padding:20px}

/* â€”â€” Avant / AprÃ¨s â€”â€” */
.ba-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.ba-pair { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 16px; box-shadow: 0 6px 18px rgba(2,6,23,.05); }
.ba-pair figcaption { font-weight: 800; margin: 0 0 10px; }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ba { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid #e5e7eb; }
.ba img { width: 100%; height: 100%; object-fit: cover; display: block; }
.badge { position: absolute; top: 10px; left: 10px; background: #111827; color: white; font-size: 12px; font-weight: 800; padding: 6px 10px; border-radius: 999px; letter-spacing: .3px; }
.badge.success { background: #047857; }

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




  /* --- Simple Avant / Après Gallery --- */
.ba-grid {
    display: grid;
    gap: 40px;
  }

  .ba-pair {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .ba-pair figcaption {
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    font-size: 1.1rem;
  }

  .ba-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ba-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .ba-two img:hover {
    transform: scale(1.02);
  }

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

  .subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #d1fae5;
  }
