* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: #0a0a0a;
  color: #f0f0f0;
}

a {
  text-decoration: none;
}


@keyframes bgshift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}


.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
  background: rgba(8, 8, 8, 0.95);
  border-bottom: 0.5px solid #1e1e1e;
  position: relative;
  z-index: 10;
}

.logo {
  font-size: 15px;
  font-weight: 500;
  color: #f0f0f0;
  letter-spacing: 5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 12px;
  color: #555;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #c9a84c;
}

.nav-btns {
  display: flex;
  gap: 8px;
}

.btn-outline {
  padding: 7px 18px;
  border: 0.5px solid #c9a84c;
  color: #c9a84c;
  background: transparent;
  font-size: 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
}

.btn-gold {
  padding: 7px 18px;
  border: none;
  background: #c9a84c;
  color: #080808;
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-gold:hover {
  opacity: 0.85;
}


.ticker {
  background: #c9a84c;
  padding: 7px 2.5rem;
  display: flex;
  gap: 3rem;
  overflow: hidden;
}

.ticker span {
  font-size: 10px;
  font-weight: 500;
  color: #080808;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::before {
  content: "— ";
}


.hero {
  position: relative;
  padding: 6rem 2.5rem 5rem;
  text-align: center;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #1a1008 20%,
    #2a1a00 40%,
    #0d0d0d 60%,
    #1a0a00 80%,
    #0a0a0a 100%
  );
  background-size: 400% 400%;
  animation: bgshift 8s ease infinite;
  z-index: 0;
}



.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.3) 0%,
    rgba(8, 8, 8, 0.1) 50%,
    rgba(8, 8, 8, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadein 0.8s ease forwards;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 4px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 52px;
  font-weight: 500;
  color: #f0f0f0;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
  color: #c9a84c;
}

.hero-line {
  width: 40px;
  height: 0.5px;
  background: #c9a84c;
  margin: 1.5rem auto;
}

.hero p {
  font-size: 14px;
  color: #999;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cta-main {
  padding: 12px 36px;
  background: #c9a84c;
  color: #080808;
  font-size: 13px;
  font-weight: 500;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}

.cta-main:hover {
  opacity: 0.85;
}

.cta-sec {
  padding: 12px 36px;
  background: transparent;
  color: #aaa;
  font-size: 13px;
  border: 0.5px solid #444;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cta-sec:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}


.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #0d0d0d;
  border-bottom: 0.5px solid #1a1a1a;
}

.stat {
  padding: 2rem;
  text-align: center;
  border-right: 0.5px solid #1a1a1a;
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-size: 30px;
  font-weight: 500;
  color: #c9a84c;
}

.stat-label {
  font-size: 10px;
  color: #444;
  margin-top: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #080808;
}

.feature {
  padding: 2.5rem 2rem;
  border-right: 0.5px solid #141414;
  border-top: 0.5px solid #141414;
}

.feature:last-child {
  border-right: none;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border: 0.5px solid #1e1e1e;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: #c9a84c;
  fill: none;
  stroke-width: 1.5;
}

.feature-tag {
  font-size: 10px;
  letter-spacing: 3px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 14px;
  font-weight: 500;
  color: #e0e0e0;
  margin-bottom: 8px;
}

.feature p {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}


.bottom-cta {
  background: #c9a84c;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bottom-cta h3 {
  font-size: 18px;
  font-weight: 500;
  color: #080808;
}

.bottom-cta p {
  font-size: 13px;
  color: #5a4a20;
  margin-top: 4px;
}

.bottom-cta button {
  padding: 12px 32px;
  background: #080808;
  color: #c9a84c;
  border: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.bottom-cta button:hover {
  opacity: 0.85;
}

.ticker a {
  color: #080808 !important;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.ticker a:hover {
  opacity: 0.65;
}

.dashboard-container {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 2.5rem;
}

.welcome-header {
    border-left: 3px solid #c9a84c;
    padding-left: 1rem;
    margin-bottom: 3rem;
}

.welcome-header h2 {
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-header .badge {
    display: inline-block;
    background: #c9a84c;
    color: #080808;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 2px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.dashboard-card {
    background: #0d0d0d;
    border: 0.5px solid #1a1a1a;
    padding: 2rem;
    border-radius: 2px;
}

.dashboard-card h3 {
    font-size: 16px;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border-bottom: 0.5px solid #1a1a1a;
    padding-bottom: 0.5rem;
}

.data-list {
    list-style: none;
}

.data-item {
    padding: 1rem 0;
    border-bottom: 0.5px solid #141414;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.data-item:last-child {
    border-bottom: none;
}

.item-main {
    color: #e0e0e0;
    font-weight: 500;
}

.item-sub {
    color: #666;
    font-size: 12px;
    margin-top: 2px;
}

.status-badge {
    font-size: 11px;
    color: #c9a84c;
    border: 0.5px solid #c9a84c;
    padding: 2px 8px;
    border-radius: 2px;
}

.empty-msg {
    color: #444;
    font-size: 13px;
    font-style: italic;
}

.back-home {
    display: inline-block;
    margin-top: 2rem;
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.back-home:hover {
    color: #c9a84c;
}

.text-right {
    text-align: right;
}

.text-gold-bold {
    color: #c9a84c;
    font-weight: bold;
}

.text-white-bold {
    color: #e0e0e0;
    font-weight: bold;
}

/* ===== PLANNING ===== */
.planning-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}

.planning-header {
  display: flex !important;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 0.5px solid #1e1e1e;
  padding-bottom: 24px;
}

.planning-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.planning-titre {
  font-size: 2rem;
  font-weight: 500;
  color: #f0f0f0 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.planning-titre span {
  color: #c9a84c !important;
}

.planning-sous-titre {
  color: #555;
  font-size: 13px;
  letter-spacing: 1px;
}

.planning-message-succes,
.planning-message-erreur {
  padding: 12px 18px;
  border-radius: 4px;
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: 500;
}
.planning-message-succes {
  background: rgba(201, 168, 76, 0.08);
  border: 0.5px solid #c9a84c;
  color: #c9a84c;
}
.planning-message-erreur {
  background: rgba(220, 60, 60, 0.08);
  border: 0.5px solid #dc3c3c;
  color: #ff8a8a;
}

/* Navigation semaine */
.calendrier-nav {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cal-nav-btn {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #555 !important;
  text-transform: uppercase;
  border: 0.5px solid #2a2a2a;
  padding: 8px 18px;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none !important;
}

.cal-nav-btn:hover {
  color: #c9a84c !important;
  border-color: #c9a84c;
}

.cal-nav-label {
  font-size: 14px;
  font-weight: 500;
  color: #e0e0e0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== GRILLE CALENDRIER ===== */
.calendrier-grille {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  grid-template-rows: auto 1fr !important;
  gap: 0 !important;
  border: 0.5px solid #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
}

.cal-jour-header {
  background: #0d0d0d;
  border-right: 0.5px solid #1a1a1a;
  border-bottom: 0.5px solid #1a1a1a;
  padding: 14px 10px;
  text-align: center;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cal-jour-header:nth-child(7) {
  border-right: none;
}

.cal-jour-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: #555;
  text-transform: uppercase;
  display: block;
}

.cal-jour-num {
  font-size: 20px;
  font-weight: 500;
  color: #888;
  display: block;
}

.cal-jour-today .cal-jour-label {
  color: #c9a84c;
}
.cal-jour-today .cal-jour-num {
  color: #c9a84c;
}

.cal-colonne {
  background: #080808;
  border-right: 0.5px solid #1a1a1a;
  padding: 12px 8px;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  min-height: 300px;
}

.cal-colonne:last-child {
  border-right: none;
}

.cal-vide {
  color: #222;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
}

/* Cartes séances */
.seance-card {
  background: #111 !important;
  border: 0.5px solid #2a2a2a !important;
  border-radius: 4px;
  padding: 12px 10px;
  display: flex !important;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, transform 0.2s;
}

.seance-card:hover {
  border-color: #c9a84c !important;
  transform: translateY(-1px);
}

.seance-card.seance-complete {
  opacity: 0.5;
}

.seance-card.seance-inscrit {
  border-color: rgba(111, 224, 154, 0.3) !important;
}

.seance-top {
  display: flex !important;
  justify-content: space-between;
  align-items: baseline;
}

.seance-heure {
  color: #c9a84c !important;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.seance-duree {
  color: #444;
  font-size: 0.75rem;
}

.seance-nom {
  color: #e0e0e0 !important;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.seance-type {
  color: #555;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.seance-meta {
  display: flex !important;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.coach-avatar {
  width: 22px;
  height: 22px;
  background: rgba(201, 168, 76, 0.12);
  border: 0.5px solid #c9a84c;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 700;
  color: #c9a84c;
  display: flex !important;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.seance-coach-nom {
  font-size: 0.75rem;
  color: #666;
}

.seance-salle {
  font-size: 0.72rem;
  color: #444;
  margin: 0;
}

.seance-places {
  margin-top: 2px;
}

.places-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.08);
  color: #c9a84c;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 0.5px solid rgba(201, 168, 76, 0.2);
}

.places-badge.places-complet {
  background: rgba(220, 60, 60, 0.08);
  color: #ff8a8a;
  border-color: rgba(220, 60, 60, 0.2);
}

.seance-btn-inscription {
  width: 100%;
  background: #c9a84c !important;
  color: #080808 !important;
  border: none;
  padding: 7px 6px;
  border-radius: 2px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 4px;
}

.seance-btn-inscription:hover {
  opacity: 0.85;
}

.seance-statut {
  text-align: center;
  padding: 6px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.7rem;
  margin-top: 4px;
}

.seance-statut-inscrit {
  background: rgba(60, 200, 100, 0.08);
  color: #6fe09a;
  border: 0.5px solid rgba(111, 224, 154, 0.2);
}

.seance-statut-attente {
  background: rgba(201, 168, 76, 0.08);
  color: #c9a84c;
  border: 0.5px solid rgba(201, 168, 76, 0.2);
}

/* Légende */
.planning-legende {
  display: flex !important;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 0.5px solid #1a1a1a;
}

.legende-item {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.legende-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.legende-dispo  { background: #c9a84c; }
.legende-complet { background: #ff8a8a; }
.legende-inscrit { background: #6fe09a; }