/* FOND GLOBAL */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  scroll-behavior: smooth;
  font-weight: 300;
}

/* BANNIÈRE */
.banniere-container {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background-color: #000;
}

.banniere {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* LOGO */
.logo-link {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
}

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

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

/* NAVIGATION */
.top-bar {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 20px;
  transition: background 0.3s ease;
}

.nav-link:hover {
  background-color: #fff;
  color: #000;
}

/* À PROPOS */
.apropos-block {
  max-width: 900px;
  margin: 80px auto;
  padding: 50px;
  background-color: #111;
  border-left: 3px solid #fff;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.3px;
  color: #ccc;
}

.apropos-block h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #fff;
  animation: fadeInUp 1s ease both;
}

/* MES CRÉATIONS */
.mes-creations {
  max-width: 1000px;
  margin: 100px auto;
  text-align: center;
  padding: 0 30px;
  animation: fadeInUp 1.2s ease both;
}

.mes-creations h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}

.mes-creations p {
  font-size: 17px;
  color: #ccc;
  margin-bottom: 60px;
  line-height: 1.7;
}

.images-creations {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  animation: fadeInUp 1.5s ease both;
}

.creation-img {
  width: 320px;
  height: auto;
  max-width: 90vw;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.creation-img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* SECTION OMBRE */
.ombre-section {
  max-width: 1000px;
  margin: 100px auto;
  text-align: center;
  padding: 0 30px;
  animation: fadeInUp 1.5s ease both;
}

.ombre-titre {
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
}

.ombre-texte {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 60px;
}

/* CAROUSEL */
.carousel-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  animation: scrollCarousel 40s linear infinite;
}

.carousel-item {
  flex: 0 0 auto;
  width: 220px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.carousel-item:hover {
  transform: scale(1.07);
  filter: brightness(1.1);
}

@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* MODALE */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modal.show {
  display: flex;
}

.modal img {
  max-width: 80%;
  max-height: 80vh;
  border-radius: 12px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: transform 0.3s ease;
}

.close-modal:hover {
  transform: scale(1.3);
}

/* ANIMATION TEXTE */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}