/* 
 * Noisy Crane Tea House - Custom Styles
 * Bold Editorial Aesthetic
 */

:root {
    --color-burgundy: #800020;
    --color-blush: #FDF0F5;
    --color-cream: #F9F7F5;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--color-cream);
    color: #1a1a1a;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--color-burgundy);
}
::-webkit-scrollbar-thumb:hover {
    background: #580016;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

/* Scroll Reveal Utility */
.scroll-reveal {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Transition */
.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-scrolled .nav-logo-text {
    color: var(--color-burgundy);
}

.nav-scrolled .nav-link {
    color: #1a1a1a;
}

.nav-scrolled .nav-link:hover {
    color: var(--color-burgundy);
}

.nav-scrolled .nav-btn {
    background-color: var(--color-burgundy);
    color: white;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Form Focus States */
input:focus, textarea:focus {
    border-color: var(--color-burgundy);
    background-color: #fff;
}

/* Image Hover Effects */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Print Styles */
@media print {
    .no-print {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}
