:root {
    --bg: #faf8f5;
    --card-bg: #ffffff;
    --text: #2c1810;
    --text-secondary: #7a6b63;
    --accent: #d4572a;
    --accent-light: #f4e8e4;
    --border: #e8e0d8;
    --green: #5a7247;
    --green-light: #e8f0e3;
    --orange: #d4572a;
    --orange-light: #fde8e0;
    --gold: #c9a227;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(44,24,16,0.08);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    position: relative;
    overflow: hidden;
}

.header-bg {
    background: linear-gradient(135deg, #d4572a 0%, #c9a227 50%, #5a7247 100%);
    padding: 64px 0 48px;
    text-align: center;
    position: relative;
}

.header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.logo {
    font-size: 56px;
    margin-bottom: 16px;
    position: relative;
}

header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
}

.tagline {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    font-weight: 300;
    margin-top: 8px;
    position: relative;
}

#date-display {
    margin-top: 16px;
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    position: relative;
}

main {
    padding: 40px 0 80px;
}

.location-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.location-header {
    padding: 24px 28px;
    border-bottom: 2px solid var(--accent-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.location-icon {
    font-size: 28px;
    margin-right: 12px;
}

.location-info {
    flex: 1;
}

.location-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
}

.location-address {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.location-source {
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    padding: 6px 16px;
    border: 1px solid var(--accent);
    border-radius: 100px;
    transition: all 0.2s;
}

.location-source:hover {
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
}

.category-section {
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
}

.category-section:last-child {
    border-bottom: none;
}

.category-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--accent);
    border-radius: 2px;
}

.meal-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    gap: 20px;
    border-bottom: 1px dashed var(--border);
}

.meal-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.meal-info {
    flex: 1;
}

.meal-name {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.4;
}

.meal-badges {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-vegan {
    background: var(--green-light);
    color: var(--green);
}

.badge-green {
    background: var(--green-light);
    color: var(--green);
}

.badge-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
    white-space: nowrap;
    background: var(--accent-light);
    padding: 4px 12px;
    border-radius: 100px;
}

footer {
    text-align: center;
    padding: 32px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-top: 1px solid var(--border);
    background: var(--card-bg);
}

@media (max-width: 640px) {
    .header-bg {
        padding: 48px 0 36px;
    }
    
    header h1 {
        font-size: 32px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .location-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-section {
        padding: 16px 20px;
    }
    
    .meal-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .meal-badges {
        margin-left: 0;
    }
}
