body {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.text-gold { color: #D4AF37; }
.border-gold { border-color: #D4AF37 !important; }

a { text-decoration: none; }

.btn-warning {
  background-color: #D4AF37;
  border: none;
  color: #000;
}
.btn-warning:hover {
  background-color: #c19b2e;
  color: #000;
}

.btn-outline-warning {
  border: 1px solid #D4AF37;
  color: #D4AF37;
}
.btn-outline-warning:hover {
  background-color: #D4AF37;
  color: #000;
}

.navbar-dark .navbar-nav .nav-link:hover { color: #D4AF37; }

.card {
  border-radius: 10px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(212,175,55,0.2);
}

footer a:hover { opacity: 0.8; }

.hero {
  position: relative;
  height: 80vh;
  background: url('../img/placeholder.jpg') center/cover no-repeat;
}
.hero .overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
}
