/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 05 2025 | 18:17:51 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* Mothlight Candles – Glowing Button Effect */
.glow-button {
  background-color: #4B3B5E;
  color: #F7F4F0;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(75, 59, 94, 0.3);
}

.glow-button:hover {
  box-shadow: 0 0 18px 6px rgba(225, 169, 95, 0.6);
  transform: scale(1.05);
  background-color: #E1A95F;
  color: #2C2233;
}