/* --- Style global --- */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #0f0f0f;
  color: #f0f0f0;
  margin: 0;
  padding: 60px 0 0 0;
  text-align: center;
}

/* --- Navigation --- */
.nav-fixe {
  background-color: #111;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 0.8em;
  border-bottom: 1px solid #333;
}
.nav-fixe a {
  text-decoration: none;
  color: #f0f0f0;
  font-weight: bold;
  transition: color 0.2s;
}
.nav-fixe a:hover { color: #27ae60; }

.cart-badge {
  background: #27ae60;
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.85em;
  margin-left: 6px;
}

.btn-panier {
  background: #27ae60;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7em 1.2em;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-panier:hover { background: #219150; }

/* --- Header --- */
header { padding: 2em; background-color: #1a1a1a; }
.banner {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-bottom: 4px solid #27ae60;
}
.buttons button {
  margin: 10px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  background: #27ae60;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
}
.buttons button:hover { transform: scale(1.05); }

/* --- Staff --- */
.staff-section { padding: 2em 1em; background-color: #121212; }
.staff-cards {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2em;
}
.staff-card {
  background: #1f1f1f; border-radius: 12px; padding: 1em; width: 220px;
  box-shadow: 0 0 10px rgba(0, 255, 128, 0.2); transition: transform 0.2s;
}
.staff-card:hover { transform: translateY(-5px); }
.staff-card img { width: 100px; height: 100px; border-radius: 50%; }
.badge {
  display: inline-block; background: #27ae60; color: white; padding: 2px 6px;
  border-radius: 4px; font-size: 0.75em;
}

/* --- Boutique --- */
.boutique { padding: 3em 1em; background-color: #1a1a1a; }
.produits { display: flex; flex-wrap: wrap; gap: 2em; justify-content: center; }
.carte-produit {
  background: #2b2b2b; padding: 1.5em; border-radius: 12px; width: 250px;
  box-shadow: 0 0 10px rgba(0,255,128,0.2); transition: transform 0.2s;
}
.carte-produit:hover { transform: scale(1.05); }
.carte-produit h3 { margin-bottom: 0.5em; }
.carte-produit p { font-size: 0.95em; margin-bottom: 1em; color: #ccc; }
.carte-produit .prix { font-weight: bold; margin-bottom: 1em; color: #27ae60; }
.bouton-achat {
  background: #27ae60; padding: 0.6em 1.2em; color: white; border-radius: 8px;
  text-decoration: none; transition: background 0.2s;
}
.bouton-achat:hover { background: #219150; }
.avertissement { margin-top: 2em; font-size: 0.9em; color: #ffae42; }

/* --- Statut --- */
.status-section {
  background: #121212; padding: 2em; margin: 2em auto; border-radius: 12px;
  max-width: 600px; box-shadow: 0 0 15px rgba(0,255,128,0.2);
}
.status-section h2 { color: #27ae60; }
#server-status { font-size: 1.2em; margin-top: 0.8em; }

/* --- Recrutement --- */
.recrutement {
  background-color: #181818; padding: 3em 1em;
  color: #f0f0f0; text-align: center;
}
.recrutement iframe {
  border-radius: 12px; border: none; margin-top: 2em;
  box-shadow: 0 0 20px rgba(0,255,128,0.1);
}

/* --- Footer --- */
footer {
  background-color: #111;
  padding: 1em;
  font-size: 0.9em;
  border-top: 1px solid #333;
}

/* --- Page panier --- */
.panier-page {
  background: #181818; color: #fff; max-width: 560px;
  margin: 100px auto 40px auto; padding: 2em 1.2em; border-radius: 12px;
  box-shadow: 0 4px 16px #0008; text-align: center;
}
.panier-page h1 { margin-top: 0; }
.panier-page ul { list-style: none; padding: 0; text-align: left; }
.panier-page li {
  display: grid; grid-template-columns: 1fr auto auto auto;
  gap: 8px; align-items: center;
  padding: 10px; background: #202020;
  border-radius: 10px; margin-bottom: 10px;
}
.panier-page .qte {
  display: inline-flex; align-items: center; gap: 6px;
}
.panier-page .total {
  font-weight: 700; margin-top: 10px;
}
.panier-page button, .btn-retour {
  background: #27ae60; color: #fff; border: none; border-radius: 8px;
  padding: 0.7em 1.2em; font-weight: bold; cursor: pointer;
  margin: 0.5em; text-decoration: none; transition: background 0.2s;
}
.panier-page button:hover, .btn-retour:hover { background: #219150; }
