@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --ink: #0d0d0d;
  --wine: #7a1f33;
  --ember: #b84a2a;
  --cream: #e8dcc4;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0d0d0d;
  color: #e8dcc4;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glassmorphism */
.glass {
  background: rgba(232, 220, 196, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 220, 196, 0.12);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0d0d0d; }
::-webkit-scrollbar-thumb { background: #5a1626; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #7a1f33; }

/* Lightbox */
.lightbox-fade { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Carousel */
@keyframes carouselFade {
  0%, 100% { opacity: 0; }
  8%, 92% { opacity: 1; }
}
