body {
  background-color: rgb(10, 13, 40);
  color: white;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

section {
  background-color: transparent;
}


/* Header et navigation */
.header {
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 1000;
  font-family: 'Orbitron', sans-serif;
}

.nav {
  position: relative;
  height: var(--header-height, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

/* Logo et nom du site */
.nav__logo {
  display: inline-flex;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 2rem; 
  font-family: 'Exo 2', sans-serif; 
}

.nav__logo img {
  width: 4rem; 
  margin-right: 1rem; 
}

.nav__logo a {
  text-decoration: none; /* Supprime le soulignement du lien */
  color: white;
}


/* Menu mobile */
.nav__toggle,
.nav__close {
  display: inline-flex;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

.nav__toggle img,
.nav__close img {
  width: 2rem;
  height: auto;
}

.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  background-color: rgb(47, 35, 114);
  backdrop-filter: blur(16px);
  width: 80%;
  height: 100%;
  padding: 8rem 3.5rem 3.5rem;
  transition: right 0.4s;
  z-index: 1000;
  display: flex;
  flex-direction: column; /* S'assure que les éléments du menu sont en colonne */
}

.show-menu {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column; /* Menu en colonne pour mobile */
  row-gap: 3rem;
  list-style: none;
}

.nav__link {
  color: white;
  font-size: 1.2rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.4s;
}

.nav__link:hover {
  color: #a084ff;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* Desktop version */
@media screen and (min-width: 768px) {
  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    backdrop-filter: none;
    padding: 0;
    display: flex;
    flex-direction: row; /* Menu en ligne pour desktop */
    justify-content: center; /* Centrer les éléments */
  }

  .nav__list {
    flex-direction: row; /* Aligner les éléments en ligne pour le desktop */
    column-gap: 2rem;
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }
}

.accueil {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80vh;
  padding: 0 2rem;
  margin-top: 100px; 
  font-family: 'Orbitron', sans-serif;

}

.acceuil__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap; 
  font-family: 'Orbitron', sans-serif;

}

.acceuil__image {
  width: 60%;
  height: auto;
  object-fit: contain;
}

.acceuil__data {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.acceuil-titre span {
  display: block;
  font-size: 3rem;
  font-family: 'Orbitron', sans-serif;
  color: #d0b3ff;
  text-shadow: 0 0 10px #8245ff;
  margin-bottom: 0.5rem;
}

.acceuil-titre span:nth-child(2) {
  color: #f69366;
}

.acceuil-titre span:nth-child(3) {
  color: #ffd768;
}

.button {
  display: inline-block; /* <-- fix pour largeur auto */
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #ffa32b, #ffffff);
  border: none;
  border-radius: 50px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(160, 132, 255, 0.6);
  transition: all 0.3s ease;
}

.button:hover {
  background: linear-gradient(135deg, #a084ff, #6e48aa);
  box-shadow: 0 0 30px rgba(160, 132, 255, 0.9);
}

/* footer */
.footer {
  background-color: #3e01429c;
  color: #f1f1f1;
  padding: 40px 20px;
  font-size: 14px;
}


.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-section h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  color: #aaa;
}


.catalogue-preview, .video-section {
  padding: 4rem 2rem;
  text-align: center;
}


.catalogue-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.card {
  background: #1a1a1a;
  color: white;
  padding: 1rem;
  border-radius: 12px;
  width: 220px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.card p {
  font-style: italic;
  font-size: 0.9rem;
  color: #dcdcdc;
  flex-grow: 1;
}

.card .button {
  margin-top: 1rem;
  align-self: center;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  height: 315px;
}

/* Optionnel : style bouton */
.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #5c6bc0;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}