﻿/* ==========================================
   RESTAURANT INTRO
========================================== */

.restaurant-intro {
    padding: 100px 0;
    background: #fff;
}

.restaurant-img {
    width: 100%;
    border-radius: 20px;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.section-tag {
    display: inline-block;
    background: #D4AF37;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.restaurant-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.restaurant-intro p {
    color: #666;
    line-height: 1.9;
}

.restaurant-features {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

    .restaurant-features li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

        .restaurant-features li:before {
            content: "✓";
            color: #D4AF37;
            font-weight: bold;
            margin-right: 10px;
        }

/* ==========================================
   MENU CATEGORY
========================================== */

.restaurant-menu {
    padding: 100px 0;
    background: #f8f9fa;
}

.menu-category {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
    transition: .4s;
}

    .menu-category:hover {
        transform: translateY(-8px);
    }

    .menu-category h3 {
        color: #D4AF37;
        text-align: center;
        margin-bottom: 25px;
        font-size: 28px;
    }

    .menu-category ul {
        list-style: none;
        padding: 0;
    }

        .menu-category ul li {
            padding: 10px 0;
            border-bottom: 1px dashed #ddd;
            display: flex;
            justify-content: space-between;
        }

/* ==========================================
   SIGNATURE DISHES
========================================== */

.signature-dishes {
    padding: 100px 0;
    background: #fff;
}

.dish-card {
    background: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
}

    .dish-card:hover {
        transform: translateY(-10px);
    }

    .dish-card i {
        font-size: 50px;
        color: #D4AF37;
        margin-bottom: 20px;
    }

    .dish-card h4 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .dish-card p {
        color: #D4AF37;
        font-size: 22px;
        font-weight: 700;
        margin: 0;
    }

/* ==========================================
   COMPLETE MENU TABLE
========================================== */

.full-menu {
    padding: 100px 0;
    background: #f8f9fa;
}

.menu-table {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

    .menu-table thead {
        background: #D4AF37;
        color: #fff;
    }

    .menu-table th {
        padding: 18px;
        font-size: 18px;
    }

    .menu-table td {
        padding: 15px 18px;
    }

    .menu-table tbody tr:hover {
        background: #f9f6ea;
    }

/* ==========================================
   RESTAURANT GALLERY
========================================== */

.restaurant-gallery {
    padding: 100px 0;
    background: #fff;
}

    .restaurant-gallery .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 25px;
    }

    .restaurant-gallery .gallery-item {
        overflow: hidden;
        border-radius: 20px;
        position: relative;
    }

        .restaurant-gallery .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: .5s;
        }

        .restaurant-gallery .gallery-item:hover img {
            transform: scale(1.1);
        }

/* ==========================================
   CTA SECTION
========================================== */

.restaurant-cta {
    padding: 120px 0;
    text-align: center;
    color: #fff;
    background: linear-gradient( rgba(0,0,0,.75), rgba(0,0,0,.75) ), url('../images/restaurant-bg.jpg');
    background-size: cover;
    background-position: center;
}

    .restaurant-cta h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .restaurant-cta p {
        font-size: 20px;
        margin-bottom: 30px;
    }

/* ==========================================
   MENU HIGHLIGHT BOX
========================================== */

.thali-box {
    background: linear-gradient(135deg,#D4AF37,#b8860b);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

    .thali-box h3 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .thali-box .price {
        font-size: 42px;
        font-weight: 700;
    }

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px) {

    .restaurant-img {
        height: 350px;
        margin-bottom: 30px;
    }

    .restaurant-gallery .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .restaurant-intro h2 {
        font-size: 32px;
    }

    .restaurant-cta h2 {
        font-size: 34px;
    }
}

@media(max-width:767px) {

    .restaurant-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-img {
        height: 280px;
    }

    .restaurant-intro,
    .restaurant-menu,
    .signature-dishes,
    .full-menu,
    .restaurant-gallery,
    .restaurant-cta {
        padding: 70px 0;
    }

        .restaurant-cta h2 {
            font-size: 28px;
        }

    .menu-category {
        padding: 25px;
    }
}
.full-restaurant-menu {
    padding: 100px 0;
    background: #f8f9fa;
}

.menu-block {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
}

    .menu-block h3 {
        text-align: center;
        color: #8B0000;
        margin-bottom: 25px;
        font-weight: 700;
    }

    .menu-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .menu-block ul li {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed #ddd;
            font-size: 15px;
        }

            .menu-block ul li strong {
                color: #D4AF37;
            }

.thali-card {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    position: relative;
    height: 100%;
}

.thali-price {
    font-size: 48px;
    font-weight: 700;
    color: #D4AF37;
    margin: 15px 0;
}

.featured-thali {
    border: 3px solid #D4AF37;
}

.best-seller {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4AF37;
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
}

@media(max-width:768px) {

    .menu-block {
        margin-bottom: 20px;
    }

    .thali-card {
        margin-bottom: 20px;
    }

    .menu-block ul li {
        font-size: 14px;
    }
}