/* Style global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f10;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(15, 15, 16, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

header .logo span {
  color: #6c63ff;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #6c63ff;
}

/* Section Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a1d, #0f0f10);
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero h1 span {
  color: #6c63ff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #6c63ff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background-color: #5a52e0;
}

/* Contenu principal */
.content {
  padding: 100px 60px;
  text-align: center;
}

.content h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
}

/* Cartes */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.card {
  background: #1c1c1f;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.card h3 {
  color: #6c63ff;
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 15px;
  color: #ccc;
}

.card ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.card ul li {
  margin-bottom: 5px;
  color: #bbb;
}

.status {
  position: absolute;
  bottom: 15px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status.in-progress {
  background: #6c63ff33;
  color: #6c63ff;
}

.status.planned {
  background: #63ff7c33;
  color: #63ff7c;
}

.status.upcoming {
  background: #ffca6333;
  color: #ffca63;
}

/* Contact */
#contact a {
  color: #6c63ff;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #1a1a1d;
  text-align: center;
  padding: 20px 0;
  color: #999;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 20px;
  }

  nav {
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .content {
    padding: 80px 20px;
  }

  .card {
    padding: 25px;
  }
}
