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

body {
  min-height: 100vh;
  background-image: url('../images/prof_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: 'Cinzel', serif;
  color: #f5f5f5;
}

.overlay {
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Band Name */
.band-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #ffffff;
  margin-bottom: 3rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.social-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

/* BandsInTown Widget */
.gigs-section {
  margin: 2rem 0;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.gigs-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
  margin-top: 3rem;
  text-align: center;
}

.contact h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact a:hover {
  opacity: 0.7;
}

.contact p {
  font-size: 1rem;
  line-height: 1.8;
}

.contact-name {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 600px) {
  .social-links {
    flex-direction: column;
    gap: 1rem;
  }

  .social-links a {
    text-align: center;
  }
}
