/* =========================================
   Gold + Dark Theme for rtr.center
   Official brand colors - DO NOT CHANGE
   ========================================= */

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Prevent content from being hidden behind sticky navbar */
section[id] {
  scroll-margin-top: 4rem;
}

/* Gold accent line - CSS only, no images */
.gold-accent-line {
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, #F5C542);
  width: 4rem;
}

/* Fast transitions - 0.1s only */
.btn {
  transition: background-color 0.1s ease, color 0.1s ease !important;
}

/* Focus indicators for accessibility - gold outline */
:focus-visible {
  outline: 2px solid #D4AF37 !important;
  outline-offset: 2px !important;
}

/* System font stack - no web fonts */
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Secondary text color utility */
.text-secondary-muted {
  color: #9CA3AF;
}
