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

:root {
    --pantryDark: #2C1E16;
    --pantryLight: #f8fafc;
    --rustic: #b45309;
}

/* Match your index.html selection colors */
::selection {
    background-color: #fed7aa; /* orange-200 */
    color: #7c2d12; /* orange-900 */
}

/* Speed Test Animations */
.score-circle {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.loading-pulse { animation: pulse-soft 2s infinite ease-in-out; }

/* Custom Footer and Nav Consistency Classes */
.pantry-nav-bg { @apply bg-stone-900; }
.pantry-footer-bg { @apply bg-[#2C1E16]; } /* Your exact espresso hex */