/* ===============================
   Algemene stijl
=============================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

a {
  color: #99ccff;
  text-decoration: none;
}

/* ===============================
   Header / Navigatie
=============================== */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #111;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  justify-content: center;
}

nav li {
  margin: 0;
}

nav a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

nav a:hover {
  background-color: #333;
}

/* ===============================
   Responsief ontwerp
=============================== */
@media (max-width: 700px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .logo {
    margin-bottom: 10px;
  }
}

/* ===============================
   Taalwisselaar + lettergrootte
=============================== */
.language-switcher {
  text-align: right;
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
}

.language-switcher a img {
  width: 32px;
  height: 22px;
  margin-left: 10px;
  vertical-align: middle;
  border: 1px solid #444;
  border-radius: 4px;
  object-fit: cover;
  display: inline-block;
}

.language-switcher a img:hover {
  border-color: #888;
}

.font-size-buttons {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.font-size-buttons img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-left: 5px;
  vertical-align: middle;
  border: 1px solid #444;
  border-radius: 4px;
  background: #222;
  padding: 2px;
}

/* ===============================
   Hoofdinhoud
=============================== */
main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
  color: white;
  font-size: 16px;
}

h2 {
  margin-top: 30px;
}

/* ===============================
   Media embeds
=============================== */
iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  margin: 20px auto;
  display: block;
}

iframe[src*="soundcloud.com"] {
  height: 450px;
}

audio {
  width: 100%;
  margin: 10px 0 30px;
}

/* ===============================
   Playlist
=============================== */
#playlist li {
  cursor: pointer;
  padding: 5px;
}

#playlist li:hover {
  background: #333;
}

#playlist li.active {
  color: yellow;
  font-weight: bold;
}

/* ===============================
   Social media links
=============================== */
.social-link {
  line-height: 2;
  margin-top: 20px;
}

.social-link img {
  vertical-align: middle;
  margin-right: 8px;
  width: 24px;
  height: 24px;
}

/* ===============================
   Icon-knoppen algemeen
=============================== */
.icon-button {
  width: 32px;
  height: 32px;
  background-color: #222;
  border: 1px solid #444;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  cursor: pointer;
  padding: 2px;
  transition: background-color 0.2s ease;
}

.icon-button:hover {
  background-color: #333;
}

/* ===============================
   Winkel / Shop layout
=============================== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1100px;
  margin: auto;
}

.shop-item {
  background-color: #111;
  border: 1px solid #333;
  padding: 15px;
  text-align: center;
  color: white;
  transition: transform 0.2s ease;
}

.shop-item:hover {
  transform: scale(1.02);
}

.shop-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.shop-item h3 {
  margin: 10px 0 5px;
}

.shop-item p {
  font-size: 0.9em;
  color: #ccc;
}

/* ===============================
   Events pagina
=============================== */
.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}

.event-text h3 {
  margin: 0 0 10px;
}

.event-photo img {
  max-width: 100%;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}
.color-dub { color: red; }
.color-valle { color: yellow; }
.color-hifi { color: #00ff00; } /* felgroen */


