/* General Styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #d4af37; /* Gold */
  line-height: 1.7;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: #000;
  text-align: center;
  padding: 120px 20px 100px;
}

.hero .logo {
  width: 100px;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.slogan {
  font-style: italic;
  font-size: 1.2rem;
  color: #caa44f;
  margin-top: 10px;
}

/* Section Styles */
.section {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.section h2 {
  border-bottom: 1px solid #d4af37;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 12px 0;
  font-size: 1.1rem;
}

/* Links */
a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  color: #caa44f;
  border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .section {
    margin: 60px 20px;
  }
}
