/* 
    Punjabi Dhabba Custom Styles
    Palette: Plum (#3b0764, #4c1d95, #7e22ce) + Amber (#d97706, #fbbf24) + Stone
*/

:root {
    --plum-900: #3b0764;
    --plum-800: #4c1d95;
    --plum-700: #6b21a8;
    --plum-100: #f3e8ff;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-800: #292524;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--stone-100);
}
::-webkit-scrollbar-thumb {
    background: var(--plum-700);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--plum-900);
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Mobile Menu Transitions */
#mobile-menu {
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

/* Button Hover Effects handled by Tailwind */
