:root {
    --chai-brown: #8D5524;
    --cream-light: #FDF5E6;
    --milk-tea: #F5E6CA;
    --leaf-green: #88B04B;
    --warm-orange: #E67E22;
    --text-dark: #3E2723;
}

body {
    background-color: var(--cream-light);
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif; /* Friendly rounded font */
    scroll-behavior: smooth;
}

/* Organic Hero Shape */
.hero-section {
    background: var(--milk-tea);
    border-radius: 0 0 50% 50% / 0 0 10% 10%; /* Soft curve at bottom */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Steam Animation */
.steam-container {
    display: flex;
    justify-content: center;
    margin-bottom: -10px;
}

.steam {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
    border-radius: 50%;
    animation: steam-rise 2s infinite ease-in-out;
}

@keyframes steam-rise {
    0% { transform: translateY(0) scaleX(1); opacity: 0; }
    50% { transform: translateY(-20px) scaleX(1.5); opacity: 0.5; }
    100% { transform: translateY(-40px) scaleX(2); opacity: 0; }
}

/* Menu Cards */
.menu-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(141, 85, 36, 0.05);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(141, 85, 36, 0.1);
}

.btn-mood {
    background-color: white;
    border: 2px solid var(--chai-brown);
    border-radius: 50px;
    padding: 12px 25px;
    margin: 5px;
    font-weight: 600;
    transition: 0.3s;
    color: var(--chai-brown);
}

.btn-mood:hover, .btn-mood.active {
    background-color: var(--chai-brown);
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
    z-index: 100;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-weight: bold;
}

/* Mobile-specific menu styling */
@media (max-width: 768px) {
    .menu-item-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px dashed var(--milk-tea);
    }
    .menu-item-name {
        font-weight: 600;
        color: var(--chai-brown);
        font-size: 1.1rem;
    }
    .menu-item-price {
        background: var(--warm-orange);
        color: white;
        padding: 4px 12px;
        border-radius: 15px;
        font-weight: bold;
    }
}