/* css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #7588df 0%, #6058d3 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    color: #1333c0;
    font-size: 24px;
}

.header h1 i {
    margin-right: 10px;
}

.tenant-info {
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
}

.btn-admin {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.3s;
}

.btn-admin:hover {
    background: #5a67d8;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.menu-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.menu-section.special {
    border: 3px solid #fbbf24;
}

.menu-section h2 {
    background: #667eea;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
}

.menu-section.special h2 {
    background: #fbbf24;
    color: #1f2937;
}

.menu-section h2 i {
    margin-right: 10px;
}

.menu-items {
    padding: 20px;
}

.menu-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h3 {
    color: #1f2937;
    font-size: 18px;
    margin-bottom: 5px;
}

.menu-item .category {
    color: #667eea;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.menu-item .description {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 10px;
}

.menu-item .price {
    color: #059669;
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}