/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 4rem 2rem;
  background-size: cover;
  background-position: center;
  height: 60vh;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  background-color: #8c532d; /* Gold-brown */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-buttons .btn:hover {
  background-color: #d4af37; /* Gold */
}
