/* Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  background: #b30000;
  color: #fff;
  padding: 1rem 0;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.nav-links a.active {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: url('/assets/images/hero-lights.jpg') center/cover no-repeat;
  height: 85vh;
  position: relative;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-content {
  color: #fff;
  text-align: center;
  padding: 0 1rem;
}
.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  background: #00cc66;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
}

/* Footer */
.footer {
  background: #f2f2f2;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
