/* Custom CSS for The Coffee Bean & Tea Leaf */

:root {
    --burgundy-50: #fdf2f4;
    --burgundy-100: #fce7eb;
    --burgundy-200: #f9cfd9;
    --burgundy-300: #f4a3b8;
    --burgundy-400: #eb6f92;
    --burgundy-500: #c43d64;
    --burgundy-600: #a83254;
    --burgundy-700: #8c2845;
    --burgundy-800: #732038;
    --burgundy-900: #5e1a2f;
    
    --blush-100: #fff5f7;
    --blush-200: #ffe4e9;
    --blush-300: #ffc8d3;
    --blush-400: #ff9db3;
    --blush-500: #ff6b94;
}

/* Base Typography */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-space {
    font-family: 'Space Grotesk', sans-serif;
}

/* Navigation */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-logo:hover {
    color: var(--burgundy-600);
}

.nav-link {
    color: #44403c;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy-500);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: var(--burgundy-500);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border: 2px solid var(--burgundy-500);
}

.btn-primary:hover {
    background: var(--burgundy-600);
    border-color: var(--burgundy-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 61, 100, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--burgundy-500);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border: 2px solid var(--burgundy-500);
}

.btn-secondary:hover {
    background: var(--burgundy-500);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--burgundy-500);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: 2px solid var(--burgundy-500);
}

.btn-outline:hover {
    background: var(--burgundy-500);
    color: white;
    transform: translateY(-2px);
}

/* Menu Cards */
.menu-card {
    background: white;
    border-radius: 24px;
    padding: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(196, 61, 100, 0.15);
}

/* Hero Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Shapes */
.hero-shape {
    transition: transform 0.5s ease;
}

/* Mobile Menu */
.mobile-link {
    color: #44403c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--burgundy-500);
}

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

::-webkit-scrollbar-track {
    background: #fafaf9;
}

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

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

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

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

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