/* style.css — Seven County Saunas */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
}

/* Section Title */
.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Highlight flash on focus/active */
.highlight-flash {
  transition: color 0.3s ease;
}
.highlight-flash:focus,
.highlight-flash:active {
  color: #f59e0b !important; /* amber-500 */
}

/* Active navigation link */
.active-nav {
  color: #f59e0b !important; /* amber-500 */
}

/* Ensure mobile menu button SVG is always visible */
#mobile-menu-button svg {
  display: block;
}

/* Force white stroke color for hamburger lines */
#mobile-menu-button svg path {
  stroke: #fff;
}