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

body {
    font-family: 'Georgia', serif;
    background-color: #D2A979;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #2c3e50;
    border-radius: 25px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
}

.category-btn:hover {
    background-color: rgba(44, 62, 80, 0.1);
}

.category-btn.active {
    background-color: #2c3e50;
    color: white;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.menu-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.item-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.item-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-family: 'Georgia', serif;
}

.item-details p {
    color: #666;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.stars span {
    font-size: 1.5rem;
    color: #ccc;
}

.stars span.active {
    color: gold;
}

.order-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    transition: background-color 0.3s ease;
}

.order-btn:hover {
    background-color: #c0392b;
}

@media (max-width: 992px) {
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .menu-categories {
        justify-content: space-between;
    }
    
    .category-btn {
        flex: 1;
        text-align: center;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
}
