:root {
    --plum-400: #c084a0;
    --plum-500: #9b4d8a;
    --plum-600: #7b2d8b;
    --plum-700: #5c1f6b;
    --plum-800: #3d1450;
    --plum-900: #2a0e3a;
    --plum-950: #1a0824;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
}

/* Custom color utilities */
.text-plum-400 { color: var(--plum-400); }
.text-plum-500 { color: var(--plum-500); }
.text-plum-600 { color: var(--plum-600); }
.text-plum-700 { color: var(--plum-700); }
.bg-plum-400 { background-color: var(--plum-400); }
.bg-plum-500 { background-color: var(--plum-500); }
.bg-plum-600 { background-color: var(--plum-600); }
.bg-plum-700 { background-color: var(--plum-700); }
.bg-plum-800 { background-color: var(--plum-800); }
.bg-plum-900 { background-color: var(--plum-900); }
.bg-plum-950 { background-color: var(--plum-950); }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Base typography */
body {
    font-family: 'Inter', system-ui, sans-serif;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Navigation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--amber-400), var(--amber-500));
    transition: width 0.3s ease;
}

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

/* Navbar scroll state */
nav.scrolled {
    background: rgba(12, 12, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile menu */
.mobile-link {
    transition: all 0.3s ease;
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.5s; }

/* Image hover effect */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

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

::-webkit-scrollbar-track {
    background: var(--stone-950, #0c0c12);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--plum-600), var(--amber-600));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--plum-500), var(--amber-500));
}

/* Focus styles */
*:focus-visible {
    outline: 2px solid var(--amber-400);
    outline-offset: 2px;
}

/* Input autofill */
input:-webkit-autofill,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px rgb(30, 30, 40) inset !important;
    -webkit-text-fill-color: #f5f5f5 !important;
}

/* Print styles */
@media print {
    nav, #contact-form, button { display: none; }
    body { background: white; color: black; }
}
