/* Reset margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #666;
  background-color: #000;
  background-image: url('../css2017/snakio2025_bg.jpg');
  background-position: center;
  background-attachment: fixed;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  padding: 20px;
}

.site-header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.social-nav {
  text-align: center;
  margin-bottom: 2rem;
}

.social-nav p {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.social-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.social-nav ul li a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-nav ul li a:hover img {
  transform: scale(1.1);
}

.vintage-site-link {
  text-align: center;
  margin-bottom: 2rem;
}

.vintage-site-link a {
  color: #666;
  font-weight: bold;
  text-decoration: underline;
  font-size: 1.2rem;
}

.vintage-site-link a:hover {
  color: #999;
}

.band-members {
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
}

.band-members h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.band-members ul {
  list-style: none;
}

.band-members ul li {
  margin: 0.25rem 0;
  font-size: 1.1rem;
}

.contact-us {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-us h2 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.contact-us a {
  color: #666;
  font-weight: bold;
  text-decoration: none;
}

.contact-us a:hover {
  text-decoration: underline;
}

.spotify-player {
  text-align: center;
  margin-bottom: 2rem;
}

.tech-info {
  text-align: center;
  margin-bottom: 2rem;
}

.tech-info img {
  vertical-align: middle;
  margin-right: 6px;
}

.site-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 3rem;
}

.site-footer img {
  vertical-align: middle;
  margin-right: 8px;
}