/* Radiance Events - Brand Styles */

/* Base reset */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection color */
::selection {
  background-color: #C8A84E;
  color: #0A1F3F;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #C8A84E;
  outline-offset: 2px;
}

/* Smooth image loading */
img {
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
  opacity: 1;
}

/* Footer inverted logo brightness */
footer img[src*="radiance-logo"] {
  filter: brightness(0) invert(1);
}

/* Card hover lift */
.group:hover {
  transform: translateY(-2px);
}