
:root {
  --bg-color: #0a0014;
  --accent: #7a00ff;
  --highlight: #b266ff;
  --text: #e0d8f0;
  --subtext: #8881a7;
}



.dropdown {
  margin: 1em 0;
  background: rgba(25, 0, 40, 0.7);
  border-radius: 10px;
  overflow: hidden;
}

.toggle {
  width: 100%;
  background: none;
  border: none;
  color: #0a0014;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  padding: 2rem;
  text-align: left;
}

.fold{
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(138,43,226,0,3);
}

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1em;
}

.content.open {
  max-height: 200rem;
  padding: 1em;
}

body {
  margin: 0;
  font-family: 'Blackletter Shadow ', sans-serif;
  background: radial-gradient(circle at 30% 30%, #1a0033, transparent 70%),
              radial-gradient(circle at 70% 70%, #350066, transparent 70%),
              radial-gradient(circle at 50% 100%, #25004f, transparent 70%);
  background-blend-mode: screen;
  animation: fogMove 20s ease-in-out infinite alternate;
  background-size: 200% 200%;
  color: #8881a7;
  overflow-x: hidden;
}

@keyframes fogMove {
  0% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
  100% {
    background-position: 100% 50%, 0% 50%, 50% 0%;
  }
}


body {
  font-family: 'Blackletter Shadow', sans-serif ;
  background-color: var(--bg-color);
  color: var(--text);
  margin: 0;
  padding: 0;
background-image: url("~/Code/band-website/images/black-spider-web-background-blue-aesthetic-r1tr3a9uz1evdsmr-3402778637.jpg") fixed center;
}

header {
  background-color: rgba(20, 0, 40, 0.9);
  text-align: left;
  padding: 2rem 2rem;
  box-shadow: 0 0 20px var(--accent);
}

h1 {
  font-size: 3rem;
  color: var(--highlight);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

nav a {
  color: var(--text);
  margin: 0 15px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  transition: color 0.3s ease;
  font-size: 2rem;
}

nav a:hover {
  color: var(--accent);
}

section {
  padding: 3rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

section h2 {
  color: var(--highlight);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--accent);
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 1.5rem;
}

.gallery img {
  width: 220px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--highlight);
}

footer {
  background-color: #100000;
  text-align: left;
  padding: 2rem;
  color: var(--subtext);
  font-size: 1.2rem;
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--highlight);
}
