@import "tailwindcss";

@theme {
  --color-gold: #d4af37;
  --color-gold-pale: #c5a059;
  --color-dark: #0a0a0a;
  --color-charcoal: #1a1a1a;
}

:root {
  --font-serif: "Playfair Display", "Noto Serif SC", serif;
  --font-sans: "Inter", "Noto Sans SC", sans-serif;
}

body {
  background-color: var(--color-dark);
  color: #f5f5f0;
  font-family: var(--font-sans);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, .serif {
  font-family: var(--font-serif);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #d4af37 0%, #f9e1a1 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Header Glass */
.header-glass {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Card Effects */
.luxury-card {
  background: var(--color-charcoal);
  border: 1px solid rgba(212, 175, 55, 0.05);
  transition: all 0.4s ease;
}

.luxury-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

::-webkit-scrollbar-track {
  background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold-pale);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-dark);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-gold:hover {
  background: #f9e1a1;
  letter-spacing: 1px;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-gold);
}

/* Product Filter Active */
.filter-btn.active {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* Timeline Custom */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: var(--color-dark);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
}
