@font-face {
  font-family: "safiromedium";
  src: url("/fonts/safiro-medium-webfont.eot");
  src: url("fonts/safiro-medium-webfont.ttf");
  src: url("fonts/safiro-medium-webfont.woff");
  src: url("fonts/safiro-medium-webfont.woff2");

  font-weight: normal;
  font-style: normal;
}

h1 {
  font-family: "safiromedium";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-family: "safiromedium";
}

.section-header {
  width: 100vw;
  height: 100vh;
}

.nav {
  position: fixed;
  /* changed from % to vw */
  width: 100vw;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4em;
  background: transparent;
  z-index: 1001;
}

@media only screen and (max-width: 800px) {
  .nav {
    height: 70px;
    padding: 0;
    display: inline-flex;
  }
}

.nav a {
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  padding: 0 1em;
  font-family: "safiromedium";
  font-weight: 500;
  font-size: 12px;
}

@media only screen and (max-width: 800px) {
  .nav a {
    padding: 0 1em;
  }
}

.logo {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "safiromedium";
  padding: 1em;
  z-index: 1000;

  mix-blend-mode: difference;
}

.container {
  /* changed from % to vw */
  width: 100vw;
  height: 100vh;
}

.section_intro {
  /* changed from % to vw */
  width: 100vw;
  padding: 0 4em;
  align-items: center;
  position: relative;
  /* background-color: blue; */
}

.section_intro img {
  width: 60vw;
  animation: appear-img linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.text-intro {
  position: absolute;
  font-size: 22px;
  color: white;
  /* mix-blend-mode: multiply; */
  z-index: 100;
  animation: appear-text-right linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.text-name {
  top: 43%;
  right: 40%;
}
.text-sign {
  top: 50%;
  left: 30%;
}
.text-location {
  top: 12%;
  right: 45%;
}

.section_title {
  font-size: 3em;
  text-transform: uppercase;
  margin-top: 5rem;
  margin-bottom: 3rem;
  animation: appear-img linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.section_subtitle {
  text-transform: uppercase;
  width: 75%;
  margin-bottom: 5rem;
  text-align: center;
  animation: appear-text-left linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@keyframes appear-text-right {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes appear-text-left {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.card_intro {
  width: 300px;
  height: 300px;
  z-index: 1000;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  position: absolute;
  top: 23%;
  right: 15%;
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
}

.card_intro p {
  mix-blend-mode: difference;
}

.section_slider {
  margin-top: 5rem;
  margin-bottom: 5rem;
  /* width: 100vw; */
  /* background-color: red; */
  display: grid;
  place-items: center;
}

@media only screen and (max-width: 800px) {
  .section_slider {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}

.slider_container {
  /* background-color: green; */
  height: 300px;
  width: 85vw;
  max-width: 1400px;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.slider_container .slider-btn {
  position: absolute;
  top: calc(50% - 30px);
  height: 15px;
  width: 15px;
  border-left: 8px solid #696969;
  border-top: 8px solid #696969;
  cursor: pointer;
  z-index: 1000;
}

.slider_container .slider-btn:hover {
  border-color: red;
}

.slider_container .slider-btn.inactive {
  border-color: #282828;
}

.slider_container .slider-btn:first-of-type {
  transform: rotate(-45deg);
  left: 10px;
}
.slider_container .slider-btn:last-of-type {
  transform: rotate(135deg);
  right: 10px;
}

/* slider css */
.slider_container .slider {
  display: flex;
  width: 1000%;
  height: 100%;
  transition: all 0.5s;
}

.slider_container .slider .slide {
  height: 90%;
  margin: auto 10px;
  display: grid;
  place-items: center;
  transition: all 0.5s;
}

.slider_container .slider .slide:hover {
  transform: scale(1.3);
}

.img-slide-1 {
  background-image: url(/img/img-1.JPG);
  background-size: cover;
}
.img-slide-2 {
  background-image: url(/img/img-2.JPG);
  background-size: cover;
}
.img-slide-3 {
  background-image: url(/img/img-3.JPG);
  background-size: cover;
}
.img-slide-4 {
  background-image: url(/img/img-4.JPG);
  background-size: cover;
}
.img-slide-5 {
  background-image: url(/img/img-5.JPG);
  background-size: cover;
}
.img-slide-6 {
  background-image: url(/img/img-6.JPG);
  background-size: cover;
}
.img-slide-7 {
  background-image: url(/img/img-7.JPG);
  background-size: cover;
}
.img-slide-8 {
  background-image: url(/img/img-8.JPG);
  background-size: cover;
}
.img-slide-9 {
  background-image: url(/img/img-9.JPG);
  background-size: cover;
}
.img-slide-10 {
  background-image: url(/img/img-10.JPG);
  background-size: cover;
}

@media only screen and (min-width: 1100px) {
  .slider_container .slider .slide {
    width: calc(2.5% - 20px);
  }
}
@media only screen and (max-width: 1100px) {
  .slider_container .slider .slide {
    width: calc(3.3333333% - 20px);
  }
}
@media only screen and (max-width: 900px) {
  .slider_container .slider .slide {
    width: calc(5% - 20px);
  }
}
@media only screen and (max-width: 550px) {
  .slider_container .slider .slide {
    width: calc(10% - 20px);
  }
}

/* dj section */

.section_music {
  margin-top: 5rem;
  margin-bottom: 5rem;
  /* width: 100vw; */
  /* background-color: salmon; */
  display: grid;
  place-items: center;
}

@media only screen and (max-width: 800px) {
  .section_music {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.music_box-1 {
  display: flex;
  flex-direction: column;
  width: 350px;
  height: 450px;
  border-radius: 10px;

  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  animation: appear-img-2 linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@keyframes appear-img-2 {
  from {
    opacity: 0;
    scale: 0.8;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
.music_art_img {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 5px solid rgb(160, 160, 160);
}

.music_artist {
  margin-bottom: 35px;
  margin-bottom: 10px;
}

.music_art_name {
  text-align: center;
  overflow: hidden;
  width: 200px;
}

.round {
  animation: round 4s linear infinite;
}

@keyframes round {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

.run {
  animation: run 6s linear infinite;
}

@keyframes run {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.music_ctrl {
  cursor: pointer;
  background-color: rgb(226, 226, 218);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin: 0 15px;
}

.music_ctrl:active {
  transform: scale(0.9);
}

.music_icon {
  height: 2rem;
  width: 2rem;
  fill: black;
}

.none {
  display: none;
}

.music_msc {
  margin-top: 30px;
}

.music_prog {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  width: 80%;
}

.music-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
}

.music-line {
  width: 100%;
  height: 5px;
  margin-top: 5px;
  background-color: rgb(202, 202, 202);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

.lineChild {
  cursor: pointer;
  position: absolute;
  border-radius: 10px;
  background-color: yellow;
  width: 0%;
  height: 100%;
  transition: width 0.1s;
}

.lineChild::after {
  content: "";
  position: absolute;
  background-color: black;
  cursor: pointer;
  top: -3px;
  right: 0;
  height: 12px;
  width: 12px;
  border-radius: 50%;
}

/* live gigs section */

.section_dj {
  margin-top: 7rem;
  margin-bottom: 5rem;
  display: grid;
  place-items: center;
}

.row {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 800px) {
  .row {
    flex-direction: column;
  }
}

.col {
  height: 100%;
}

.col_1 {
  width: 45%;
  margin-right: 20px;
}

.col_2 {
  width: 55%;
  position: relative;
}

@media only screen and (max-width: 800px) {
  .col_1 {
    width: 80%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 800px) {
  .col_2 {
    width: 80%;
    height: 15rem;
  }
}

.dj_caption {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 22px;
  padding: 30px;
  animation: appear-text-right linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

video {
  width: 45%;
  position: absolute;
  filter: saturate(10%);
  z-index: 10;
  animation: appear-img linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@keyframes appear-img {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

video:hover {
  filter: saturate(50%);
  z-index: 100;
  transform: scale(1.05) translateY(-0.5rem);
}

@media only screen and (max-width: 1000px) {
  video {
    width: 55%;
  }
}
@media only screen and (max-width: 512px) {
  video {
    width: 75%;
  }
}

.video_1 {
  top: -5rem;
  right: 5rem;
}

@media only screen and (max-width: 800px) {
  .video_1 {
    top: 0;
  }
}

.video_2 {
  left: 10rem;
  bottom: -2rem;
}

@media only screen and (max-width: 800px) {
  .video_2 {
    left: 5rem;
    bottom: 0;
  }
}

/* footer */

.footer {
  height: 5%;
  display: flex;
  gap: 2rem;
  overflow-x: hidden;
  border-block: 1px solid;
}

.marquee {
  padding-block: 8px;
  flex-shrink: 0;
  list-style: none;
  display: flex;
  user-select: none;
  justify-content: space-between;
  gap: 2rem;
  animation: scroll-marquee 20s linear infinite;
}

.marquee ul:first-child {
  background-color: yellow;
}
.marquee ul:last-child {
  background-color: pink;
}

@keyframes scroll-marquee {
  to {
    transform: translateX(-100%);
  }
}
