body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #bc3a3a;
  color: white;
  font-weight: bold;
   font-style: italic;
  line-height: 1.6;
  margin: 0;
}

header {
  background-color: #000;
  color: white;
  padding: 1rem 0;
}

#logo img {
  height: 70px;
  margin-left: 20px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

#lien {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

#lien li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

#lien li a:hover {
  color: #d10f0f;
}

main {
  padding: 2rem;
}

#conheader img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
}

#text h1 {
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

#text p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
}

.gallery img {
  width: 220px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.T-shirts {
  text-align: center;
  padding: 40px;
}

.T-shirts h2 {
  font-size: 2em;
  margin-bottom: 20px;
}


.T-shirts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
}

.image-block {
  padding: 10px;
  border-radius: 12px;
  background-color: #ad6c6c;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-block img {
  width: 400px;
  height: 400px;
  border-radius: 12px;
  object-fit: cover;
}


#musique {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#musique video {
  max-width: 720px;

  border-radius: 8px;
}

.videos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.videos iframe {
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

#pub {
  margin-top: 3rem;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

#pub p {
  margin-bottom: 1.2rem;
}

#pub img {
  height: auto;
  margin: 10px;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(146, 13, 13, 0.1);
}

#shop {
  text-align: center;
}

#shop .pub {
  max-width: 600px;
  margin: 0 auto;
}

.T-shirts {
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
  text-align: center;
}

.T-shirts img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(235, 229, 229, 0.1);
}




footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 1.2rem 0;
  margin-top: 2rem;
}

footer p {
  margin: 0;
}

@media (max-width: 768px) {
  #lien {
    flex-direction: column;
    align-items: center;
  }

  .gallery,
  .videos,
  .T-shirts {
    flex-direction: column;
    align-items: center;
  }

  #musique video {
    width: 100%;
  }

  #pub img {
    width: 100%;
    max-width: 300px;
  }

  .T-shirts img {
    width: 100%;
    max-width: 300px;
  }
}
