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

:root {
    --plum-900: #3d1242;
    --plum-800: #581c5c;
    --plum-700: #7b2d7e;
    --plum-100: #f3e5f5;
    --amber-500: #d97706;
    --amber-400: #f59e0b;
    --amber-600: #b45309;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-800: #292524;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(61, 18, 66, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-scrolled #nav-logo-text,
.navbar-scrolled nav a:not(.bg-amber-500) {
    color: #ffffff !important;
}

/* Mobile menu animation */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#mobile-menu.open {
    max-height: 400px;
}

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

::-webkit-scrollbar-track {
    background: #fafaf9;
}

::-webkit-scrollbar-thumb {
    background: #581c5c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3d1242;
}

/* Fade in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero gradient animation */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-gradient {
    background: linear-gradient(135deg, #3d1242 0%, #581c5c 50%, #3d1242 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}
</style>
