body {
    margin: 0;
    background: #120703;
    color: #fff;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

body * {
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

/* =========================
           MAIN SECTION
        ========================= */

.outlet-section {
    position: relative;
    min-height: 100vh;
    padding: 25px 0 0;

    background:
        radial-gradient(circle at 50% 0%,
            #30200a 0%,
            #180b03 40%,
            #0d0401 100%);

    overflow: hidden;
}

.outlet-wrapper {
    position: relative;
    z-index: 2;

    /* max-width: 965px; */
    margin: 0 auto;

    padding: 25px 30px 20px;

    border: 1px solid rgba(139, 91, 20, .55);
    border-radius: 14px;

    background: rgba(20, 9, 3, .82);

    box-shadow:
        inset 8px 8px 25px rgba(0, 0, 0, .45),
        0 0 20px rgba(0, 0, 0, .35);
}


/* =========================
           TITLE
        ========================= */

.outlet-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    margin-bottom: 30px;

    color: #d49b36;



    font-size: 32px;
    font-weight: 600;

    text-align: center;

    text-shadow:
        0 2px 3px rgba(0, 0, 0, .8);
}

.title-decoration {
    color: #b97d1d;
    font-size: 25px;
}


/* =========================
           LOCATION GROUP
        ========================= */

.location-group {
    position: relative;

    margin-bottom: 30px;

    padding: 18px 0 15px;

    border: 1px solid rgba(143, 89, 18, .6);
    border-radius: 11px;

    background: rgba(35, 16, 6, .65);
}


/* Location heading */

.location-title {
    position: absolute;

    left: 50%;
    top: -17px;

    transform: translateX(-50%);

    min-width: 165px;

    padding: 6px 28px;

    border-radius: 7px;

    background: #2a1305;

    color: #d49b36;

    font-size: 20px;
    font-weight: 600;

    text-align: center;

    box-shadow:
        0 4px 8px rgba(0, 0, 0, .3);
}

.chennai .location-title {
    top: 0px;
    z-index: 99;
}


/* =========================
           OUTLET CARD
        ========================= */

.outlet-card {
    height: 137px;

    display: flex;
    align-items: center;

    padding: 15px 18px;

    border: 1px solid rgba(137, 86, 17, .55);
    border-radius: 10px;

    background:
        linear-gradient(100deg,
            rgba(38, 18, 7, .95),
            rgba(25, 11, 4, .95));

    transition: all .25s ease;
}

.outlet-card:hover {
    border-color: #c48a26;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(0, 0, 0, .35);
}


/* =========================
           ICON
        ========================= */

.outlet-icon {
    flex: 0 0 82px;

    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 18px;

    border: 2px solid #a8731c;

    border-radius: 50%;

    color: #d59a2c;

    font-size: 40px;

    background:
        radial-gradient(circle,
            rgba(110, 66, 10, .35),
            rgba(15, 7, 2, .5));
}


/* =========================
           OUTLET DETAILS
        ========================= */

.outlet-details {
    flex: 1;
    min-width: 0;
}

.outlet-name {
    margin: 0 0 8px;

    color: #f0eee9;



    font-size: 23px;
    font-weight: 600;

    line-height: 1.1;
}

.outlet-location {
    margin: 0;

    color: #d09a2d;

    font-size: 17px;
}

.outlet-location i {
    margin-right: 5px;
}


/* =========================
           BUTTON
        ========================= */

.reserve-btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 126px;

    padding: 12px 15px;

    border: 0;
    border-radius: 7px;

    background: linear-gradient(to bottom,
            #e0a63c,
            #c78923);

    color: #130803;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .25),
        0 3px 5px rgba(0, 0, 0, .3);

    transition: all .2s ease;
}

.reserve-btn:hover {
    background: linear-gradient(to bottom,
            #edb84d,
            #d2952c);

    color: #130803;

    transform: translateY(-1px);
}

.reserve-btn i {
    margin-left: 10px;
    font-size: 18px;
}


/* =========================
           BOTTOM DECORATION
        ========================= */

.bottom-decoration {
    position: relative;

    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 5px;
}

.bottom-decoration::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    background: #69400d;
}

.decoration-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 0 20px;

    background: #120703;
}

.decoration-flower {
    color: #c88925;
    font-size: 50px;
    line-height: 1;
}

.decoration-lamp {
    color: #c88925;
    font-size: 45px;
}


/* =========================
           DESKTOP CHENNAI GRID
        ========================= */

.chennai-row {
    margin-top: 5px;
}


/* =========================
           RESPONSIVE
        ========================= */

@media (max-width: 991.98px) {

    .outlet-wrapper {
        /* margin: 0 15px; */
    }

    .outlet-title {
        font-size: 28px;
    }

    .outlet-card {
        height: 125px;
        display: flex;
        text-align: center;
    }

    .outlet-icon {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
        font-size: 32px;
        margin-left: auto !important;
        margin-right: auto !important;
        border: unset;
    }

    .outlet-icon img {
        width: 100%;
    }

    .outlet-name {
        font-size: 20px;
    }

    .reserve-btn {
        margin-top: 15px;
    }

    .chennai .location-title {
        top: -6px;
    }
}


@media (max-width: 767.98px) {

    .outlet-section {
        padding-top: 10px;
    }

    .outlet-wrapper {
        padding: 25px 15px 15px;
    }

    .outlet-title {
        gap: 10px;
        font-size: 24px;
    }

    .title-decoration {
        font-size: 18px;
    }

    .location-group {
        padding: 20px 10px 10px;
    }

    .outlet-card {
        height: auto;
        min-height: 115px;
        padding: 12px;
        display: block;
    }

    .outlet-icon {
        width: 65px;
        height: 65px;
        flex-basis: 65px;
        margin-right: 12px;
    }

    .outlet-name {
        font-size: 18px;
    }

    .outlet-location {
        font-size: 14px;
    }

    .reserve-btn {
        min-width: 105px;
        padding: 10px 8px;
        font-size: 12px;
    }

    .reserve-btn i {
        margin-left: 5px;
    }
}


@media (max-width: 575.98px) {

    .outlet-title {
        font-size: 21px;
    }

    .title-decoration {
        display: none;
    }

    .outlet-card {
        min-height: 100px;
    }

    .outlet-icon {
        width: 55px;
        height: 55px;
        flex-basis: 55px;
        font-size: 26px;
        margin-right: 10px;
    }

    .outlet-name {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .outlet-location {
        font-size: 13px;
    }

    .reserve-btn {
        min-width: 90px;
        padding: 9px 5px;
        font-size: 10px;
    }

    .reserve-btn i {
        font-size: 14px;
    }

    .location-title {
        font-size: 17px;
        min-width: 130px;
    }
}

.location-group.bengaluru .outlet-card {
    border: unset;
    background: unset;
}

.location-group.chennai {
    border: unset;
    background: unset;
}

.bengaluru .location-title span {
    color: #fff;
    font-size: 12px;
}

.chennai .location-title span {
    color: #fff;
    font-size: 12px;
}