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

html, body {
  height: 100%;
  background: #050509;
  color: #f2f2f2;
  font-family: 'Roboto', sans-serif;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  background: rgba(5,5,9,0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: #fff;
}

.logo span {
  color: #ff3434;
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav-link {
  text-decoration: none;
  color: #ddd;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  border-color: #ff3434;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh; /* a bit taller so more of the image shows */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-color: #050509;
  background-image: url("/images/band1.png");
  background-size: cover;
  background-position: center 80%;  /* shift view down toward the band */
  background-repeat: no-repeat;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}


.hero-content {
  position: relative;
  padding: 1rem;
  max-width: 800px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid #ff3434;
  color: #ff6666;
  transition: 0.2s;
}

.btn-primary {
  background: #ff3434;
  color: #050509;
  box-shadow: 0 0 25px rgba(255,52,52,0.4);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255,52,52,0.5);
}

/* SECTIONS */
.section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: 1000px;
  margin: auto;
}

.section-dark {
  background: #050509;
}

.section-mid {
  background: #0a0a12;
}

.section h2 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.section-subtitle {
  margin-bottom: 2rem;
  color: #aaa;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  margin-top: 1rem;
}

.gallery-placeholder {
  border: 1px dashed rgba(255,255,255,0.3);
  padding: 2.5rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}

/* STORE PAGE */
.full-height-center {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.store-coming-soon {
  text-align: center;
}

.coming-soon-text {
  margin-top: 0.5rem;
  font-size: 1.3rem;
  color: #ff8888;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 1.5rem;
  background: #050509;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* RESPONSIVE NAV */
@media (max-width: 700px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
