/* Style global */
body {
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  color: white;
  font-family: 'Arial', sans-serif;
}

/* BANNIÈRE ET LOGO */
.banniere-container {
  position: relative;
  width: 100%;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  padding-top: 20px;
}

.banniere {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  opacity: 0.9;
  display: block;
}

.logo {
  width: 150px;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo {
  transform: scale(1.15);
}

/* NAVIGATION */
.top-bar {
  position: absolute;
  top: 30px;
  right: 40px;
  display: flex;
  gap: 20px;
  z-index: 2;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ff007f;
}

/* BLOC DESIGNER */
.designer-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 5%;
  gap: 60px;
  flex-wrap: wrap;
}

.designer-detail img {
  width: 400px;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.designer-detail img:hover {
  transform: scale(1.05);
}

.designer-description {
  max-width: 700px;
  color: #fff;
}

.designer-description h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.designer-description p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* MODALE IMAGE */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
}

.modal .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* BOUTON DE RETOUR */
.retour-btn {
  padding: 12px 24px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin: 40px auto;
  transition: 0.3s;
}

.retour-btn:hover {
  background-color: white;
  color: black;
}