@import url("https://use.typekit.net/uho5gup.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: black;
  font-family: "forma-djr-text", sans-serif;

}
nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: fixed;
  top: 0;
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  z-index: 100;
  padding: 24px 48px;
  background: #ffffff24;
  filter: invert(1) drop-shadow(0px 0px 2px rgb(1, 1, 1, .2));
}
nav ul, nav .reseaux {
  flex-basis: 40%;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
nav ul li {
  list-style-type: none;
}
nav ul li a {
  color: black;
  text-decoration: none;
  position: relative;
}
nav ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  height: 2px;
  background-color: black;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
nav ul li a:hover:before {
  transform: scaleX(1);
}
.reseaux {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
nav .reseaux {
  justify-content: flex-end;
}
.reseaux img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}
nav h1 {
  flex-basis: 20%;
  text-align: center;
  font-size: 28px;
}

.header {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header img:not(.logo) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
}
/*
.header:after {
  content: '';
  background-color: black;
  opacity: .3;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
*/
.header img.logo {
  width: 200px;
  height: auto;
  position: relative;
  z-index: 10;
  filter: invert(1);
}
div.music {
  max-width: 1800px;
  margin: 0 auto;
  padding: 48px;
  margin-top: 200px;
}
div.music img {
  height: auto;
  max-width: 100%;
}
div.music .glide__slide a, div.music .glide__slide p {
  text-align: center;
  color: white;
  text-decoration: none;
  margin-top: 16px;
}
div.music .glide__arrows {
  text-align: center;
  margin-top: 32px;
}
div.music .glide__arrows .glide__arrow svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 4px;
}
div.music .glide__arrows .glide__arrow {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0 24px;
}
footer .reseaux img, footer .logo {
  filter: invert(1);
}
footer {
  padding: 48px;
}
footer .logo {
  display: block;
  width: 100px;
  height: auto;
  margin: 0 auto 48px;
}

@media only screen and (max-width:780px) {
  div.music {
    margin-top: 140px;
    padding: 24px;
  }
  nav {
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 24px;
  }
  nav h1 {
    order: 1;
    text-align: left;
    font-size: 24px;
  }
  nav .reseaux {
    order: 2;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
  nav ul {
    order: 3;
  }
}

@media only screen and (max-width:410px) {
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  nav ul {
    font-size: 18px;
  }
}
