/* Luxury Logo Font */
.logo-font {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: #bfa14e; /* rich gold */
  text-shadow: 0 0 8px rgba(191, 161, 78, 0.5);
  transition: all 0.3s ease;
}

.logo-font:hover {
  color: #e2c275; /* brighter gold on hover */
  text-shadow: 0 0 12px rgba(226, 194, 117, 0.8);
}