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

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

/* BACKGROUND IMAGE WITH FALLBACK AND ANIMATION */
body {
  background: url('artists.webp') no-repeat center center fixed, linear-gradient(to bottom, #000000, #1a1a1a);
  background-size: cover;
  position: relative;
  animation: sunrise 20s infinite linear;
}

@keyframes sunrise {
  0% { background-color: rgba(0, 0, 0, 0.6); }
  50% { background-color: rgba(26, 26, 26, 0.6); }
  100% { background-color: rgba(0, 0, 0, 0.6); }
}

/* HEADER MENU */
.site-header {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.menu {
  position: relative;
  display: inline-block;
}

.menu-button {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.menu-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.menu-content {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  border-radius: 5px;
  min-width: 200px;
  z-index: 1001;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-content a {
  padding: 12px 18px;
  color: white;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.menu-content a:hover {
  background-color: #ffd700;
  color: #1a1a1a;
}

/* ARTISTS SECTION */
.artists {
  position: relative;
  width: 100%;
  text-align: center;
  color: white;
  padding: 100px 20px;
  z-index: 1;
}

.content-container {
  display: inline-block;
  padding: 30px 50px;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.main-title {
  font-size: 4.5em;
  font-weight: bold;
  font-family: 'Cinzel', 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #FFD700, #FFFFFF, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
  animation: glow 2s infinite alternate;
  position: relative;
  z-index: 2;
}

@keyframes glow {
  0% { text-shadow: 0 0 5px #FFD700; }
  100% { text-shadow: 0 0 15px #FFD700, 0 0 20px #FFA500; }
}

.subtitle {
  font-size: 1.8em;
  font-style: italic;
  color: #f0e6d2;
  margin: 15px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.artists-text {
  font-size: 1.4em;
  color: #f0e6d2;
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.artist-lists {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.artist-section {
  flex: 1;
  min-width: 250px;
}

.artist-header {
  font-size: 1.6em;
  color: #ffd700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.artist-list {
  list-style: none;
  font-size: 1.2em;
  color: #f0e6d2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  text-align: left;
}

.artist-list li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}

.artist-list li::before {
  content: '•';
  color: #ffd700;
  position: absolute;
  left: 0;
  font-size: 1.5em;
}

/* LOGO */
.peace-logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: auto;
  z-index: 2;
}

/* FOOTER */
.site-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 0.9em;
  padding: 10px 0;
  z-index: 1;
}

.site-footer p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* RESPONSIVE DESIGN */
@media (max-width: 600px) {
  .main-title {
    font-size: 3em;
  }
  .subtitle {
    font-size: 1.2em;
  }
  .artists-text {
    font-size: 1.2em;
  }
  .artist-lists {
    flex-direction: column;
  }
  .artist-header {
    font-size: 1.4em;
  }
  .artist-list {
    font-size: 1.1em;
  }
  .content-container {
    padding: 20px;
  }

  .language-switcher {
    margin-left: 15px;
    padding: 5px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    background-color: #FFD700;
    color: #1a1a1a;
    cursor: pointer;
  }
}