* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111;
  color: #f1f1f1;
  line-height: 1.6;
}

a {
  color: #f1f1f1;
  text-decoration: none;
}

header {
  background: url('https://images.unsplash.com/photo-1518976024611-4886eeb33d6b') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

header .overlay {
  background-color: rgba(0, 0, 0, 0.75);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.band-logo {
  width: 120px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 5px #000);
}

header h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: crimson;
}

header .slogan {
  font-size: 1.5rem;
  font-style: italic;
  color: #ccc;
}

nav {
  background: #222;
  padding: 10px 0;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav li {
  margin: 0 15px;
}

nav a:hover {
  color: crimson;
}

/* Sections */

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid crimson;
  display: inline-block;
  padding-bottom: 5px;
}

.members {
  list-style-type: square;
  padding-left: 20px;
}

.music-links {
  margin-top: 15px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.music-links a {
  background: crimson;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.music-links a:hover {
  background: darkred;
}

.embed-player {
  margin-top: 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 20px auto;
}

form input,
form textarea {
  padding: 10px;
  border: none;
  background: #333;
  color: #fff;
  border-radius: 5px;
  resize: vertical;
}

form button {
  padding: 10px;
  background: crimson;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: darkred;
}

/* Footer */

footer {
  background: #111;
  text-align: center;
  padding: 20px 10px;
  color: #aaa;
  border-top: 1px solid #222;
}

.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links img {
  width: 30px;
  height: 30px;
  filter: invert(70%);
  transition: transform 0.2s ease, filter 0.3s;
}

.social-links img:hover {
  transform: scale(1.2);
  filter: invert(100%) sepia(100%) saturate(500%) hue-rotate(340deg);
}

/* Cookie banner */

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #222;
  color: #fff;
  padding: 15px 20px;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  gap: 10px;
  flex-wrap: wrap;
  box-sizing: border-box;
  font-size: 0.9rem;
}

#cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

#cookie-banner a {
  color: crimson;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-buttons button {
  background: crimson;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-buttons button:hover {
  background: darkred;
}

/* Responsive */

@media (max-width: 768px) {
  header h1 {
    font-size: 3rem;
  }

  header .slogan {
    font-size: 1.2rem;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  nav li {
    margin: 0;
  }

  section {
    padding: 40px 15px;
  }

  .music-links {
    flex-direction: column;
    gap: 15px;
  }

  form {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }

  header .slogan {
    font-size: 1rem;
  }

  .band-logo {
    width: 90px;
  }

  #cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
}
