* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    padding: 1rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.sun-logo {
    width: 80px;
    height: 80px;
    /* background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    position: relative;
}

.sun-logo::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, transparent 30px, #ff9a56 30px, #ff9a56 32px, transparent 32px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.restaurant-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.tagline2 {
    font-size: 0.75rem;
    opacity: 0.9;
    font-style: italic;
}

.category-nav {
    background: #f8f9fa;
    padding: 1rem;
    border-bottom: 3px solid #e9ecef;
    position: sticky;
    top: 110px;
    z-index: 99;
}

.nav-toggle {
    display: none;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.3);
    margin-top: 1rem; /*newly added*/
}

.nav-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
}

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.nav-buttons.collapsed {
    display: none;
}

.nav-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.nav-btn.active {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    transform: translateY(-1px);
}

.menu-section {
    padding: 2rem 1.5rem;
    border-bottom: 2px solid #f1f3f4;
}

.section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    margin: 0.5rem auto;
    border-radius: 2px;
}

.menu-items {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.item-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    flex: 1;
}

.item-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-left: 1rem;
}

.item-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.veg-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    margin-right: 0.5rem;
    background: #4CAF50;
}

.dosa-variants {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.variant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.variant-name {
    color: #666;
}

.variant-price {
    color: #ff6b6b;
    font-weight: 600;
}

.timing {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .restaurant-name {
        font-size: 2rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-buttons {
        gap: 0.3rem;
    }

    .nav-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .menu-section {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .item-name {
        font-size: 1.1rem;
    }

    .item-price {
        font-size: 1.1rem;
    }
}

.scroll-smooth {
    scroll-behavior: smooth;
}

