/* ============================================================
   CRÉMATORIUM — Feuille de style principale
   Police : Cormorant Garamond (titres) + DM Sans (corps)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:      #1C2B3A;
  --navy-dark: #111E2B;
  --gold:      #B8964E;
  --gold-lt:   #D4AD6A;
  --cream:     #F5F0E8;
  --cream-dk:  #EDE6D8;
  --text:      #2C3E50;
  --text-lt:   #5D6D7E;
  --white:     #FFFFFF;
  --success:   #27AE60;
  --warning:   #E67E22;
  --danger:    #C0392B;
  --info:      #2980B9;
  --border:    #D8CFC4;
  --shadow:    0 4px 24px rgba(28,43,58,.12);
  --shadow-lg: 0 12px 48px rgba(28,43,58,.18);
  --radius:    6px;
  --radius-lg: 12px;
  --trans:     all .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHIE ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }
a  { color: var(--gold); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--gold-lt); }

.serif { font-family: 'Cormorant Garamond', serif; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── NAVIGATION ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 500;
  color: var(--cream); letter-spacing: .02em;
}
.nav-logo svg { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .875rem; font-weight: 500;
  color: rgba(245,240,232,.75);
  letter-spacing: .04em; text-transform: uppercase;
  transition: var(--trans);
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links .btn-nav {
  background: var(--gold); color: var(--navy-dark) !important;
  padding: .5rem 1.25rem; border-radius: var(--radius);
  font-weight: 600;
}
.nav-links .btn-nav:hover { background: var(--gold-lt); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--cream); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #263949 60%, #1a3040 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-divider {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-tag {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(184,150,78,.4);
  padding: .4rem 1rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--cream); margin-bottom: 1.25rem; font-weight: 300; }
.hero h1 strong { font-weight: 600; color: var(--gold-lt); }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(245,240,232,.7);
  margin-bottom: 2.5rem; max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BOUTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--trans); text-decoration: none;
}
.btn-primary {
  background: var(--gold); color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: var(--navy-dark); }
.btn-outline {
  background: transparent; color: var(--cream);
  border-color: rgba(245,240,232,.4);
}
.btn-outline:hover { background: rgba(245,240,232,.1); border-color: var(--cream); color: var(--cream); }
.btn-navy {
  background: var(--navy); color: var(--cream);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-dark); }
.btn-sm { padding: .5rem 1.1rem; font-size: .825rem; }
.btn-lg { padding: .95rem 2.25rem; font-size: 1rem; }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-success { background: var(--success); color: #fff; border-color: var(--success); }

/* ── BANDE INFOS ── */
.info-band {
  background: var(--navy);
  padding: 2.5rem 0;
}
.info-band-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.info-card {
  display: flex; align-items: flex-start; gap: 1rem;
}
.info-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(184,150,78,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.info-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .25rem;
}
.info-card p { color: var(--cream); font-size: .9rem; margin: 0; }

/* ── SECTIONS ── */
.section-label {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
  display: block;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--text-lt); max-width: 650px; margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto 3rem; }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 1.5rem;
}
.service-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border);
  transition: var(--trans);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: rgba(28,43,58,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--navy);
}
.service-card h3 { font-size: 1.3rem; margin-bottom: .75rem; }
.service-card p { color: var(--text-lt); font-size: .9rem; margin: 0; }

/* ── TARIFS ── */
.tarifs-section { background: var(--cream); }
.tarifs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.tarif-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.tarif-header {
  background: var(--navy); color: var(--cream);
  padding: 1.25rem 1.5rem;
}
.tarif-header h3 {
  color: var(--cream); font-size: 1.2rem; margin-bottom: .25rem;
}
.tarif-subtitle { color: rgba(245,240,232,.6); font-size: .8rem; }
.tarif-body { padding: 1.5rem; }
.tarif-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.tarif-row:last-child { border-bottom: none; }
.tarif-price {
  font-weight: 600; color: var(--navy);
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
}
.tarif-note {
  background: rgba(184,150,78,.08); border-left: 3px solid var(--gold);
  padding: .75rem 1rem; margin-top: 1rem; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .8rem; color: var(--text-lt);
}

/* ── HORAIRES ── */
.horaires-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.horaires-table { width: 100%; border-collapse: collapse; }
.horaires-table tr { border-bottom: 1px solid var(--border); }
.horaires-table td { padding: .75rem 0; font-size: .9rem; }
.horaires-table td:first-child { font-weight: 500; color: var(--navy); }
.horaires-table td:last-child { text-align: right; color: var(--text-lt); }
.horaires-table tr.closed td { color: var(--text-lt); }
.badge {
  display: inline-block; padding: .2rem .7rem;
  border-radius: 100px; font-size: .75rem; font-weight: 600;
}
.badge-open { background: rgba(39,174,96,.12); color: var(--success); }
.badge-closed { background: rgba(192,57,43,.1); color: var(--danger); }

/* ── CARTE ── */
.map-embed { width: 100%; height: 380px; border-radius: var(--radius-lg); border: none; }
.contact-card {
  background: var(--navy); color: var(--cream);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.contact-card h3 { color: var(--cream); margin-bottom: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.25rem; font-size: .9rem;
}
.contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.contact-item p { margin: 0; color: rgba(245,240,232,.8); }
.contact-item a { color: var(--gold-lt); }

/* ── ESPACE PRO ── */
.pro-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3347 100%);
  padding: 5rem 0;
}
.pro-inner {
  display: flex; gap: 4rem; align-items: center;
}
.pro-text { flex: 1; }
.pro-text h2, .pro-text h3 { color: var(--cream); }
.pro-text p { color: rgba(245,240,232,.7); }
.pro-features { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .75rem; }
.pro-feat {
  display: flex; align-items: center; gap: .75rem;
  color: rgba(245,240,232,.85); font-size: .9rem;
}
.pro-feat svg { color: var(--gold); flex-shrink: 0; }
.pro-card {
  flex: 0 0 340px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(184,150,78,.25);
  border-radius: var(--radius-lg); padding: 2rem;
  backdrop-filter: blur(10px);
}

.creneau-item.termine {
    background: rgba(93,109,126,.05);
    border-color: rgba(93,109,126,.2);
}

.status-termine { color: var(--text-lt); }

/* ── FORMULAIRE DE CONNEXION ── */
.login-page {
  min-height: 100vh; display: flex;
  background: var(--navy-dark);
}
.login-left {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 4rem;
  background: linear-gradient(160deg, var(--navy-dark) 0%, #1E3347 100%);
}
.login-right {
  flex: 0 0 480px; background: var(--white);
  display: flex; flex-direction: column;
  justify-content: center; padding: 4rem 3.5rem;
}
.login-logo {
  display: flex; align-items: center; gap: .75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--cream);
  margin-bottom: 3rem;
}
.login-left h1 { color: var(--cream); font-size: 2.5rem; margin-bottom: 1rem; }
.login-left p { color: rgba(245,240,232,.6); max-width: 420px; }
.login-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.login-feat { display: flex; align-items: center; gap: .75rem; color: rgba(245,240,232,.8); }
.login-feat svg { color: var(--gold); }

/* ── FORMULAIRES ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .825rem; font-weight: 600;
  color: var(--text); margin-bottom: .4rem;
  letter-spacing: .02em;
}
.form-control {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  color: var(--text); background: var(--white);
  transition: var(--trans);
}
.form-control:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,43,58,.08);
}
.form-control.error { border-color: var(--danger); }
.form-error { color: var(--danger); font-size: .8rem; margin-top: .3rem; }

/* ── TABLEAU DE BORD ── */
.dashboard { display: flex; min-height: 100vh; }
.sidebar {
  width: 260px; background: var(--navy-dark); flex-shrink: 0;
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.sidebar-logo {
  padding: 1.5rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--cream);
  display: flex; align-items: center; gap: .75rem;
}
.sidebar-logo svg { color: var(--gold); }
.sidebar-section { padding: 1.25rem 0; }
.sidebar-label {
  padding: .5rem 1.25rem;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,240,232,.3);
}
.sidebar-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem 1.25rem;
  color: rgba(245,240,232,.6); font-size: .875rem;
  transition: var(--trans); cursor: pointer;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.sidebar-link:hover { color: var(--cream); background: rgba(255,255,255,.05); }
.sidebar-link.active {
  color: var(--gold); background: rgba(184,150,78,.1);
  border-left-color: var(--gold);
}
.sidebar-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar-footer {
  margin-top: auto; padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sidebar-user {
  display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem;
}
.user-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(184,150,78,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; font-size: .85rem;
}
.user-info h5 { color: var(--cream); font-size: .85rem; margin: 0; font-family: 'DM Sans',sans-serif; font-weight: 500; }
.user-info span { color: rgba(245,240,232,.4); font-size: .75rem; }

.main-content { flex: 1; background: #F8F9FA; overflow: hidden; }
.top-bar {
  background: var(--white); padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.top-bar h1 { font-size: 1.4rem; margin: 0; }
.page-body { padding: 2rem; }

/* ── STATS ── */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; margin-bottom: 2rem;
}
.stat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stat-card h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-lt); margin-bottom: .5rem;
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600;
  color: var(--navy); line-height: 1;
}
.stat-sub { font-size: .8rem; color: var(--text-lt); margin-top: .25rem; }

/* ── PLANNING CALENDRIER ── */
.calendar-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--border);
  overflow: hidden;
}
.calendar-header {
  background: var(--navy); color: var(--cream);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.calendar-header h3 { color: var(--cream); margin: 0; font-size: 1.2rem; }
.cal-nav { display: flex; gap: .5rem; }
.cal-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(245,240,232,.25);
  background: transparent; color: var(--cream);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.cal-btn:hover { background: rgba(255,255,255,.12); }

.calendar-grid { padding: 1.25rem; }
.cal-days-header {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center; margin-bottom: .5rem;
}
.cal-day-name {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-lt);
  padding: .5rem 0;
}
.cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-radius: var(--radius);
  cursor: pointer; transition: var(--trans); position: relative;
  font-size: .875rem;
}
.cal-day:hover:not(.disabled):not(.other-month) { background: var(--cream); }
.cal-day.today { background: rgba(184,150,78,.12); font-weight: 700; color: var(--gold); }
.cal-day.selected { background: var(--navy); color: var(--white); }
.cal-day.has-res::after {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--success); position: absolute; bottom: 4px;
}
.cal-day.full::after { background: var(--danger); }
.cal-day.other-month { color: var(--border); cursor: default; }
.cal-day.disabled { background: rgba(192,57,43,.06); color: var(--danger); cursor: not-allowed; }

/* ── CRÉNEAUX ── */
.creneaux-section {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--border);
  overflow: hidden;
}
.creneaux-header {
  background: var(--cream); padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.creneaux-header h4 { margin: 0; font-size: 1rem; }
.creneaux-list { padding: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.creneau-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-radius: var(--radius);
  border: 1.5px solid var(--border); transition: var(--trans);
}
.creneau-item:hover { border-color: var(--gold); background: rgba(184,150,78,.04); }
.creneau-item.pris {
  background: rgba(192,57,43,.05);
  border-color: rgba(192,57,43,.2);
}
.creneau-item.confirme {
  background: rgba(39,174,96,.05);
  border-color: rgba(39,174,96,.2);
}
.creneau-time { font-weight: 700; color: var(--navy); font-size: .95rem; }
.creneau-status { font-size: .8rem; font-weight: 600; }
.status-libre { color: var(--success); }
.status-pris  { color: var(--danger); }
.status-confirm { color: var(--info); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--trans);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 560px; max-height: 90vh;
  overflow-y: auto; box-shadow: var(--shadow-lg);
  transform: translateY(20px); transition: var(--trans);
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-header {
  padding: 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { margin: 0; font-size: 1.2rem; }
.modal-close {
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: var(--cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); color: var(--text-lt);
}
.modal-close:hover { background: var(--border); }
.modal-body { padding: 1.5rem; }
.modal-footer {
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--border);
  display: flex; gap: .75rem; justify-content: flex-end;
}

/* ── ALERTES ── */
.alert {
  padding: .875rem 1.25rem; border-radius: var(--radius);
  font-size: .875rem; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.alert-success { background: rgba(39,174,96,.1); color: #196f3d; border: 1px solid rgba(39,174,96,.25); }
.alert-danger   { background: rgba(192,57,43,.1); color: var(--danger); border: 1px solid rgba(192,57,43,.25); }
.alert-info     { background: rgba(41,128,185,.1); color: #1a5276; border: 1px solid rgba(41,128,185,.25); }
.alert-warning  { background: rgba(230,126,34,.1); color: #935116; border: 1px solid rgba(230,126,34,.25); }

/* ── TABLE ── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--navy); color: var(--cream);
  padding: .875rem 1rem; text-align: left;
  font-size: .775rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
}
.data-table td {
  padding: .875rem 1rem; border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.data-table tr:hover td { background: var(--cream); }
.table-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--border);
  overflow: hidden;
}
.table-header {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.table-header h3 { margin: 0; font-size: 1.1rem; }

/* ── STATUT BADGES ── */
.badge-statut {
  display: inline-block; padding: .25rem .75rem;
  border-radius: 100px; font-size: .75rem; font-weight: 600;
}
.statut-en_attente { background: rgba(230,126,34,.12); color: #935116; }
.statut-confirme   { background: rgba(39,174,96,.12);  color: #196f3d; }
.statut-annule     { background: rgba(192,57,43,.12);  color: var(--danger); }
.statut-termine    { background: rgba(93,109,126,.12); color: var(--text-lt); }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark); color: rgba(245,240,232,.6);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--cream);
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
}
.footer-logo svg { color: var(--gold); }
footer p { font-size: .875rem; line-height: 1.7; }
footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); margin-bottom: 1rem;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
footer ul a { color: rgba(245,240,232,.6); font-size: .875rem; }
footer ul a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem; text-align: center;
  font-size: .8rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pro-inner { flex-direction: column; }
  .pro-card { flex: none; width: 100%; max-width: 400px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy-dark); padding: 1rem 1.5rem;
    gap: 1rem; z-index: 999;
  }
  .hero { min-height: 70vh; }
  .horaires-grid { grid-template-columns: 1fr; }
  .dashboard { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: static; }
  .login-page { flex-direction: column; }
  .login-left { padding: 2rem; flex: none; }
  .login-right { flex: none; padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tarifs-grid { grid-template-columns: 1fr; }
}
