/* 
  Custom Styles for Chez Beignets II
  Theme: Clean Minimalist, Terracotta & Sand
*/

:root {
    --color-terracotta: #C06C54;
    --color-sand: #F5F0EB;
    --color-dark: #2C2C2C;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;
}

body {
    background-color: var(--color-sand);
    color: var(--color-dark);
}

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

/* Reveal Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
}

.reveal-image {
    opacity: 0;
    transform: translateX(20px);
    animation: fadeLeft 0.8s ease-out forwards 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Delays for staggered animation */
.reveal-text:nth-child(1) { animation-delay: 0.1s; }
.reveal-text:nth-child(2) { animation-delay: 0.2s; }
.reveal-text:nth-child(3) { animation-delay: 0.3s; }

/* Mobile Menu Transitions */
.mobile-link {
    transition: color 0.3s ease;
}
.mobile-link:hover {
    color: var(--color-terracotta);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-sand);
}
::-webkit-scrollbar-thumb {
    background: var(--color-terracotta);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a0523d;
}
