/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Background */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

/* Header Styling */
header {
    background-color: #FF8C00;  /* Professional orange shade */
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    margin: 5px 0;
}

/* Menu Section */
.menu {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* Category Header */
.category h3 {
    font-size: 2.5rem;
    color: #FF8C00;
    text-align: left;
    border-bottom: 2px solid #FF8C00;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-weight: 600;
}

/* List Styling */
.category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 1.2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

/* Hover Effect for List Items */
.category ul li:hover {
    background-color: #FF8C00;
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Item and Price Styling */
.item {
    flex-grow: 1;
    font-weight: 500;
}

.price {
    font-weight: 700;
    font-size: 1.4rem;
    color: #333;
    text-align: right;
    min-width: 100px;
}

/* Footer for Contact Info */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #333;
    color: #fff;
}

footer p {
    font-size: 1rem;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    .menu {
        padding: 0 10px;
    }

    .category h3 {
        font-size: 2rem;
    }

    .category ul li {
        flex-direction: column;
        text-align: center;
    }

    .price {
        margin-top: 10px;
    }
}
