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

body {
    font-family: 'Space Mono', monospace;
    background-color: #f5f5dc;
    color: #2c1810;
    line-height: 1.6;
}

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

.menu-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.header-content {
    position: relative;
    z-index: 1;
}

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

.diner-name h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.tagline {
    margin-top: 1.5rem;
}

.tagline p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.location {
    font-size: 0.9rem;
    opacity: 0.8;
}

.menu-section {
    padding: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.section-title {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #A0522D;
    border-radius: 2px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #8B4513;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.item-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c1810;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B4513;
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.description {
    font-size: 0.9rem;
    color: #5a5a5a;
    font-style: italic;
}

.menu-footer {
    background: #2c1810;
    color: white;
    padding: 30px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.disclaimer {
    font-size: 0.9rem;
    color: #A0522D;
    margin-bottom: 15px;
    font-weight: 700;
}

.hours, .contact {
    font-size: 0.85rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.quote {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.quote p {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.signature {
    font-size: 0.8rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .menu-container {
        margin: 0;
        box-shadow: none;
    }
    
    .menu-header {
        padding: 30px 20px;
    }
    
    .diner-name h1 {
        font-size: 2rem;
    }
    
    .diner-name h2 {
        font-size: 1.2rem;
    }
    
    .menu-section {
        padding: 20px;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .price {
        align-self: flex-end;
    }
}

/* Smooth animations */
.menu-item {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add delay for staggered animation */
.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }

