/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0a0a0a; /* Noir foncé */
  color: white;
}

/* ===== Header ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  margin-right: 10px;
}

.site-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #00ff80; /* Beige/marron inspiré du logo */
}

/* ===== Navigation ===== */
nav ul.menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 25px;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.menu a:hover {
  color: #00ff80;
  background-color: #222;
  border-radius: 8px;
}

.icon {
  height: 20px;
  margin-right: 8px;
}

/* ===== Dropdown Menu ===== */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #1a1a1a;
  top: 100%;
  left: 0;
  min-width: 200px;
  border-radius: 8px;
  z-index: 1000;
  list-style: none;
  padding: 0;
}

.dropdown-menu li a {
  padding: 10px 15px;
  color: white;
  display: flex;
  align-items: center;
}

.dropdown-menu li a:hover {
  background-color: #333;
  color: #00ff80;
}

/* ===== Bouton Panel ===== */
.btn-panel {
  background-color: #00ff80;
  padding: 8px 15px;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-panel:hover {
  background-color: #e6c995;
  transform: scale(1.05);
  box-shadow: 0 0 8px #00ff80;
}

/* ===== Main Section ===== */
.main-content {
  padding: 60px 30px;
}

.hero {
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #00ff80;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ccc;
}

.btn-offres {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 30px;
  background-color: transparent;
  border: 2px solid #00ff80;
  color: #00ff80;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-offres:hover {
  background-color: #00ff80;
  color: #0a0a0a;
  transform: scale(1.05);
  box-shadow: 0 0 10px #00ff80;
}

/* ===== Offers Section ===== */
.offres-fivem {
  padding: 60px 40px;
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
}

.offres-fivem h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00ff80;
  text-shadow: 0 0 10px #00ff80;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center; /* Centrage horizontal */
  align-items: stretch;    /* Hauteur uniforme */
}


.card {
  background-color: transparent;
  border: 1px solid #00ff80;
  border-radius: 15px;
  padding: 25px;
  width: 300px;
  color: #fff;
  box-shadow: 0 0 10px #0a0a0a;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #00ff80;
  border-color: #00ff80;
}

.card h3 {
  color: #00ff80;
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.card ul li::before {
  content: "✔ ";
  color: #00ff80;
  margin-right: 5px;
}

.prix {
  font-size: 1.3rem;
  color: #00ff80;
  margin-bottom: 15px;
}

.btn-commander {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #00ff80;
  border-radius: 25px;
  color: #00ff80;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-commander:hover {
  background-color: #00ff80;
  color: #0a0a0a;
  box-shadow: 0 0 10px #00ff80;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 30px;
  background-color: #111;
  color: #777;
  margin-top: 80px;
}
