@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Cinzel:wght@400..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Lobster&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+Newa&family=Noto+Sans+Symbols:wght@100..900&family=Oswald:wght@200..700&family=Pacifico&family=Pontano+Sans:wght@300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Cinzel:wght@400..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Lobster&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+Newa&family=Noto+Sans+Symbols:wght@100..900&family=Oswald:wght@200..700&family=Pacifico&family=Pontano+Sans:wght@300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: rgb(238, 238, 199);
    height: 100vh;
    font-family: "Poppins", sans-serif;
}

nav {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo img {
    width: 90px;
}

nav .navigation ul {
    display: flex;
    gap: 80px;
}

nav .navigation ul li {
    font-size: 20px;
    color: rgb(164, 157, 157);
    transition: 0.5s;
    cursor: pointer;
}

nav .navigation ul li:hover {
    color: black;
    transform: scale(1.2);
}

nav .contact {
    display: flex;
    gap: 35px;
}

nav .contact i {
    cursor: pointer;
    transition: 0.5s;
}

nav .contact i:hover {
    transform: scale(1.2);
}

main {
    height: 100vh;
}
#button {
  display: inline-block;
  background-color: #d7c6887c;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #3433;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
.search {
  max-height: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  transition: max-height 0.3s ease;
}

.search.show {
  max-height: 200px;
}



.search input{
    border: none;
    outline: none;
    background-color: rgb(255, 255, 255);
    border-radius: 15px;
    padding: 9px 9px 9px 35px;
    width: 15%;
    background-image: url(./img/ser.svg);
    background-size: 14px;
    background-position: 15px;
    background-repeat: no-repeat;
    font-family: "Poppins", sans-serif;

}

main .connexion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 35%;
    height: 50vh;
    display: none;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 4px 20px 3px rgba(0, 0, 0, 0.63);
    z-index: 1;
}

main .connexion .start {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
}

main .connexion .start i {
    position: relative;
    left: 34%;
    top: -40%;
    font-size: 21px;
    cursor: pointer;
}

main .connexion .user,
main .connexion .password {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

main .connexion h1 {
    font-size: 35px;
    letter-spacing: 6px;
}

main .connexion input {
    height: 40px;
    border: none;
    outline: none;
    background-color: rgb(238, 238, 238);
    border-radius: 5px;
    padding: 5px;
}

main .connexion label {
    font-weight: 400;
    color: rgb(0, 0, 0);
}

main .connexion button {
    width: 100%;
    height: 90px;
    border: none;
    border-radius: 5px;
    background-color: black;
    color: white;
    font-weight: 500;
    font-size: 17px;
    cursor: pointer;
    transition: 0.5s;
    font-family: "Poppins", sans-serif;

}

main .connexion button:hover {
    transform: scale(1.04);
}


.rotatingGallery-parentContainer {
  width: 100%;
  overflow-x: hidden;
  padding: 1rem 0;
  margin-top: 1%;
}

.rotatingGallery {
  width: 100%; 
  overflow: hidden;
  position: relative;
}

.rotatingGallery-slides {
  display: flex;
  width: max-content;
  animation: slideAnimation 70s linear infinite;
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
}

.rotatingGallery-slides img {
  width: 300px; 
  flex-shrink: 0;
}

/* Animation */
@keyframes slideAnimation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.rotatingGallery:active {
  cursor: grabbing;
}

.rotatingGallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rotatingGallery-text {
  padding: 1rem;
  color: #333;
}

.rotatingGallery-text h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.rotatingGallery-text p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #555;
}

@media (max-width: 768px) {
  .rotatingGallery-slide {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .rotatingGallery-slide {
    width: 200px;
  }

  .rotatingGallery-text h2 {
    font-size: 1rem;
  }

  .rotatingGallery-text p {
    font-size: 0.85rem;
  }
}

.rotatingGallery {
  scrollbar-width: none;
}

.rotatingGallery::-webkit-scrollbar {
  display: none;
}
.papier{
  width: 100%;
  height: 40%;
}
.nike{
  position: relative;
  top:-251px ;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  margin-bottom: 80px;
  gap: 20px;
}
.nike h1{
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 11em;
  font-style: normal;  color: rgb(255, 255, 255);
}
.nike .text{
  display: flex;
  justify-content: center;
  gap: 70px;
}
.nike .text img{
  width: 19%;
  border-radius: 15px;
}
.nike .text p{
  width: 60%;
  font-size: 18px;
  line-height: 2.4;
  color: rgb(105, 102, 102);
}
.news{
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  top: -128px;
}
.news .titrev{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news .titrev h1{
  font-size: 70px; 
  font-family: "Bebas Neue", sans-serif;
  color: #000; 
    color: rgba(255, 255, 255, 0.5);

}
.news video{
  width: 80%;
  border-radius: 40px;
}
.produit{
  width: 100%;
  text-align: center;
}
.produit h1{
  font-family: "Bebas Neue", sans-serif;
  font-size: 55px;
  margin-bottom: 30px;
}
.produit .part1{
  display: flex;
  width: 100%;
}
.produit .part1 img{
  width: 50%;
}

.produit .part2{
  display: flex;
  width: 100%;

}
.produit .part2 img{
  width: 80%;
}
.container{
  margin: 80px 0px 0px 0px;
}
.container .row{
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
}
.container .row h1{
  font-size: 55px;
  letter-spacing: 2.5px;
}
.container .row h4{
  font-size: 30px;
  font-weight: 200;
  letter-spacing: 2.5px;
}

input:focus ~ label, textarea:focus ~ label, input:valid ~ label, textarea:valid ~ label {
  font-size: 0.76em;
  color: #999;
  top: -5px;
  -webkit-transition: all 0.225s ease;
  transition: all 0.225s ease;
}

.styled-input {
  float: left;
  width: 293px;
  margin: 1rem 0;
  position: relative;
  border-radius: 4px;
}

@media (max-width: 480px) {
  body{
    background-color: black;
  }
}
