/* Custom Design System Variables */
:root {
    --color-plum-900: #4A154D;
    --color-plum-800: #5D1B61;
    --color-amber-500: #F59E0B;
    --color-amber-400: #FCD34D;
    --font-serif: 'Abril Fatface', cursive;
    --font-sans: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-sans);
}

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

/* Custom Colors */
.bg-plum-900 { background-color: var(--color-plum-900); }
.bg-plum-800 { background-color: var(--color-plum-800); }
.text-plum-900 { color: var(--color-plum-900); }
.text-plum-100 { color: #E9D8E6; }
.text-plum-200 { color: #D4B8D0; }
.bg-amber-500 { background-color: var(--color-amber-500); }
.text-amber-500 { color: var(--color-amber-500); }
.text-amber-400 { color: var(--color-amber-400); }

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1c1917; 
}
::-webkit-scrollbar-thumb {
    background: var(--color-plum-900); 
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-amber-500); 
}

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

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

/* Image Aspect Ratios */
.img-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
