* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial, sans-serif;
}

body {
    background-color: #f7f3ef;
    color: #3e2c23;
}

.navbar {
    padding: 15px 30px;
    background-color: #fffaf5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    color: #5a3e2b;
    font-weight: 700;
    font-size: 28px;
    text-decoration: none;
}

.nav-link {
    color: #5a3e2b;
    font-weight: 500;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #c08552;
}

.btn-main {
    background-color: #5a3e2b;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    border: none;
    transition: background 0.3s;
}

.btn-main:hover {
    background-color: #c08552;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-weight: 700;
    color: #5a3e2b;
}

.section-title p {
    color: #7a5c46;
    font-size: 15px;
}

.about-section {
    padding: 50px 15px;
    background-color: #fffaf5;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.about-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.about-card {
    max-width: 450px;
    background-color: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.about-card h3 {
    font-weight: 600;
    color: #5a3e2b;
    margin-bottom: 15px;
}

.about-card p {
    color: #7a5c46;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.about-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

@media (max-width: 991px) {
    .about-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-card {
        margin-top: 20px;
    }
}

.menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 30px;
}

.menu-item {
    background-color: #fff;
    width: 230px;
    padding: 18px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 10px;
}

.menu-item h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.menu-item p {
    color: #7a5c46;
    font-size: 15px;
}

.qty {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty button {
    background-color: #5a3e2b;
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.qty button:hover {
    background-color: #c08552;
}

.count {
    font-weight: 600;
    font-size: 16px;
    width: 25px;
    text-align: center;
}

.menu-item .add-cart {
    margin-top: 10px;
    background-color: #5a3e2b;
    color: #fff;
    border: none;
    padding: 6px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.menu-item .add-cart:hover {
    background-color: #c08552;
}

#cart {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.cart-item {
    background-color: #fff;
    padding: 18px 20px;
    margin-bottom: 15px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cart-item strong {
    font-size: 16px;
    color: #5a3e2b;
}

.cart-item button {
    background-color: #c08552;
    color: #fff;
    border: none;
    padding: 5px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.cart-item button:hover {
    background-color: #a66f42;
}

.cart-total {
    font-size: 20px;
    font-weight: 700;
    color: #5a3e2b;
    text-align: center;
    margin-top: 25px;
}

@media (max-width: 991px) {
    .menu-item {
        width: 45%;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .navbar div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .menu-item {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .menu-item {
        width: 100%;
    }
}

.contact {
    color: #5a3e2b;
    font-weight: 700;
    font-size: 28px;
    text-decoration: none;
}
