/* @font-face {
    font-family: Raleway;
    src: url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');
} */

:root {
  --gris : rgb(48, 48, 48);
  --gris-clair : rgb(101, 101, 101);
  --orange : hsla(17, 71%, 57%, 1.00);
  --orange-light : hsla(17, 71%, 70%, 1.00);
}

html {
  scroll-behavior: smooth;
  width: 100vw;
}
body {
  padding: 0px;
  margin:0;
  width: 100vw !important;
  /* font-family: 'Raleway', sans-serif; */
  font-family: 'Vidaloka', serif;
  color: rgb(69, 69, 69);
  box-sizing: border-box;
  scroll-behavior: smooth;
}


.hide {
  display: none !important;
}
header {
  width: 100vw;
  display: grid;
  grid-template-columns: minmax(120px, 20%) 1fr;
}

.logo {
  width:100%;
  grid-column: 1 / 2;
  grid-row: 1/3;
}
.logo > img {
  width:100%;
}
header > h1 {
  font-size: 1.4rem;
  width: 80%;
  height: fit-content;
  margin: auto 0;
}
nav ul {
  list-style: none;
  padding: 0;
  width:100% ;
  max-width: 600px;
  display: flex;
  justify-content: space-around;
}
nav ul li {
  font-size: .9rem;
  position: relative;
}
nav ul li a::before {
  content:'';
  position: absolute;
  display: inline;
  left:-10%;
  width:10%;
  height: 100%;
  background-color: var(--orange);
  z-index: -1;
  opacity: .7;
}
nav ul li a:hover::before {
  animation: hover linear 300ms forwards;
}
@keyframes hover{
  0% {left:-10%; width: 10%;}
  25% {left:100%; width: 10%;}
  50% {left:100%; width: 10%;}
  100% {left:0px; width: 100%;color:white}
}


a {
  text-decoration: none !important ;
  color: var(--gris);
}
header a {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: lighter;
  
}
header nav a:hover {
  display: inline-block;
  transform: scale(1.1);
  transition: all ease-in 100ms;
  color: white;
}

p, .sax_bulle, .discographie {
  margin: 1rem auto;
  width: 96%;
  max-width: 780px;
}
.bulle {
  height:42px;
  width:42px;
  position: relative;
  top:46px;
  overflow: hidden;
  border-radius: 100%;
}
.bulle > img {
  position: relative;
  left:-20px;
}
.title {
  position: relative;
  left:46px;
  width: fit-content;
}
hr {
  position: relative;
  left:46px;
  height:2px;
  width:45%;
  margin-left:0;
  background-color:black;
  border: none;
  text-decoration: none;
}
section:nth-of-type(1) {
  padding: 2rem 0;
  position: relative;
  color:white;
  background: var(--orange);
}
/* section:nth-of-type(1)::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left:0;
  background: url('image/saxflou.png');
  background-size: cover;
  opacity: .1;
} */
.glide1 {
  background-color: var(--orange);
}
.glide1 .glide__slide {
  height: 220px;
  background-color: var(--orange-light);
}
.videotheque {
  background-color: var(--orange);
  padding: 4rem 0;
  text-align: center;
}

.tv-programme {
  display: grid;
  grid-template-columns: repeat( 4 , 1fr);
  gap:2%;
  width: 90%;
  max-width: 960px;
  margin: 1rem auto;
}
.tv-thumb {
  background-color: rgb(243, 243, 243);
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 16/9;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}

.tv-thumb > span {
  color:rgb(43, 43, 43);
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  background-color: white;
  width: 100%;
  bottom:0;
  opacity: .7;
}
.thumb  {
  height: 100%;
}
button {
  border: none !important ;
  background: none;
  text-decoration: none;
  padding: 0;
}
.play {
  position: absolute;
  top:50%; left:50%; transform: translate(-50%,-50%);
  margin:auto auto;
  font-size: 3rem;
  opacity: .8;
  color:var(--orange);
}
.play::before {
  content: '';
  position: absolute;
  width:1rem;
  height:1rem;
  background-color: white;
  top:50%; left:50%; transform: translate(-50%,-50%);
  z-index: -1;
}
button.play:hover {
  color:red;
  /* transform: scale(1.2); */
  top:50%; left:50%; transform:  translate(-50%,-50%) scale(1.2);
  opacity: 1;
  transition: all ease 200ms;
}
.youtube {
  width:100%;
  max-width: 980px;
  aspect-ratio: 16/9;
}
.cta {
  background-color: var(--gris);
  color:white;
  padding: 4rem 0;
  font-size: 1.4rem;
  text-align: center;
}
.cta a {
  color:white;
}
.discographie img{
  width:25%;
  float: left;
  margin:0 1rem 0 0;
  box-shadow: -8px 0px 18px rgba(162, 162, 162, 0.714);
}
.playlist {
  list-style:decimal;
}
.playlist i {
  color: var(--gris-clair);
  font-weight: lighter;
}
.ecoutez {
  background: var(--gris);
  color: white;
  text-align: center;
}
.ecoutez .fa-brands {
  color:white;
  font-size: 3rem;
  margin: 2rem 2rem;
  transition: all ease 200ms;
} 
.ecoutez .fa-brands:hover {
  transform:scale(.9) rotate(-2deg);
}
.ecoutez .fa-spotify:hover {
  color:#1db954;
}
.ecoutez .fa-deezer:hover {
  background: linear-gradient(45deg, #FF0000, #FFED00, #FF0092, #C2FF00, #00C7F2, #C1F1FC);
  background-clip:text;
  -webkit-background-clip: text;
    -moz-background-clip: text;
  color: transparent;
}

.scenes {
  background-color: var(--orange);
  color: white;
  margin-top: 2rem;
  padding: 2rem 0;
}
.largeur > hr {
  background-color:white !important;
}
.scenes > .largeur {
  margin: 1rem auto;
  width: 96%;
  max-width: 780px;
}
.presse {
  background-color: #fffb00;
  color:var(--gris-clair);
  padding: 2px .8rem;
  margin:4px;
  border-radius: 4px;
  opacity: .8;
  display: inline-block;
}
.presse:hover {
  opacity: 1;
  transform: scale(.98);
}
.insta-section {
  text-align: center;
}
.insta {
  width:100%;
  max-width: 780px;
  aspect-ratio: 1/1;
}
.x9f619 {
  display: none !important;
}



footer {
  padding: 4rem 0 1rem 0;
  background-color: var(--gris);
  color:white;
  position: relative;
}
footer > * {
  margin: 1rem auto;
  width: 96%;
  max-width: 740px;
}
footer i, footer a {
  color: white;
}
.link {
  font-size: 1.4rem;
  margin-left: 1.2rem;
  vertical-align: middle;
  display: inline-block;
}
.link:hover {
  transform: scale(1.2) rotate(-360deg);
  transition: all ease 150ms;
}
.link-top {
  font-size: 1.1rem;
  margin-left: 1.2rem;
  vertical-align: middle;
  display: inline-block;
}
.link-top:hover {
  transform: scale(1.1) rotate(-360deg);
  transition: all ease 150ms;
}

.top {
  text-align: center;
  font-size: 2rem;
  color: var(--gris-clair);
  animation: jiggle 1s ease-in-out infinite;
  position: relative;
}

@keyframes jiggle{
  0% {top:0px}
  90% {top:-4px;}
  100% {top:0px}
}

.dev {
  color: white;
  width:100vw;
  text-align: center;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: lighter;
  font-size: .7rem;
}


@media screen and (max-width:540px) {
  header, body {
    width: 100vw;
  }
  h1 {
    font-size: 1.2rem;
    margin: 1.8rem auto;
  }
  .link-top {
    font-size: 1rem;
  }
  .logo {
    grid-row: 1/2;
  }
  nav {
    grid-column: 1 / 3;
    grid-row: 2/3;
  }
  .tv-thumb {
    aspect-ratio: 11/9 !important;
  }
  .insta {
    aspect-ratio: 1/1.2;
  }
  .glide1 .glide__slide {
    height: 200px;
  }
  .play {
    font-size: 2rem;
  }
}