/* ===== GLOBAL COLOR THEME FOR GOLDYN HEARTZ ===== */

/* Main text color (for body text) */
body {
  /*color: #1E0D00; /*white or light gray */
  background-color: #000; /* optional dark background */
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #d4af37; /* rich gold */
}

/* Paragraph text */
p {
  color: #FCFCFC;
}

/* Links */
a {
  color: #d4af37;
  text-decoration: none;
}
a:hover {
  color: #ffdc73; /* lighter gold on hover */
  text-decoration: underline;
}

/* Small text (band roles, captions, etc.) */
small, .text-muted {
  color: #F4D565;
}

/* Optional: utility class for quick use */
.text-gold {
  color: #d4af37 !important;
}

/* Global paragraph color */
p {
  color: #f8f9fa !important; /* white or light gray */
}

