.menu-section {
    padding: 80px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.menu-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.menu-desc {
    font-size: 16px;
    width: 60%;
    margin: auto;
    opacity: .8;
    margin-bottom: 40px;
}

/* CATEGORY BUTTONS */
.menu-categories {
    margin-bottom: 40px;
}

.cat-btn {
    padding: 10px 25px;
    margin: 5px;
    border: none;
    background: #eee;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.cat-btn.active,
.cat-btn:hover {
    background: #ffb703;
    color: #000;
}

/* GRID */
.menu-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* FOOD CARD */
.menu-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: .3s;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card img {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: .3s;
}

.menu-card:hover img {
    transform: scale(1.05);
}

.menu-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.price {
    font-size: 20px;
    color: #ffb703;
    font-weight: bold;
    margin-bottom: 15px;
}

.menu-btn {
    background: #ffb703;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: .3s;
}

.menu-btn:hover {
    background: #f59e0b;
}



.footer {
    background: #111;
    color: #eee;
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer-section h2,
.footer-section h3 {
    color: #ffb400;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section p {
    line-height: 1.7;
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: #ddd;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #ffb400;
}

/* Social Icons */
.footer-social a {
    color: #ddd;
    margin-right: 15px;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ffb400;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 14px;
    color: #bbb;
}
