/* QR Menu - Simple List Design (No Images) */

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

:root {
    --primary-color: #a20010;
    --primary-dark: #8a000d;
    --primary-light: #bc2634;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f5f5f5;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.menu-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.restaurant-logo {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    backdrop-filter: blur(10px);
}

.restaurant-info {
    flex: 1;
}

.restaurant-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.restaurant-tagline {
    font-size: 13px;
    opacity: 0.9;
    margin: 5px 0 0 0;
}

.lang-toggle {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-toggle:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

/* Search Bar */
.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.search-box {
    background: white;
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.search-box i {
    color: var(--text-light);
    font-size: 18px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.search-box input::placeholder {
    color: var(--text-light);
}

/* Category Tabs */
.category-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    background: white;
    border: 2px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-tab i {
    font-size: 16px;
}

.category-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(162, 0, 16, 0.3);
}

/* Menu Container */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.category-section {
    margin-bottom: 40px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-color);
}

.category-title i {
    color: var(--primary-color);
    font-size: 28px;
}

/* Menu List (No Images) */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-left: 4px solid transparent;
}

.menu-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(5px);
    border-left-color: var(--primary-color);
}

.item-info {
    flex: 1;
}

.item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.item-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.item-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge.popular {
    background: #fee;
    color: #e74c3c;
}

.badge.new {
    background: #e8f8f5;
    color: #27ae60;
}

.badge.vegan {
    background: #ebf5fb;
    color: #3498db;
}

.badge.vegetarian {
    background: #fef9e7;
    color: #f39c12;
}

.badge.gluten-free {
    background: #f4ecf7;
    color: #8e44ad;
}

.item-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.item-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Footer */
.menu-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px 20px 20px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-info p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer-info i {
    color: var(--primary-color);
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-name {
        font-size: 18px;
    }
    
    .restaurant-tagline {
        font-size: 11px;
    }
    
    .restaurant-logo {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .category-tabs {
        padding: 0 15px 15px;
    }
    
    .category-tab {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .item-price {
        font-size: 20px;
        align-self: flex-end;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .search-container {
        padding: 15px;
    }
    
    .menu-container {
        padding: 0 15px 60px;
    }
    
    .item-name {
        font-size: 16px;
    }
    
    .item-price {
        font-size: 18px;
    }
    
    .item-description {
        font-size: 13px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    animation: fadeIn 0.5s ease;
}

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

/* Print Styles */
@media print {
    .search-container,
    .category-tabs,
    .lang-toggle,
    .footer-social {
        display: none;
    }
    
    .menu-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .menu-header {
        background: white;
        color: black;
        box-shadow: none;
        border-bottom: 2px solid #000;
    }
    
    .restaurant-logo {
        background: #f0f0f0;
        color: #000;
    }
}