
body, html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  scroll-behavior: smooth;
}
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 1rem;
  justify-content: center;
}
nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}
nav .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
}
.hero video {
  width: 100%;
  height: auto;
  display: block;
}
.hero-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  width: 100%;
  padding: 0 10px;
  z-index: 2;
}
.hero-content h1 {
  font-size: 6vw;
  margin: 0;
}
.hero-content p {
  font-size: 3vw;
  margin: 0.5em 0;
}
section {
  padding: 4rem 1rem;
  text-align: center;
}
iframe {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  nav ul {
    flex-direction: column;
    display: none;
    background-color: rgba(0,0,0,0.9);
    padding-bottom: 1rem;
  }
  nav ul.active {
    display: flex;
  }
  nav .menu-toggle {
    display: block;
  }
  .hero-content h1 {
    font-size: 8vw;
  }
  .hero-content p {
    font-size: 4vw;
  }
}


.artist-marquee {
  width: 100%;
  overflow: hidden;
  background: #111;
  color: #fff;
  padding: 1rem 0;
  position: relative;
  white-space: nowrap;
  box-sizing: border-box;
}

.artist-track {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 25s linear infinite;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


body {
  font-family: 'Staatliches', sans-serif;
}

nav {
  position: sticky;
  top: 0;
  z-index: 999;
}

body {
  background: #111;
  color: white;
}

href {
	color: rgba(255,253,0,1.00);
}

a:link,
a:visited {
  color: rgba(255,253,0,1.00);      /* sima szöveg színe */
  text-decoration: none;
}

