﻿/* ==========================================
   BANQUET INTRO
========================================== */

.banquet-intro {
    padding: 90px 0;
    background: #fff;
}

.intro-text {
    max-width: 900px;
    margin: 25px auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

/* ==========================================
   HIGHLIGHTS
========================================== */

.venue-highlights {
    padding: 80px 0;
    background: #f8f9fa;
}

.highlight-box {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .highlight-box:hover {
        transform: translateY(-8px);
    }

    .highlight-box i {
        font-size: 45px;
        color: #D4AF37;
        margin-bottom: 20px;
    }

    .highlight-box h4 {
        font-weight: 700;
        margin-bottom: 8px;
    }

    .highlight-box p {
        margin: 0;
        color: #777;
    }

/* ==========================================
   VENUE SECTION
========================================== */

.venue-section {
    padding: 100px 0;
}

    .venue-section.alternate {
        background: #fafafa;
    }

    .venue-section img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,.12);
    }

.venue-tag {
    display: inline-block;
    background: #D4AF37;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.venue-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.venue-section p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

.venue-list {
    padding-left: 0;
    list-style: none;
}

    .venue-list li {
        padding: 10px 0;
        font-size: 16px;
        border-bottom: 1px solid #eee;
    }

        .venue-list li:before {
            content: "✓";
            color: #D4AF37;
            font-weight: bold;
            margin-right: 10px;
        }

/* ==========================================
   WEDDING PACKAGE
========================================== */

.wedding-package {
    padding: 100px 0;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color: #fff;
}

.package-price {
    width: fit-content;
    margin: 40px auto;
    background: #D4AF37;
    color: #fff;
    padding: 18px 50px;
    border-radius: 60px;
    font-size: 36px;
    font-weight: 700;
}

.package-list {
    list-style: none;
    padding: 0;
}

    .package-list li {
        padding: 12px 0;
        font-size: 17px;
    }

        .package-list li:before {
            content: "★";
            color: #D4AF37;
            margin-right: 10px;
        }

/* ==========================================
   MENU PACKAGES
========================================== */

.menu-packages {
    padding: 100px 0;
    background: #fff;
}

.menu-card {
    background: #fff;
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
    border: 2px solid transparent;
}

    .menu-card:hover {
        transform: translateY(-10px);
    }

    .menu-card.featured {
        border-color: #D4AF37;
        transform: scale(1.03);
    }

    .menu-card h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

.menu-price {
    font-size: 42px;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 20px;
}

.menu-card p {
    color: #666;
    line-height: 1.8;
}

/* ==========================================
   BANQUET GALLERY
========================================== */

.gallery-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: .5s;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

    .gallery-item:after {
        content: "View Image";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.55);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: .4s;
        font-size: 18px;
        font-weight: 600;
    }

    .gallery-item:hover:after {
        opacity: 1;
    }

/* ==========================================
   EVENT BOOKING CTA
========================================== */

.event-booking {
    padding: 120px 0;
    background: linear-gradient( rgba(0,0,0,.75), rgba(0,0,0,.75) ), url('../images/banquet-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

    .event-booking h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .event-booking p {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .event-booking .theme-btn {
        padding: 15px 40px;
        font-size: 18px;
    }

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px) {

    .venue-section img {
        height: 350px;
        margin-bottom: 30px;
    }

    .venue-section h2 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .event-booking h2 {
        font-size: 34px;
    }

    .package-price {
        font-size: 28px;
    }
}

@media(max-width:767px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .venue-section {
        padding: 70px 0;
    }

        .venue-section img {
            height: 280px;
        }

    .menu-card.featured {
        transform: none;
    }

    .package-price {
        width: 100%;
        text-align: center;
    }

    .event-booking h2 {
        font-size: 28px;
    }
}
/* ==========================================
   BANQUET FOOD MENU
========================================== */

.banquet-food-menu {
    padding: 100px 0;
    background: #f8f9fa;
}

    .banquet-food-menu .section-heading p {
        max-width: 850px;
        margin: 20px auto 0;
        color: #666;
        line-height: 1.9;
    }

/* PACKAGE CARDS */

.food-package-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    height: 100%;
    position: relative;
    transition: .4s;
}

    .food-package-card:hover {
        transform: translateY(-10px);
    }

.featured-menu {
    border: 3px solid #D4AF37;
}

.package-header {
    background: linear-gradient(135deg,#D4AF37,#B8860B);
    color: #fff;
    text-align: center;
    padding: 30px;
}

    .package-header h3 {
        font-size: 30px;
        margin-bottom: 8px;
    }

    .package-header small {
        display: block;
        margin-bottom: 15px;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .package-header span {
        font-size: 28px;
        font-weight: 700;
    }

.food-package-card ul {
    list-style: none;
    padding: 30px;
    margin: 0;
}

    .food-package-card ul li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

        .food-package-card ul li:last-child {
            border-bottom: none;
        }

        .food-package-card ul li:before {
            content: "✓";
            color: #D4AF37;
            font-weight: bold;
            margin-right: 10px;
        }

.popular-tag {
    position: absolute;
    top: 18px;
    right: -35px;
    background: #0f172a;
    color: #fff;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 11px;
    font-weight: 600;
}

/* SPECIAL COUNTERS */

.special-counter-section {
    margin-top: 90px;
}

    .special-counter-section h3 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 38px;
    }

.counter-box {
    background: #fff;
    padding: 35px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
}

    .counter-box:hover {
        transform: translateY(-8px);
    }

    .counter-box h4 {
        color: #D4AF37;
        margin-bottom: 15px;
    }

    .counter-box span {
        font-size: 24px;
        font-weight: 700;
    }

/* POPULAR DISHES */

.popular-dishes {
    margin-top: 100px;
}

.dish-box {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
}

    .dish-box:hover {
        transform: translateY(-8px);
    }

    .dish-box i {
        font-size: 45px;
        color: #D4AF37;
        margin-bottom: 20px;
    }

    .dish-box h4 {
        margin-bottom: 15px;
    }

    .dish-box p {
        color: #666;
        line-height: 1.8;
        margin: 0;
    }

/* RESPONSIVE */

@media(max-width:991px) {

    .featured-menu {
        transform: none;
    }

    .special-counter-section h3 {
        font-size: 30px;
    }
}

@media(max-width:767px) {

    .package-header h3 {
        font-size: 24px;
    }

    .package-header span {
        font-size: 22px;
    }
}