body {
    background-color: aliceblue;
}

/* Styles pour le bouton Mode sombre/clair */
#toggle-dark-mode {
    padding: 10px 20px;
    background-color: #111111; 
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5%;
}

body.dark-mode {
    background-color: #111111;
    color: #ffffff;
}

body.dark-mode .artiste p {
    color: #111111;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
    max-width: 400px;
    max-height: 600px;
    display: block;
    border-radius: 10px;
    margin: auto;
}

h1 {
    color: #1f30cb;
    text-align: center;
    font-size: 70px;
}

h2 {
    text-align: center;
    color: #1f30cb;
}

p {
    text-align: center;
    font-size: 20px;
}

strong {
    font-size: 25px;
}

a {
    font-size: 20px;
    color: #000000;
    padding: 10px;
}

nav {
    background-color: #e01d1d;
    color: black;
    text-align: center;
}

.artiste {
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    text-align: center;
}

.artiste img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

footer {
    background-color: #1f30cb;
    color: #ffffff;
    font-size: 15px;
    border-radius: 15px;
    text-align: center;
    padding: 10px;
}

/*Menu*/
.menu-container {
    position: fixed;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.menu-button {
    padding: 10px 20px;
    background-color: #1f30cb;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10%;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0;
    display: none;
    position: fixed;
    top: 50px;
    left: 10px;
    border: 5px;
    width: 200px;
    border-radius: 10px;
    z-index: 999;
}

.menu li {
    padding: 10px;
    border-bottom: 1px solid #111111;
    background-color: #1f30cb;
    color: #ffffff;
    text-align: left;
}

.menu li:last-child {
    border-bottom: none;
}

.menu li a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    padding: 10px;
}

/*Bouton*/
.btn-download {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1f30cb; 
    color: #ffffff; 
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-download:hover {
    background-color: #e01d1d; 
}

/*Carrousel*/
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 930px;
  overflow: hidden;
  margin: auto;
}

.carousel-images {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-images img {
  flex: 0 0 33.33%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
}

/*Bouton carrousel*/
.carousel-container .prev,
.carousel-container .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 5px;
  user-select: none;
  z-index: 10;
}

.carousel-container .prev {
  left: 5px;
}

.carousel-container .next {
  right: 5px;
}

/*Responsive*/
@media screen and (max-width: 480px) {
    h1 {
        font-size: 35px;
    }

    p {
        font-size: 12px;
    }

    strong {
        font-size: 17px;
    }

    img {
        max-width: 50%;
        height: auto;
    }

    .menu-button {
        padding: 5px 8px;
        font-size: 10px;
    }

    #toggle-dark-mode {
        padding: 5px 8px;
        font-size: 10px;
    }

    .menu {
        width: 150px;
    }

    .menu li {
        padding: 5px;
    }

    .carousel-container {
        height: auto;
    }

    .carousel-images img {
        width: 100vw;
    }

    iframe {
        width: auto;
        height: auto;
    }

    .carousel-container .prev,
    .carousel-container .next {
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 1023px) {
  .carousel-images img {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 1024px) {
  .carousel-images img {
    width: 33.3333%;
  }
}