@import url("https://fonts.googleapis.com/css2?family=Shrikhand&display=swap");
@import url(./about.css);
@import url(./artists.css);
@import url(./footer.css);
@import url(./schedule.css);

@font-face {
  font-family: "Neue Montreal";
  src: url(../assets/PP Neue Montreal - Free for Personal Use v2.6/OTF/PPNeueMontreal-Bold.otf);
}

:root {
  --bg-main: #010101;
  --fg-main: #fef9e7;
  --fg-alt: #941105;
  --blue: #052136;
  --text-dk: 80px;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: "Neue Montreal", sans-serif;
}
body {
  background-color: var(--bg-main);
  color: var(--fg-main);
}

header {
  color: rgba(255, 255, 255, 1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 100px;
  backdrop-filter: blur(12px) saturate(200%);
  -webkit-backdrop-filter: blur(12px) saturate(200%);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
}

#logo {
  color: var(--fg-alt);
  font-size: 35px;
  text-shadow: 3px 1px 1px currentColor;
  font-weight: 900;
}
#menu {
  display: none;
}

ul {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

ul li button {
  margin-left: 20px;
  color: var(--fg-main);
  background-color: transparent;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid var(--fg-main);
  border-radius: 20px;
  padding: 10px 25px;
  transition:
    background-color,
    color,
    0.5s ease-in;
}

ul li button:hover {
  color: var(--bg-main);
  background-color: var(--fg-main);
}

ul li a {
  font-size: 18px;
  color: rgba(255, 255, 255, 1);
  font-family: "Neue Montreal", sans-serif;
}

.hover-underline {
  position: relative;
  color: var(--fg-main);
}

.hover-underline::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: var(--fg-main);
  transition: width 0.3s ease-in;
}

.hover-underline:hover::after {
  width: 100%;
}

section {
  height: 100vh;
}

#hero {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(
      0deg,
      var(--bg-main) 5%,
      rgba(0, 0, 0, 0) 100%
    ),
    url(../assets/europeana-5TK1F5VfdIk-unsplash.jpg);
  background-size: cover;
}

#hero h1 {
  padding: 80px 0 20px 0;
  text-align: center;
  color: var(--fg-main);
  font-family: "neue montreal", sans-serif;
  font-weight: 900;
  letter-spacing: -15px;
  line-height: 1;
  font-size: 200px;
}

.hero_animation {
  display: inline-flex;
  width: 210px;
  height: 130px;
  border-radius: 30px;
  position: relative;
}
.hero_animation img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.ani_container {
  width: 210px;
  height: 130px;
  border-radius: 30px;
  position: relative;
}

.ani_container img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.hero_animation:hover .image1 {
  animation: ani1 1s linear infinite;
}
.hero_animation:hover .image2 {
  animation: ani2 1s linear infinite;
}
.hero_animation:hover .image3 {
  animation: ani3 1s linear infinite;
}
.hero_animation:hover .image4 {
  animation: ani4 1s linear infinite;
}

@keyframes ani1 {
  0% {
    visibility: visible;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

@keyframes ani2 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: hidden;
  }
}

@keyframes ani3 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}

@keyframes ani4 {
  0% {
    visibility: hidden;
  }
  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

@media screen and (max-width: 480px) {
  header {
    width: 100vw;
    padding: 20px 20px;
  }
  #logo {
    font-size: 25px;
  }
  header nav {
    display: none;
  }

  #menu {
    display: inline;
  }

  #menu svg {
    color: var(--fg-main);
  }

  #hero h1 {
    padding: 0;
    letter-spacing: -5px;
    font-size: 80px;
  }
  .hero_animation {
    display: none;
  }
}
