/* ─── RESET & THEME VARS ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --clr-bg: #111;
  --clr-light: #f5f5f5;
  --clr-accent: #1db954;
  --font-sans: 'Inter', sans-serif;
  --spacing: 1rem;
  --header-height: 60px;
}

/* ─── BASE BODY & CONTAINER ───────────────────────────────────────────── */
body {
  background: var(--clr-bg);
  color: var(--clr-light);
  font-family: var(--font-sans);
  padding-top: var(--header-height); /* offset for fixed header */
}
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--spacing);
}

/* ─── HEADER / NAVBAR ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  z-index: 1000;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img {
  max-height: 40px;
  width: auto;
  display: block;
}
.site-nav ul {
  display: flex;
  gap: var(--spacing);
  list-style: none;
}
.site-nav a {
  color: var(--clr-light);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem;
  transition: opacity .2s;
}
.site-nav a:hover {
  opacity: 0.7;
}

/* ─── HERO BANNER ─────────────────────────────────────────────────────── */
.hero {
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  background-size: cover;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--spacing);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing);
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: calc(2 * var(--spacing));
}
.btn {
  display: inline-block;
  background: var(--clr-accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ─── LIVE SECTIONS ───────────────────────────────────────────────────── */
.section.live {
  background: #000;
  padding: 3rem 0;
}

/* ─── STANDARD SECTIONS ───────────────────────────────────────────────── */
.section {
  padding: 3rem 0;
}

/* ─── ABOUT ───────────────────────────────────────────────────────────── */
.section.about {
  background: var(--clr-light);
  color: #000;
}
.section.about h2 {
  color: var(--clr-accent);
}

/* ─── CONTACT ─────────────────────────────────────────────────────────── */
.section.contact {
  background: var(--clr-bg);
  color: var(--clr-light);
}
.section.contact h2 {
  color: var(--clr-light);
}
.section.contact ul {
  list-style: none;
  display: grid;
  grid-gap: var(--spacing);
}
.section.contact a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color .2s;
}
.section.contact a:hover {
  color: #fff;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-bg);
  color: var(--clr-light);
  padding: 2rem 0;
  text-align: center;
}
.footer-nav ul {
  list-style: none;
  display: inline-flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-nav a {
  color: var(--clr-light);
  text-decoration: none;
  font-size: 0.9rem;
}

/* ─── RESPONSIVE TWEAKS ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 4rem 0;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
