/* Custom style overrides and enhancements */

/* Smooth focus outlines for accessibility */
*:focus-visible {
  outline: 2px solid #d4a030;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: rgba(212, 160, 48, 0.25);
  color: #1a2744;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #fef9f0;
}
::-webkit-scrollbar-thumb {
  background: #1a2744;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d4a030;
}

/* Subtle gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, #1a2744 0%, #d4a030 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Decorative divider */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4a030, #e8c050);
  border-radius: 2px;
  margin: 16px 0;
}

/* Image loading placeholder */
img {
  background: linear-gradient(135deg, #fef9f0, #ffecd9);
}
