body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #121212;
  color: #e5e5e5;
  line-height: 1.6;
}

.navbar {
  background-color: #1c1c1c;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-content {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #555;
}

.brand span {
  font-weight: bold;
  color: #ccc;
  font-size: 1.2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f0f0f0;
}

.hero {
  position: relative;
  background: url("hero-spencer.jpg") center/cover no-repeat;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.6);
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  background: rgba(40, 40, 40, 0.85);
  padding: 2rem 3rem;
  border-radius: 10px;
  border: 1px solid #555;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  text-align: center;
}

.hero-content h1 {
  color: #f2f2f2;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  color: #d0d0d0;
  font-size: 1.1rem;
}

.content-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.content-section h2 {
  color: #ccc;
  border-bottom: 2px solid #555;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
}

.contact-list a {
  color: #b0b0b0;
  text-decoration: none;
}

.contact-list a:hover {
  color: #f0f0f0;
}

footer {
  background-color: #1c1c1c;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid #333;
  color: #aaa;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-links a:hover {
  color: #f0f0f0;
}
