/* 
    Angst Coffeehouse Custom Styles
    Theme: Charcoal & Coral | Minimalist
*/

:root {
    --charcoal: #1c1917;
    --charcoal-light: #292524;
    --coral: #ff6b6b;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-500: #57534e;
    --stone-600: #44403c;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background-color: var(--stone-50);
}

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

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

/* Custom Selection Color */
::selection {
    background: var(--coral);
    color: white;
}

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

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

/* Mobile Menu Transitions */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Button Hover Effects handled in HTML classes, 
   but adding global smoothness here */
a, button {
    transition: all 0.3s ease;
}
