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

body {
  font-family: "Georgia", serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  line-height: 1.6;
}

.hero {
  /*background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23334155" width="1200" height="400"/><text x="600" y="200" font-size="72" fill="%23e0e7ff" text-anchor="middle" font-family="serif" font-weight="bold">Solstice on the Square</text></svg>');*/
  background-size: cover;
  background-position: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-image {
  max-width: 1200px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  font-size: 3em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}

.event-details {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.event-details p {
  font-size: 1.2em;
  margin: 10px 0;
}

.spotify-link {
  display: inline-block;
  background: #1DB954;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  margin: 20px 0;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.spotify-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(29, 185, 84, 0.4);
}

.song-list-title {
  font-size: 2em;
  margin: 40px 0 20px;
  text-align: center;
  color: #ffd700;
}

.accordion {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.accordion-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  border-left: 4px solid #ffd700;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.15);
}

.accordion-header h3 {
  font-size: 1.3em;
  color: #ffd700;
}

.accordion-icon {
  font-size: 1.5em;
  transition: transform 0.3s;
}

.accordion.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(0, 0, 0, 0.3);
}

.accordion-content-inner {
  padding: 10px;
  font-size: 1.3rem;
  line-height: 1.8;
  white-space: pre-wrap;
}

.loading {
  font-style: italic;
  color: #94a3b8;
  text-align: center;
}

.error {
  color: #fca5a5;
  font-style: italic;
}

.songwriter-credit {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-style: italic;
  color: #94a3b8;
  font-size: 0.9em;
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #94a3b8;
  font-size: 0.9em;
  margin-top: 40px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */