body {
  background-color: #000000;
  color: #FFFFFF;
  font-family: 'Didot', 'GE SS Text', sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background: #000000;
  border-bottom: 1px solid #D4AF37;
  text-align: center;
  padding: 20px;
}

header h1 {
  color: #D4AF37;
  font-size: 3rem;
  margin: 0;
}

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

nav a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #D4AF37;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to bottom, #000000, #1A1A1A);
}

.hero h2 {
  color: #FFFFFF;
  font-size: 2rem;
}

button {
  background-color: #D4AF37;
  color: #000000;
  border-radius: 30px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #B76E79;
  color: #FFFFFF;
  box-shadow: 0 0 20px #D4AF37;
}

.collections {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 50px;
}

.card {
  background: #1A1A1A;
  color: #D4AF37;
  padding: 40px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #D4AF37;
}

footer {
  background: #000000;
  border-top: 1px solid #D4AF37;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
