/* ── Import Outrun-style font ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

/* ── Global Reset & Base Styles ─────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #000;
  color: #eee;
  font-family: 'Orbitron', sans-serif;
  line-height: 1.6;
}

/* ── HEADER & NAV ───────────────────────────────────────────────────── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 100;
}
header .logo {
  height: 50px;   /* controls logo size */
  width: auto;
}
header nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #eee;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.2s ease;
}
header nav a:hover,
header nav a.active {
  color: #0ff;
}
header nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #0ff;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}
header nav a:hover::after,
header nav a.active::after {
  width: 100%;
}

/* ── HERO SECTION ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: url('images/header-desktop.png') no-repeat center/cover;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}
.hero-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

/* swap in mobile header art */
@media (max-width: 600px) {
  .hero {
    background: url('images/header-mobile.png') no-repeat center/cover;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
}

/* ── MAIN CONTENT ─────────────────────────────────────────────────── */
main {
  padding: 2rem;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.9);
  font-size: 0.8rem;
  color: #888;
}

/* ── Utility classes for neon accents ────────────────────────────── */
.neon {
  color: #0ff;
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff;
}

/* ── Example: your “Upcoming Events” headings ───────────────────────── */
h2 {
  margin-top: 2rem;
  font-size: 1.6rem;
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #0ff;
  margin-top: 0.3rem;
}
