* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #111;
    color: #fff;  
  }
  
  .logo img {
    width: 100%; 
    max-width: 250px; 
    height: auto; 
    display: block; 
    margin: 0 auto 20px; 
  }
  
  .container {
    display: flex;
    height: 100vh;
  }
  
  .sidebar {
    width: 25%;
    background-color: #111;
    padding: 20px;
  }
  
  .sidebar .logo {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    color: #f0f0f0;
    margin-bottom: 20px;
  }

  
  .sidebar .menu {
    list-style: none;
  }
  
  .sidebar .menu li {
    margin: 10px 0;
  }
  
  .sidebar .menu li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Times New Roman', serif; /* Police élégante et cohérente */
    font-size:18px ;   /* Taille du texte */
    font-weight:bolder;
    line-height: 140%; 
  }
  
  .sidebar .menu li a:hover {
    color:#d0c880 ;
    transition: background-color 0.3s ease;
  }
  x
  .main-content {
    flex: 1;
    position: relative;
  }
  
  .overlay {
    position: relative;
    height: 100%;
  }
  
  .image-section {
    position: relative;
    height: 100%;
    background-image: url(https://jujutsukaisen.jp/news/images/20240825_01_01.jpg);
    background-size: cover;
    background-position: center;
    width: 76vw;
  }
  .image-section .main-image {
    width: 100%;
    height: auto;
  }

  
  .text-over-image {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  
  .text-over-image h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .text-over-image p {
    font-size: 24px;
  }
  .header-share {
    position: absolute; 
    top: 10px; 
    right: 10px; 
    display: flex;
    align-items: center;
    gap: 10px; 
  }
  
  .share-text {
    font-size: 14px;
    color: white; 
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .social-icon {
    color: white; 
    font-size: 18px; 
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
  }
  
  .social-icon:hover {
    color: #1da1f2; 
    transform: scale(1.1); 
  }

.header-share {
  position: absolute;
  top: 10px; 
  right: 10px; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  z-index: 10; 
}

.share-btn {
  background: none; /* Pas de background */
  border: none; /* Pas de bordure */
  color: white; /* Couleur du texte par défaut */
  font-family: 'Georgia', serif; /* Typo élégante */
  font-size: 16px; /* Taille du texte */
  font-weight: normal; /* Texte en gras */
  text-transform: uppercase; /* Texte en majuscules */
  letter-spacing: 1px; /* Espacement des lettres */
  cursor: pointer; /* Curseur en forme de main */
  padding: 0; /* Pas d'espacement interne */
  margin-right: 10px; /* Espacement à droite par rapport aux icônes */
  transition: color 0.3s ease; /* Transition fluide sur hover */
}

.share-btn:hover {
  color: lightgray; /* Couleur gris clair au survol */
}

.social-icon {
  width: 20px; 
  height: 20px; 
  object-fit: contain; 
  cursor: pointer; 
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.2); 
  opacity: 0.8;
}

/* Section globale */
.scroll-section {
  display: flex;
  flex-direction: column;
  align-items: left ;
  background-color: #111; /* Fond noir comme sur l'image */
  padding: 30px;
  color: white; /* Texte en blanc */
  text-align: left;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 1 image par ligne (modifiable) */
  gap: 15px; /* Espacement entre les images */
  max-width: 300px; /* Largeur maximale pour centrer */
}

/* Images individuelles */
.image-gallery img {
  width: 100%; /* Adapte la largeur à la colonne */
  height: auto; /* Garde les proportions */
  border: 2px solid white; /* Bordure blanche fine autour des images */
  border-radius: 5px; /* Coins légèrement arrondis */
}

.text-section h2 {
  font-size: 16px;
  font-weight: normal;
  margin-top: 20px;
}

.content-wrapper {
  display: flex;
  position: relative;
  height: 100%; /* Remplir toute la hauteur du viewport */
}

.logo-btn {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid #d0c880; /* Bordure blanche pour les boutons */
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.logo-btn:hover {
  background-color: lightgray; /* Fond gris clair au survol */
}

.gallery-section {
  padding: 20px;
  text-align: center;
}

.gallery-section h1 {
  font-family:'Times New Roman', Times, serif;
  font-size: 2.5rem;
  color: #ffffffe0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px;
}

.gallery img {
  margin-top: 25px;
  width: 100%;
  height: auto;
  border-radius: 2px;
  transition: transform 0.3s;
  margin-bottom: 25px;
}

.gallery img:hover {
  transform: scale(1.05);
}

.product-buttons a {
  text-decoration: none;
  color: #000;
  background-color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s;
}

.product-buttons a:hover {
  background-color: #FFA500;
}
.closing-image {
  text-align: center;
  margin: 30px 0;
}

.closing-image img {
  width: 100%;
  height: auto;
}

footer {

  text-align: center;
  padding: 10px 20px;
  background-color: #111;
  color: #ffffff;
  border-top: 1px solid #333;
}

footer p:last-child, footer p:first-child {
  color: #ffffff;
}

footer p {
  color: rgb(37, 211, 255);
  text-decoration: underline;
}

.right-content{
  width: 80vw;
  background-image: url(https://wallpapercave.com/wp/wp10445966.jpg);
  background-size: cover;
  height: auto;
}

.characters {
  margin-top: 5%;
}

.characters h1{
  margin-bottom: 5%;
}

.story {
  margin-top: 5%;
  margin-bottom: 5%;
}