:root {
  --maroon-dark: #241009;
  --maroon: #3d1c12;
  --brown: #5c2f1c;
  --rust: #c15b28;
  --rust-bright: #e07a35;
  --amber: #e2a13d;
  --cream: #f5ead0;
  --cream-soft: #efe0bd;
  --text-dark: #2a1810;
  --shadow: rgba(36, 16, 9, 0.25);
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Karla', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

.eyebrow {
  font-family: 'Staatliches', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  font-size: 0.95rem;
  margin: 0 0 0.5em;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--maroon-dark);
  box-shadow: 0 2px 12px var(--shadow);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber);
}

.brand-name-img {
  height: 34px;
  width: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.primary-nav a {
  color: var(--cream-soft);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.primary-nav a:hover {
  color: var(--amber);
}

.nav-cta {
  background: var(--rust);
  color: var(--cream) !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--rust-bright);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
}

main > section {
  scroll-margin-top: 76px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: url("../images/theme-wide.png") center center / cover no-repeat;
  text-align: center;
  padding: 2rem 1.5rem 6rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,16,9,0.55) 0%, rgba(36,16,9,0.35) 45%, rgba(36,16,9,0.75) 100%);
}

.hero-content {
  position: relative;
  max-width: 700px;
  color: var(--cream);
}

.hero-eyebrow {
  font-family: 'Staatliches', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.hero-tagline {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--cream-soft);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--rust);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--rust-bright);
}

.btn-outline {
  border-color: var(--cream);
  color: var(--cream);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--maroon-dark);
}

.btn-large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

/* ---------- About ---------- */

.about {
  position: relative;
  background: url("../images/Banner.png") center / 480px repeat;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 16, 9, 0.55);
}

.about-inner {
  position: relative;
  text-align: center;
}

.about-words {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ---------- Section banners (Music / Gigs / Photos) ---------- */

.section-banner img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: top center;
}

.music {
  background: var(--cream);
}

.music .section-inner {
  text-align: center;
}

/* ---------- Contact ---------- */

.contact {
  position: relative;
  text-align: center;
  color: var(--cream);
  background: url("../images/Banner.png") center / 480px repeat;
}

.contact-inner {
  position: relative;
}

.contact-words {
  max-width: 640px;
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--maroon-dark);
  color: var(--cream-soft);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ---------- Responsive ---------- */

@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--maroon-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .primary-nav.open {
    max-height: 320px;
  }

  .primary-nav a {
    padding: 1rem 1.5rem;
    width: 100%;
  }

  .nav-cta {
    border-radius: 0;
    margin: 0.5rem 1.5rem;
    width: calc(100% - 3rem);
    text-align: center;
  }

  .hero {
    min-height: auto;
    background-size: contain;
    background-position: top center;
    background-color: var(--maroon-dark);
    padding: calc(56vw + 1.5rem) 1.5rem 3rem;
  }
}
