/* Custom Styles for Thai Cafe */

/* Color Variables */
:root {
    --burgundy-dark: #6B1D2A;
    --burgundy: #8B2E3F;
    --burgundy-light: #A84458;
    --blush: #F4C2C2;
    --blush-light: #F9D5D5;
    --cream: #FDF8F4;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--burgundy-dark);
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: var(--blush);
    border-radius: 5px;
}

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

/* Navbar Styles */
#navbar {
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(107, 29, 42, 0.1);
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Button Styles */
button, a {
    transition: all 0.3s ease;
}

/* Form Styles */
input:focus, textarea:focus {
    outline: none;
}

/* Mobile Menu */
#mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

#mobile-menu.active {
    transform: translateX(0);
}

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

/* Print Styles */
@media print {
    #navbar, #mobile-menu {
        display: none;
    }
    
    body {
        background: white;
    }
}
