/* Photo Gallery Styles */
/* Using Tailwind CDN for utility classes, this file can be used for custom overrides */

:root {
  --bg-primary: rgb(9 9 11);
  --text-primary: rgb(228 228 231);
  --text-secondary: rgb(161 161 170);
  --border-subtle: rgb(255 255 255 / 0.05);
  --accent-emerald: rgb(52 211 153 / 0.7);
}

/* Dark abstract background */
body {
  background: 
    radial-gradient(circle at 20% 50%, rgba(80, 70, 120, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(60, 80, 120, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(90, 60, 100, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgb(15, 15, 20) 0%, rgb(20, 18, 25) 100%);
  background-color: #0a0a0f;
  background-attachment: fixed;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgb(24 24 27);
}

::-webkit-scrollbar-thumb {
  background: rgb(63 63 70);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(82 82 91);
}

/* Smooth transitions for layout changes */
.gallery-transition {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Photo hover effects */
.photo-item {
  cursor: zoom-in;
  transition: transform 200ms ease-out;
}

.photo-item:active {
  transform: scale(0.99);
}

/* Lightbox animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-enter {
  animation: fadeIn 200ms ease-out;
}

.lightbox-content {
  animation: scaleIn 250ms ease-out;
}
