body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background: #f4decb; /* Warm tan */
    color: #333;
}

header {
    background: #6b2d8a;
    color: #f8eee7;
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 4px solid #000; /* Black outline bottom */
}

h1, h2, h3 {
    color: #6b2d8a;
}

section {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem 1rem;
    background: rgba(248, 238, 231, 0.7);
    border-radius: 12px;
    border: 3px solid #000; /* Black outline on sections */
}

.hero {
    background: linear-gradient(to bottom, #94618e, #6b2d8a);
    color: #f8eee7;
    border: 4px solid #000; /* Strong black frame */
    border-radius: 12px;
}

.menu-grid, .gallery, .testimonials {
    gap: 2rem;
}

.dish {
    background: #f8eee7;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 5px 5px 15px rgba(75, 28, 92, 0.3);
    transform: rotate(-3deg);
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    border: 4px solid #000; /* Thick black outline for Post-it pop */
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dish .price {
    font-size: 1.6rem;
    color: #6b2d8a;
    margin-top: 0.5rem;
}

.dish::before {
    background: #94618e;
    border: 2px solid #000; /* Black outline on tape */
}

.testimonial, .gallery img {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(75, 28, 92, 0.2);
    background: #f8eee7;
    padding: 1.5rem;
    border: 3px solid #000; /* Black outlines */
}

.gallery img {
    width: 100%;
    height: auto;
    border: 3px solid #000; /* Extra outline on images */
}

footer {
    background: #4a1c5c;
    color: #f4decb;
    padding: 1rem;
    border-top: 4px solid #000; /* Black outline top */
}

/* Menu Tabs with black outlines */
.menu-tab {
    background: #94618e;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    border: 3px solid #000; /* Black outline */
    transition: background 0.3s, transform 0.2s;
}
.menu-tab:hover {
    background: #6b2d8a;
    transform: scale(1.05);
}
.menu-tab.active {
    background: #4a1c5c;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 4px solid #000;
}

/* Other tweaks */
#enter-button {
    background: rgba(107, 45, 138, 0.9);
    color: #f8eee7;
    border: 3px solid #000; /* Black outline on button */
    border-radius: 50px;
}

/* Responsive unchanged */
#enter-button.visible { opacity: 1; }
/* Menu Tabs */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.menu-tab {
    background: #d2691e;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}
.menu-tab:hover { background: #8b4513; }
.menu-tab.active { background: #8b4513; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

/* Menu Content Panels */
.menu-panel {
    display: none;
}
.menu-panel.active { display: block; }

/* Mobile tab improvements */
@media (max-width: 768px) {
    .menu-tabs { flex-direction: column; align-items: center; }
    .menu-tab { width: 80%; text-align: center; }
}
