
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@100;200;300;400;500;600&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

h1 {
    letter-spacing: -0.05em;
    line-height: 1.1;
}

section {
    scroll-margin-top: 100px;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fef3c7;
}

::-webkit-scrollbar-thumb {
    background: #d97706;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b45309;
}

/* Animation for menu items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-amber-50 {
    animation: fadeIn 0.5s ease-out;
}

.menu-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }

/* Hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Button pulse effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(217, 119, 6, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
    }
}

.pulse:hover {
    animation: pulse 1.5s infinite;
}

.menu-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d97706;
    color: #92400e;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    background: #fff8eb;
    transition: all 0.2s ease;
}

.menu-pill:hover {
    background: #d97706;
    color: #fff;
}

.cart-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid #d97706;
    color: #92400e;
    background: #fff8eb;
    font-weight: 700;
}

.qty-input {
    width: 52px;
    text-align: center;
    border: 1px solid #f3c389;
    border-radius: 8px;
    padding: 0.25rem;
}

.add-to-cart-btn {
    border: 1px solid #d97706;
    background: #d97706;
    color: white;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.add-to-cart-btn:hover {
    background: #b45309;
}
