body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #181f2a;
    color: #f7fafd;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #232b3e;
    padding: 1.2rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 2px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    text-decoration: none;
    color: #f7fafd;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #1de9b6;
}
.hero {
    background: linear-gradient(120deg, #232b3e 60%, #1a2233 100%);
    text-align: center;
    padding: 3rem 1rem 2rem 1rem;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
    color: #ffd700;
    font-weight: 700;
}
.hero p {
    font-size: 1.2rem;
    color: #bdbdbd;
}
.search-bar {
    margin: 2rem auto 0 auto;
    display: flex;
    justify-content: center;
    max-width: 500px;
    gap: 0.5rem;
}
.search-bar input {
    flex: 1;
    padding: 0.7rem;
    border: 1px solid #2d3a4e;
    border-radius: 6px;
    font-size: 1rem;
    background: #232b3e;
    color: #ffd700;
}
.search-bar button {
    background: #1de9b6;
    color: #232b3e;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.search-bar button:hover {
    background: #ffd700;
    color: #232b3e;
}
.menu-section, .recommended-section {
    max-width: 1200px;
    margin: 2.5rem auto;
    background: #232b3e;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    padding: 2rem 2rem 2.5rem 2rem;
}
.menu-section h2, .recommended-section h2 {
    font-size: 1.7rem;
    color: #ffd700;
    margin-bottom: 1.2rem;
    text-align: center;
}
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.filters select {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    border: 1px solid #2d3a4e;
    font-size: 1rem;
    background: #181f2a;
    color: #ffd700;
    outline: none;
    transition: border 0.2s;
}
.filters select:focus {
    border: 1.5px solid #1de9b6;
}
.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
}
.menu-card {
    background: #181f2a;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.18);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #2d3a4e;
}
.menu-card:hover {
    box-shadow: 0 4px 16px rgba(29,233,182,0.12);
    transform: translateY(-4px) scale(1.02);
}
.menu-card img {
    width: 100%;
    max-width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid #ffd700;
}
.menu-card .dish-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #ffd700;
    text-align: center;
}
.menu-card .dish-desc {
    font-size: 1rem;
    color: #bdbdbd;
    margin-bottom: 0.5rem;
    text-align: center;
}
.menu-card .dish-ingredients {
    font-size: 0.95rem;
    color: #bdbdbd;
    margin-bottom: 0.7rem;
    text-align: center;
}
.menu-card .dish-price {
    font-size: 1.1rem;
    color: #1de9b6;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.menu-card .dish-category {
    font-size: 0.9rem;
    color: #bdbdbd;
    margin-bottom: 0.5rem;
}
.menu-card .diet-labels {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0.7rem;
}
.menu-card .diet-label {
    background: #1de9b6;
    color: #232b3e;
    border-radius: 4px;
    padding: 0.2rem 0.7rem;
    font-size: 0.85rem;
    font-weight: 500;
}
.menu-card .add-btn {
    background: linear-gradient(90deg, #ffd700 0%, #1de9b6 100%);
    color: #232b3e;
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.menu-card .add-btn:hover {
    background: linear-gradient(90deg, #1de9b6 0%, #ffd700 100%);
}
.order-section {
    max-width: 700px;
    margin: 3rem auto;
    background: #232b3e;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    padding: 2.5rem 2rem;
}
.order-section h2 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1.2rem;
    text-align: center;
}
.cart {
    min-height: 60px;
    margin-bottom: 1.5rem;
    color: #f7fafd;
}
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid #2d3a4e;
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item-title {
    font-weight: 500;
    color: #ffd700;
}
.cart-item-qty {
    margin: 0 0.7rem;
    font-size: 1rem;
}
.cart-item-price {
    color: #1de9b6;
    font-weight: 600;
}
.cart-remove {
    background: none;
    border: none;
    color: #ff6f91;
    font-size: 1.1rem;
    cursor: pointer;
    margin-left: 0.7rem;
}
.order-actions {
    text-align: right;
}
#checkout-btn {
    background: linear-gradient(90deg, #ffd700 0%, #1de9b6 100%);
    color: #232b3e;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
#checkout-btn:hover {
    background: linear-gradient(90deg, #1de9b6 0%, #ffd700 100%);
}
.contact-section {
    max-width: 700px;
    margin: 3rem auto;
    background: #232b3e;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    padding: 2.5rem 2rem;
}
.contact-section h2 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1.2rem;
    text-align: center;
}
.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}
.contact-section input, .contact-section textarea {
    padding: 0.7rem;
    border: 1px solid #2d3a4e;
    border-radius: 6px;
    font-size: 1rem;
    background: #181f2a;
    color: #ffd700;
}
.contact-section button {
    background: linear-gradient(90deg, #ffd700 0%, #1de9b6 100%);
    color: #232b3e;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-section button:hover {
    background: linear-gradient(90deg, #1de9b6 0%, #ffd700 100%);
}
footer {
    background: #232b3e;
    color: #ffd700;
    text-align: center;
    padding: 1.2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #2d3a4e;
    font-size: 1rem;
}
@media (max-width: 900px) {
    .menu-section, .order-section, .contact-section, .recommended-section {
        padding: 1.2rem 0.5rem;
    }
    .menu-list {
        gap: 1rem;
    }
}
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.5rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .hero {
        padding: 2.5rem 0.5rem 2rem 0.5rem;
    }
    .menu-list {
        grid-template-columns: 1fr;
    }
}
.info-section {
    max-width: 900px;
    margin: 3rem auto;
    background: #232b3e;
    border-radius: 14px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.14);
    padding: 2rem 2rem 1.5rem 2rem;
    color: #ffd700;
}
.info-section h2 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: left;
}
.info-section ol, .info-section ul {
    color: #f7fafd;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 0 1.2rem;
    padding: 0;
}
.reviews-section {
    max-width: 900px;
    margin: 3rem auto;
    background: #232b3e;
    border-radius: 14px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.14);
    padding: 2rem 2rem 1.5rem 2rem;
}
.reviews-section h2 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: left;
}
.review-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.review {
    background: #181f2a;
    border-left: 4px solid #1de9b6;
    border-radius: 8px;
    padding: 1rem 1.2rem;
    color: #f7fafd;
    font-size: 1.05rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.review span {
    color: #ffd700;
    font-size: 0.97rem;
    margin-left: 0.5rem;
}
.section-img {
    display: block;
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin: 1.2rem auto 2rem auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #ffd700;
    float: left;
}
.review p {
    margin-left: 60px;
} 