body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  text-align: center;
}

header {
  background: #1f1f1f;
  padding: 20px;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  color: #d4af37;
}

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

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #d4af37;
}

.hero {
  padding: 50px 20px;
}

.hero img {
  max-width: 300px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.hero .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #d4af37;
  color: #121212;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}

.hero .btn:hover {
  background: #b8952e;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1f1f1f;
  color: #aaa;
  font-size: 0.9em;
  text-align: center;
  padding: 10px 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer-logo {
  max-width: 50px;
  border-radius: 8px;
}

footer a {
  color: #d4af37;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer i {
  color: #d4af37;
  margin-right: 5px;
}
