﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f8f1e6;
    color: #092f28;
}

.business-lunch-page {
    width: 100%;
    min-height: 100vh;
    background: #fbf4e8;
}

.banner {
    position: relative;
    min-height: 530px;
    background-image: url("/images/business_lunch_banner.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    color: #fff;
}

.top-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}

    .top-decoration span {
        width: 120px;
        height: 2px;
        background: #c99a39;
    }

.ornament {
    color: #c99a39;
    font-size: 42px;
    line-height: 1;
}

.banner h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(40px, 8vw, 96px);
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.banner h2 {
    font-family: "Great Vibes", cursive;
    color: #d5a441;
    font-size: clamp(25px, 5vw, 62px);
    font-weight: 400;
    margin-bottom: 25px;
}

.banner p {
    font-size: clamp(15px, 2vw, 22px);
    line-height: 1.8;
    font-weight: 400;
    color: #fff;
}

.banner .click-text {
    color: #d5a441;
    font-weight: 500;
    margin-top: 18px;
}


.outlets-section {
    position: relative;
    padding: 65px 7% 90px;
    background: #fbf4e8;
}

.curve-shape {
    position: absolute;
    top: -58px;
    left: 0;
    width: 100%;
    height: 95px;
    background: #fbf4e8;
    border-top: 4px solid #c99a39;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.section-title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 35px;
}

    .section-title span {
        width: 190px;
        height: 1px;
        background: #c99a39;
    }

    .section-title h3 {
        font-family: "Cinzel", serif;
        font-size: clamp(17px, 4vw, 38px);
        text-transform: uppercase;
        letter-spacing: 5px;
        color: #0b3a33;
        font-weight: 600;
        text-align: center;
    }

/* ================= Cards ================= */

.outlet-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 25px 38px;
    max-width: 1050px;
    margin: 0 auto;
}

.outlet-card {
    background: white;
    border: 1px solid #d8aa54;
    border-radius: 12px;
    min-height: 255px;
    padding: 30px 25px 18px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(84, 57, 25, 0.18);
    transition: 0.3s ease;
    cursor: pointer;
}

    .outlet-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(84, 57, 25, 0.28);
    }

    .outlet-card img {
        max-width: 210px;
        height: 85px;
        object-fit: contain;
        margin-bottom: 18px;
    }

    .outlet-card h4 {
        font-family: "Playfair Display", serif;
        font-size: 24px;
        color: #092f28;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .outlet-card p {
        font-family: "Playfair Display", serif;
        font-size: 18px;
        font-style: italic;
        color: #b57922;
        margin-bottom: 20px;
        position: relative;
    }

        .outlet-card p::after {
            content: "";
            display: block;
            width: 85px;
            height: 1px;
            background: #d1a04a;
            margin: 15px auto 0;
        }

        .outlet-card .button span {
            color: #fff;
            margin-right: 8px;
        }


.last-card {
    grid-column: 1 / 3;
    width: 48%;
    margin: 0 auto;
}


@media (max-width: 900px) {
    .banner {
        min-height: 420px;
    }

    .section-title span {
        width: 90px;
    }

    .outlet-grid {
        grid-template-columns: 1fr;
    }

    .last-card {
        grid-column: auto;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .banner {
        min-height: 390px;
    }

        .banner h1 {
            letter-spacing: 2px;
        }

    .top-decoration span {
        width: 70px;
    }

    .outlets-section {
        padding: 55px 20px 60px;
    }

    .section-title {
        gap: 12px;
    }

        .section-title span {
            width: 45px;
        }

        .section-title h3 {
            letter-spacing: 2px;
        }

    .outlet-card {
        min-height: auto;
        padding: 28px 18px 20px;
    }

        .outlet-card img {
            max-width: 180px;
        }

        .outlet-card .button {
            width: 100%;
            padding: 12px 16px;
        }

    .banner-content {
        margin-top: 45px;
    }

    .banner .click-text {
        margin-bottom: 30px;
    }
}
