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

body {
    font-family: 'Didot', 'Bodoni MT', 'Playfair Display', Georgia, serif;
    background-color: #f5f5f0;
    color: #2c2c2c;
    line-height: 1.6;
}

/* Header Section */
.header {
    text-align: center;
    padding: 80px 20px 60px;
    background-color: #f5f5f0;
    border-bottom: 1px solid #d4c5b9;
}

h1 {
    font-size: 4em;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.star-divider {
    color: #c9a56b;
    font-size: 1.2em;
    margin: 10px 0;
}

.subtitle {
    font-size: 1.1em;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #6b6b6b;
    font-weight: 300;
    margin-bottom: 30px;
}

.tagline {
    font-size: 1.1em;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.8;
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    background-color: #f5f5f0;
    padding: 40px 20px;
    border-bottom: 1px solid #d4c5b9;
    flex-wrap: wrap;
}

.tab-button {
    background-color: transparent;
    border: none;
    padding: 15px 40px;
    font-size: 1.1em;
    cursor: pointer;
    color: #6b6b6b;
    font-family: 'Didot', 'Bodoni MT', 'Playfair Display', Georgia, serif;
    transition: all 0.3s ease;
    border-radius: 0;
    letter-spacing: 1px;
}

.tab-button:hover {
    color: #2c2c2c;
}

.tab-button.active {
    background-color: #2c2c2c;
    color: #f5f5f0;
}

/* Content Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Menu Item Cards */
.menu-items {
    display: grid;
    gap: 40px;
}

.menu-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5dc;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: white;
}

.item-details {
    flex: 1;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.item-name {
    font-size: 1.8em;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

.format-tag {
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    color: #c9a56b;
    background-color: #faf8f3;
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid #e5dcc9;
}

.item-tagline {
    font-style: italic;
    color: #6b6b6b;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.item-description {
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.serving-box {
    background-color: #faf8f3;
    padding: 15px 20px;
    border-left: 3px solid #c9a56b;
    margin-bottom: 15px;
}

.serving-box strong {
    color: #2c2c2c;
}

.characteristics-box {
    background-color: #f9f7f4;
    padding: 20px;
    border-radius: 6px;
    margin-top: 15px;
}

.characteristics-box strong {
    display: block;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-size: 1.05em;
}

.characteristics-box ul {
    list-style: none;
    padding-left: 0;
}

.characteristics-box li {
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
    color: #4a4a4a;
}

.characteristics-box li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #c9a56b;
}

/* Footer Note */
.footer-note {
    background-color: #faf8f3;
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid #d4c5b9;
}

.note-title {
    font-size: 1.3em;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
    color: #4a4a4a;
    font-style: italic;
    line-height: 1.9;
    font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    .menu-item {
        flex-direction: column;
    }

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

    .tab-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .item-name {
        font-size: 1.5em;
    }
}