/* Custom CSS for Der Wagen Haus */

:root {
    --burgundy-50: #fdf2f4;
    --burgundy-100: #fce7eb;
    --burgundy-200: #f9d0d9;
    --burgundy-300: #f2a8b8;
    --burgundy-400: #e6708a;
    --burgundy-500: #d44d6a;
    --burgundy-600: #bc3a54;
    --burgundy-700: #9f2d45;
    --burgundy-800: #84263a;
    --burgundy-900: #6e2031;
    
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-800: #292524;
    --stone-900: #1c1917;
}

/* Custom Color Classes */
.text-burgundy-50 { color: var(--burgundy-50); }
.text-burgundy-100 { color: var(--burgundy-100); }
.text-burgundy-200 { color: var(--burgundy-200); }
.text-burgundy-300 { color: var(--burgundy-300); }
.text-burgundy-400 { color: var(--burgundy-400); }
.text-burgundy-500 { color: var(--burgundy-500); }
.text-burgundy-600 { color: var(--burgundy-600); }
.text-burgundy-700 { color: var(--burgundy-700); }
.text-burgundy-800 { color: var(--burgundy-800); }
.text-burgundy-900 { color: var(--burgundy-900); }

.bg-burgundy-50 { background-color: var(--burgundy-50); }
.bg-burgundy-100 { background-color: var(--burgundy-100); }
.bg-burgundy-200 { background-color: var(--burgundy-200); }
.bg-burgundy-900 { background-color: var(--burgundy-900); }

.border-burgundy-100 { border-color: var(--burgundy-100); }
.border-burgundy-200 { border-color: var(--burgundy-200); }
.border-burgundy-300 { border-color: var(--burgundy-300); }

/* Typography */
.font-serif {
    font-family: 'Bodoni Moda', serif;
}

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

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: var(--burgundy-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--burgundy-500);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--burgundy-400);
    outline-offset: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .font-serif {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}
