/* Menu Page - Minimal CSS */

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

:root {
    --ms-accent: #f77d48;
    --ms-accent-dark: #d96227;
    --ms-light-bg: #fff8f3;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--ms-light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo-image {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--ms-accent);
    font-family: 'Playfair Display', serif;
}

.logo-text p {
    font-size: 0.85rem;
    color: #666;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ms-accent);
}

.hamburger {
    display: none;
}

/* Menu Hero */
.menu-hero {
    background: linear-gradient(135deg, var(--ms-accent), var(--ms-accent-dark));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.menu-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.location-info-brief {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

/* Menu Navigation */
.menu-nav {
    background: #f8f9fa;
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 99;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background: var(--ms-accent);
    color: white;
    border-color: var(--ms-accent);
}

/* Menu Section */
.menu-section {
    padding: 40px 0;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.menu-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.menu-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-item-content {
    padding: 20px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item-header h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--ms-accent);
}

.description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.spice-level {
    color: var(--ms-accent);
}

.dietary {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--ms-accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-hero h1 {
        font-size: 2rem;
    }
    
    .location-info-brief {
        flex-direction: column;
        gap: 10px;
    }
}
