*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-x: hidden;
}

/* Palette de bleu : #04BBFF #0594D0 #007198 #003C57 #051C24 du site paletteDeCouleur.net */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  min-height: 100vh;
}

/* LIEN D'ÉVITEMENT */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.skip-link {
  background-color: #007198;
  border: solid 3px white;
  color: white;
  padding: 0.4em 0.5em;
  text-decoration: none;
}

.skip-link:not(:focus):not(:active) {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link:focus {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 999;
}

/* BARRE DE NAVIGATION */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background-color: #000000;
  border-bottom: 1px solid #e0e0e0;
  text-transform: uppercase;
  font-weight: bold;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-brand {
  font-size: 1.25rem;
  text-decoration: none;
  color: #ffffff;
  margin-left: 20px;
}

.navbar-toggler {
  display: none;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  margin-left: auto;
  list-style: none;
  padding-left: 0;
}

.nav-item {
  margin-left: 1rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: white;
}

.nav-link:hover {
  color: #007bff;
}

/*ACCUEIL*/

#content{
  width: 100%;
  height: 100%;
  padding-top: 200px;
  padding-bottom: 300px;
  padding-left: 100px;
  padding-right: 100px
}

/* Tiré du site d'Andréa Gauvreau : https://www.andrea-gauvreau.fr/tools/gradient-animation */
.accueil-background{
  background:linear-gradient(40deg,
  rgba(252,63,251,1) 0%,
  rgba(107,0,255,1) 50%,
  rgba(64,252,121,1) 100%);
  background-size: 300% 300%;
  animation: gradient-animation 10s ease infinite;}

  @keyframes gradient-animation {
    0% {background-position: 0% 50%;} 
    50% {background-position: 100% 50%;} 
    100% {background-position: 0% 50%;}}

#content h1 {
  font-size: 4em;
  font-weight: 700;
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
}
 
/* CONCEPT */
.concept-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: #f7f7f7;
  text-align: left;
}

.concept-content {
  max-width: 600px;
  margin-right: 50px;
}

.concept-content h2 {
  font-size: 2.5em;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.concept-content .text-lp {
  font-size: 1.2em;
  color: #666;
  line-height: 1.6;
}
.concept-content span[lang="en"] {
  font-style: italic;
  position: relative;
  display: inline-block;
}

/* VINYL */
.vinyl-container {
  flex-shrink: 0;
}

.vinyl {
  width: 200px;
  height: 200px;
  animation: spin 5s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* SLIDER DE L'ACCUEIL */
.last{
  text-align: center;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 700; 
  letter-spacing: 2px;
  color: #008ABF;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #D0CFCE;
  border-bottom: 1px solid #D0CFCE;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  margin-bottom: 100px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.artiste-recent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.slider img {
  max-width: 90%;
  height: auto;
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  color: black;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.voir-plus {
  margin-top: 15px;
  position: relative;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
}

.voir-plus::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  background-color: black; 
  transition: width 0.3s ease; 
}

.voir-plus:hover::before {
  width: 100%; 
}

/*BARRE DE RECHERCHE*/

.search-container {
  width: 490px;
  display: flex;
  margin: 0 auto;
  align-items: center;
}

input#search-bar {
  width: calc(100% - 50px);
  height: 45px;
  padding: 0 20px;
  font-size: 1rem;
  border: 1px solid #008ABF;
  outline: none;
}

input#search-bar:focus {
  border: 1px solid #008ABF;
  transition: 0.35s ease;
  color: #008ABF;
  border-right: none;
}

.search-button {
  width: 50px;
  height: 45px;
  background: #ffffff;
  border: 1px solid #008ABF;
  border-left: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.search-icon {
  height: 50px;
}

input#search-bar::placeholder {
  transition: opacity 0.45s ease;
}

input#search-bar:focus::placeholder {
  opacity: 0;
}

/* NOS PARTENAIRES */

h5{
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700; 
  letter-spacing: 2px;
  color: #008ABF;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #D0CFCE;
  border-bottom: 1px solid #D0CFCE;
}

.partners {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
}

.partner img {
  width: 200px;
  height: auto;
}


/* FOOTER */

footer div {
  display: flex;
}

footer{
  background:#000000;
  padding:20px ;
  font-family: 'Play', sans-serif;
  align-content: center;
  }
  
footer .row{
  width:100%;
  margin:1% 0%;
  padding:0.6% 0%;
  color:gray;
  font-size:0.8em;
  justify-content: space-around;
  }
  
footer .row a{
  text-decoration:none;
  color:gray;
  transition:0.5s;
  }
  
footer .row a:hover{
  color:#ffffff;
  }
  
footer .row ul{
  width:100%;
  }

footer .row ul li{
  display:inline-block;
  margin:0px 30px;
}
  
footer .row a i{
  font-size:2em;
  margin:0% 1%;
}

/* GALERIE - ACCUEIL */
.galerie {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}

.heading {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700; 
  letter-spacing: 2px;
  color: #008ABF;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #D0CFCE;
  border-bottom: 1px solid #D0CFCE;
}

.heading span {
  display: block;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
}

.gallery-item {
  flex: 1 0 24rem;
  margin: 1rem;
  box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
}

.gallery-image:hover {
  transform: scale(1.15);
}

@supports (display: grid) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    grid-gap: 2rem;
  }

  .gallery,
  .gallery-item {
    margin: 0;
  }
}

/* PAGE FAQ */
.faq-header {
  font-size: 3em;
  border-bottom: 1px dotted #ccc;
  padding: 24px;
}

.faq-content {
  margin: 0 auto;
}

.faq-question {
  padding: 1.75em 0;
  border-bottom: 1px dotted #ccc;
}

.panel-title {
  font-size: 1.55em;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 48px;
  display: block;
  cursor: pointer;
}

.panel-content {
  font-size: 1.25em;
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

.panel:checked~.panel-content {
  height: auto;
  opacity: 1;
  padding: 14px;
}

.plus {
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 3em;
  line-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.panel:checked~.plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  display: none;
}

.contact-faq {
  background-color: #007198;
  color: #fff;
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;

}

/* L'ÉQUIPE */
.equipe-moi {
  max-width: 375px;
  max-height: 235px;
  margin: 20px auto; 
  display: block;
  float: right; 
}

.equipe-histoire {
  padding: 20px;
  background-color: #000000;
  color: #fff;
  font-size: 1.2em;
  line-height: 1.6; 
  border-top: 1px solid #D0CFCE; 
  border-bottom: 1px solid #D0CFCE; 
}

#mentions-legales {
  max-width: 800px;
  margin: 20px auto; 
  padding: 20px;
  background-color: #f0f0f0;  
  border: 1px solid #ccc; 
  font-size: 0.9em;
  line-height: 1.6;
}

#contact {
  max-width: 800px;
  margin: 20px auto; 
  text-align: center; 
}

#contact img {
  margin: 5px;  
}


/* NOS ARTISTES */
.boite {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.carte {
  flex: 1 0 30%;
  box-sizing: border-box;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center; 
}
.carte img {
  width: 400px;
  height: auto;
}
.carte h2 {
  font-size: 1.5em;
  margin: 10px 0;
}
.carte p {
  margin: 5px 0;
}
.btn {
  display: inline-block;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
}
.btn:hover {
  background-color: #0056b3;
}
.tri-filtre{
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-size: larger;
}
.btn-primary {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  text-align: center;
  border-radius: 5px;
  border: none;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
  background-color: #0056b3; 
}

.tri-filtre label {
  margin-right: 10px; 
  font-weight: bold; 
}


.tri-filtre select {
  padding: 3px;
  margin-right: 10px;
  border: 1px solid #ccc; 
  border-radius: 5px;
  background-color: #f9f9f9; 
}

/* Styles pour le bouton */
.tri-filtre button {
  padding: 8px 15px; 
  cursor: pointer; 
}


/* MESSAGE ERREUR SI L'ARTISTE N'EXISTE PAS*/
.erreur {
  text-align: center; 
  margin-top: 20px; 
}

.erreur p {
  font-size: 1.2em; 
  margin-bottom: 60px;
  margin-top: 175px;
}

.erreur img {
  max-width: 100px; 
  height: auto;
  margin-bottom: 200px;
}

/* CONFIRMATION */
.valide {
  text-align: center; 
  margin-top: 100px;
}

.valide p {
  font-size: 1.2em; 
  margin-bottom: 60px;
}

.valide img {
  max-width: 100px; 
  height: auto;
  
  margin-bottom: 20px;
}