/* Custom CSS for The Clean Cup */

:root {
    --color-terracotta: #C05A38;
    --color-sand: #E6D5C3;
    --color-stone-50: #FAFAF9;
    --color-stone-100: #F5F5F4;
    --color-stone-200: #E7E5E4;
    --color-stone-800: #292524;
    --color-stone-900: #1C1917;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
}

.font-cormorant {
    font-family: 'Cormorant Garamond', serif;
}

.font-manrope {
    font-family: 'Manrope', sans-serif;
}

/* Custom Colors */
.bg-terracotta {
    background-color: var(--color-terracotta);
}

.text-terracotta {
    color: var(--color-terracotta);
}

.bg-sand {
    background-color: var(--color-sand);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Scroll Behavior */
.scroll-smooth {
    scroll-behavior: smooth;
}

/* Navigation Active State */
nav.scrolled {
    background-color: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

/* Image Hover Effects */
img {
    transition: transform 0.5s ease;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-stone-100);
}

::-webkit-scrollbar-thumb {
    background: var(--color-stone-200);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-terracotta);
}
