/* === Variables === */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --black: #0a0a0a;
  --dark: #111111;
  --mid: #1a1a1a;
  --white: #f0f0f0;
  --muted: #888;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
}

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
}

/* === Hero === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('bandpic1.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.65) 60%,
    rgba(0, 0, 0, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo {
  width: min(520px, 82vw);
  display: block;
}

.hero-tagline {
  font-size: 0.95rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 42px;
  border: 2px solid var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.hero-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* === Sections === */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--dark);
}

.section-black {
  background: var(--black);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

/* === About === */
.about-text {
  font-size: 1.1rem;
  line-height: 1.95;
  color: #bbb;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* === Band Photo === */
.band-photo-section {
  width: 100%;
  overflow: hidden;
  max-height: 480px;
  line-height: 0;
}

.band-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.08);
}

/* === Video === */
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* === Band Members === */
.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px;
}

.member {
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  background: var(--mid);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s;
}

.member:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: #1e1b10;
}

.member-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.member-role {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* === Events === */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--mid);
}

.event-date {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 76px;
  line-height: 1.1;
}

.event-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.event-name a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.event-name a:hover {
  color: var(--gold);
}

.event-location {
  font-size: 0.82rem;
  color: var(--muted);
}

/* === Song Grid === */
.song-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 28px;
}

.song-item {
  background: var(--dark);
  padding: 12px 16px;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}

.song-item:hover {
  background: #1a180f;
}

.song-title {
  flex: 1;
}

.artist {
  color: var(--gold);
  font-size: 0.76rem;
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}

.song-note {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  font-style: italic;
}

/* === Footer === */
.footer {
  background: #060606;
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.footer-contact,
.footer-email {
  margin-bottom: 8px;
}

.footer-contact a,
.footer-email a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-contact a:hover,
.footer-email a:hover {
  color: var(--gold);
}

/* === Responsive === */
@media (max-width: 768px) {
  .navbar {
    padding: 14px 4%;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links li:not(:last-child) {
    display: none;
  }

  .section-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .event-item {
    flex-direction: column;
    gap: 6px;
  }

  .song-grid {
    grid-template-columns: 1fr;
  }

  .band-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}
