* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Fira Sans', sans-serif;
  background-color: #2b2d42;
  color: #d4d4d4;
  line-height: 1.6;
}

a {
  color: #29b8c0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Navigation */
nav {
  background-color: #1e1f30;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #29b8c0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  color: #d4d4d4;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

nav ul a:hover {
  color: #29b8c0;
  text-decoration: none;
}

/* Header / Hero */
.hero {
  text-align: center;
  padding: 3rem 1rem;
}

.hero img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: #29b8c0;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: #8d99ae;
}

/* Sections */
section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

section h2 {
  font-size: 1.8rem;
  color: #29b8c0;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Music */
.music-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.music-item {
  background-color: #1e1f30;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.music-item span {
  min-width: 150px;
  font-weight: 500;
}

.music-item audio {
  flex: 1;
  width: 100%;
}

/* Videos */
.video-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem;
}

.video-item {
  background-color: #1e1f30;
  border-radius: 8px;
  padding: 1rem;
}

.video-item h3 {
  font-size: 1rem;
  color: #d4d4d4;
  margin-bottom: 0.75rem;
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
}

.channel-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

/* Contact */
#kontakt {
  text-align: center;
}

#kontakt a {
  font-size: 1.2rem;
  font-weight: 500;
}

/* About */
.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  margin-bottom: 1rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  line-height: 0;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  color: #8d99ae;
  font-size: 0.85rem;
  border-top: 1px solid #3a3b54;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  nav ul {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .music-item {
    flex-direction: column;
    align-items: stretch;
  }

  .music-item span {
    min-width: auto;
  }

  .video-list {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}
