/* Global */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

h1, h2 {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

section {
  padding: 60px 20px;
  text-align: center;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('hero-bg.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeIn 2s ease-out;
}

/* Logo */
.logo-container {
  margin-bottom: 20px;
  animation: fadeIn 3s ease-in-out;
}

.logo-container img {
  width: 30vw;   /* 30% of screen width */
  max-width: 500px; /* don’t let it get TOO huge */
  min-width: 200px; /* don’t let it shrink too small */
  height: auto;
  transition: opacity 0.5s;
}

/* Hero Text */
.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: gold;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  letter-spacing: 3px;
  color: #ddd;
}

/* Buttons */
.cta-buttons .btn {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 24px;
  border-radius: 30px;
  background: gold;
  color: #000;
  font-weight: bold;
  transition: 0.3s;
}

.cta-buttons .btn:hover {
  background: #fff;
  color: #000;
}

.btn-outline {
  background: transparent;
  border: 2px solid gold;
  color: gold;
}

.btn-outline:hover {
  background: gold;
  color: #000;
}

/* Music Player */
.music-player iframe {
  border: none;
  border-radius: 12px;
  max-width: 600px;
  margin: 20px auto;
}

/* Gigs */
#gigs ul {
  list-style: none;
  padding: 0;
}

#gigs li {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* Footer */
footer {
  padding: 30px 20px;
  background: #111;
  text-align: center;
}

footer .socials a {
  margin: 0 10px;
  color: gold;
  transition: 0.3s;
}

footer .socials a:hover {
  color: #fff;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
