/* Base styles */
* {
  box-sizing: border-box;
}

:root {
  --primary-color: #f15a24; /* vibrant orange accent */
  --bg-color: #0b0b0b;    /* dark background */
  --text-color: #ffffff;   /* white text */
  --muted-color: #cccccc;
}

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

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
}

.logo {
  height: 48px;
  width: auto;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

nav li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* Hero section */
header {
  height: 100vh;
  background: url('hero-bg.png') no-repeat center center/cover;
  position: relative;
  color: var(--text-color);
}

.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero h1 {
  font-size: 5rem;
  margin: 0;
  letter-spacing: 2px;
}

.tagline {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #d24a1e;
}

/* Section styles */
section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

section h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

section p,
section li {
  color: var(--muted-color);
  font-size: 1rem;
}

/* Venue list */
.venues {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}

.venues li {
  margin-bottom: 0.5rem;
}

/* Social icons */
.socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-icon {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #d24a1e;
}

/* Footer */
footer {
  background-color: #000;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #888;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  section {
    padding: 3rem 1.5rem;
  }
  .venues {
    columns: 1;
  }
  nav ul {
    gap: 1rem;
  }
}