/*
Theme Name: Decadeland Radio Theme
Theme URI: http://localhost/mywordpress/
Author: Jijzelf
Version: 1.0
Description: Retro jaren '80 radiosite met neonstijl en custom audio player
*/

@import url('https://fonts.googleapis.com/css2?family=Squada+One&display=swap');

body {
  background-color: #fff7e6;
  background-image: url('./assets/decadeland-logo.png'), url('./assets/decadeland-logo.png');
  background-repeat: repeat-y, repeat-y;
  background-position: left center, right center;
  background-size: 100px auto;
  font-family: 'Squada One', sans-serif;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
}

main.container {
  max-width: 800px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.96);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

/* 🔹 Navigatie */
nav.container-fluid {
  background: #ff5cac;
  color: white;
  padding: 1rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}

nav a:hover,
nav a:focus {
  background-color: #00f6ff;
  color: #000;
}

/* 🔸 Titels */
h1, h2, h3 {
  font-family: 'Squada One', sans-serif;
  color: #ff5cac;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

/* 🔸 Knoppen bovenaan */
.btn-home, .btn-live {
  background-color: #ff5cac;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 0 8px #ff5cac, 0 0 4px #00f6ff;
  transition: 0.2s ease-in-out;
  margin-right: 1rem;
}

.btn-home:hover, .btn-live:hover {
  background-color: #00f6ff;
  color: #fff;
  box-shadow: 0 0 10px #00f6ff;
}

/* 🎛️ Neon Metallic Audio Player */
.player {
  background: linear-gradient(145deg, #1b1b1b, #2c2c2c);
  border: 4px solid #00f6ff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow:
    0 0 20px #00f6ff,
    0 0 40px #ff5cac inset,
    0 0 10px #cccccc inset;
  color: #fff;
  font-family: 'Squada One', sans-serif;
  margin-top: 2rem;
  text-align: center;
  transition: 0.3s ease-in-out;
}

.player:hover {
  box-shadow:
    0 0 30px #ff5cac,
    0 0 50px #00f6ff inset;
  transform: scale(1.01);
}

audio {
  width: 100%;
  max-width: 100%;
  border: 2px solid #ff5cac;
  background: linear-gradient(to right, #1e1e1e, #3a3a3a);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 0 10px #00f6ff, inset 0 0 5px #ff5cac;
}

audio::-webkit-media-controls-panel {
  background-color: #1a1a1a;
  border-radius: 8px;
}

audio::-webkit-media-controls-timeline {
  background-color: #000 !important;
  height: 5px;
  border-radius: 4px;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
  color: #fff !important;
  text-shadow: 0 0 3px #00f6ff;
}

.nowplaying {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #00f6ff;
  font-weight: bold;
  text-shadow: 0 0 4px #ff5cac, 0 0 6px #00f6ff;
}

/* 🔻 Footer */
footer.container {
  margin-top: 4rem;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

footer.container small strong {
  color: #ff5cac;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  body {
    background-size: 50px auto;
  }

  .btn-home, .btn-live {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
}
