/* 1815 Wilson Street — Global Styles */

html {
  scroll-behavior: smooth;
}

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

/* Nav scroll state */
#nav {
  transition: background-color 0.3s, box-shadow 0.3s;
}

/* Gallery filter buttons */
.gallery-filter {
  background: #fff;
  color: #3D3D3D;
  border: 1px solid #e5e0d8;
}

.gallery-filter:hover {
  border-color: #C56B3F;
  color: #C56B3F;
}

.gallery-filter.active {
  background: #C56B3F;
  color: #fff;
  border-color: #C56B3F;
}

/* Hide gallery items when filtered */
.gallery-item.hidden {
  display: none !important;
}

/* Lightbox */
#lightbox.active {
  display: flex !important;
}

/* Smooth image loading */
.gallery-item img {
  background-color: #f0ebe3;
}

/* Section reveal animation */
@media (prefers-reduced-motion: no-preference) {
  section {
    opacity: 1;
  }
}
