/* Custom Color Palette */
:root {
    --plum-50: #faf5ff;
    --plum-100: #f3e8ff;
    --plum-200: #e9d5ff;
    --plum-300: #d8b4fe;
    --plum-400: #c084fc;
    --plum-500: #a855f7;
    --plum-600: #9333ea;
    --plum-700: #7e22ce;
    --plum-800: #6b21a8;
    --plum-900: #581c87;
    --plum-950: #3b0764;
    
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
}

/* Tailwind Config */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

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

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

::-webkit-scrollbar-thumb {
    background: #c084fc;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9333ea;
}

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

/* Navbar Scroll Effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Custom Font Classes */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Custom Color Utilities */
.text-plum-50 { color: var(--plum-50); }
.text-plum-100 { color: var(--plum-100); }
.text-plum-200 { color: var(--plum-200); }
.text-plum-300 { color: var(--plum-300); }
.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); }
.text-plum-800 { color: var(--plum-800); }
.text-plum-900 { color: var(--plum-900); }
.text-plum-950 { color: var(--plum-950); }

.bg-plum-50 { background-color: var(--plum-50); }
.bg-plum-100 { background-color: var(--plum-100); }
.bg-plum-200 { background-color: var(--plum-200); }
.bg-plum-300 { background-color: var(--plum-300); }
.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); }

.shadow-plum-50 { box-shadow: 0 4px 20px rgba(250, 245, 255, 0.5); }
.shadow-plum-100 { box-shadow: 0 4px 20px rgba(243, 232, 255, 0.5); }
.shadow-plum-200 { box-shadow: 0 4px 20px rgba(233, 213, 255, 0.5); }
.shadow-plum-300 { box-shadow: 0 4px 20px rgba(216, 180, 254, 0.5); }
.shadow-plum-400 { box-shadow: 0 4px 20px rgba(192, 132, 252, 0.5); }
.shadow-plum-500 { box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5); }
.shadow-plum-600 { box-shadow: 0 4px 20px rgba(147, 51, 234, 0.5); }
.shadow-plum-700 { box-shadow: 0 4px 20px rgba(126, 34, 206, 0.5); }
.shadow-plum-800 { box-shadow: 0 4px 20px rgba(107, 33, 168, 0.5); }
.shadow-plum-900 { box-shadow: 0 4px 20px rgba(88, 28, 135, 0.5); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .animate-float,
    .animate-float-delayed {
        animation: none;
    }
}
