* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(45deg, rgba(184, 134, 11, 0.2), rgba(245, 158, 11, 0.1));
    border-radius: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.3);
    animation: fadeInUp 1s ease-out;
}

.restaurant-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #b8860b, #ffd700);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    animation: pulse 2s infinite;
}

.restaurant-name {
    font-size: 2.5em;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.restaurant-subtitle {
    font-size: 1.2em;
    color: #d4af37;
    margin-bottom: 20px;
    font-style: italic;
}

.restaurant-info {
    font-size: 0.9em;
    color: #ccc;
    line-height: 1.8;
}

.section {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 2em;
    color: #d4af37;
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    border-radius: 10px;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    font-size: 0.8em;
}

.section-title::before {
    left: 20px;
}

.section-title::after {
    right: 20px;
}

.menu-item {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.9), rgba(35, 35, 35, 0.9));
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.item-name {
    font-size: 1.3em;
    color: #ffd700;
    font-weight: bold;
    flex: 1;
}

.item-price {
    font-size: 1.2em;
    color: #d4af37;
    font-weight: bold;
    margin-left: 15px;
}

.item-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #3a3a3a, #2a2a2a);
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9em;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.item-image::before {
    content: '🍽️';
    font-size: 3em;
    opacity: 0.3;
}

.item-description {
    color: #ccc;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}

.item-ingredients {
    font-size: 0.9em;
    color: #999;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid #d4af37;
}

.ingredients-label {
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 5px;
}

.nav-menu {
    position: sticky;
    top: 20px;
    background: rgba(26, 26, 26, 0.95);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 100;
}

.nav-menu a {
    color: #d4af37;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-menu a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #ffd700;
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .restaurant-name {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .nav-menu a {
        margin: 5px 8px;
        font-size: 0.9em;
    }

    .item-header {
        flex-direction: column;
        gap: 10px;
    }

    .item-price {
        margin-left: 0;
        align-self: flex-start;
    }
}