
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #fff;
  background-color: #0a0a0a;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('img/feature.jpg') center/cover no-repeat;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #fff;
  margin: 0 20px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #d4af37;
}

.hero-content {
  text-align: center;
  margin-top: 20vh;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background-color: #d4af37;
  color: #000;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

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

.about {
  text-align: center;
  padding: 80px 20px;
  background-color: #111;
}

.about h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

footer {
  text-align: center;
  background-color: #000;
  padding: 15px 0;
  font-size: 0.9rem;
}
