/* =================================
   LAL MIRI RESTAURANT INTRO
================================= */

.lalmiri-restaurant-intro {
    position: relative;
    padding: 30px 0;
    background: #fff;
    overflow: hidden;
}

.lalmiri-restaurant-intro::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    left: -260px;
    top: 80px;
    background: #fff3f3;
    border-radius: 50%;
}


/* ================================
   VISUAL
================================ */

.restaurant-intro-visual {
    position: relative;
    min-height: 560px;
    z-index: 1;
}

.intro-main-image {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 170px 170px 12px 12px;
    box-shadow: 0 25px 60px rgba(80, 0, 0, .14);
}

.intro-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.intro-main-image:hover img {
    transform: scale(1.05);
}


/* Food Image */
.intro-food-image {
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: 180px;
    height: 180px;
    padding: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 20px 45px rgba(80, 0, 0, .18);
    z-index: 3;
}

.intro-food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/* Badge */

.intro-badge {
    position: absolute;
    left: 0;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    background: #d40000;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(120, 0, 20, .25);
    z-index: 4;
}

.intro-badge > i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
}

.intro-badge strong,
.intro-badge small {
    display: block;
}

.intro-badge strong {
    font-family: Georgia, serif;
    font-size: 17px;
}

.intro-badge small {
    margin-top: 2px;
    font-size: 10px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    opacity: .8;
}


/* Decorative Circle */

.intro-circle {
    position: absolute;
    right: -45px;
    top: 30px;
    width: 72px;
    height: 72px;
    border: 1px solid #b52a38;
    border-radius: 50%;
    opacity: .35;
}

.intro-circle::after {
    content: "";
    position: absolute;
    inset: 11px;
    border: 1px solid #b52a38;
    border-radius: 50%;
}


/* ================================
   CONTENT
================================ */

.restaurant-intro-content {
    position: relative;
    z-index: 2;
    padding-left: 15px;
}

.restaurant-intro-content .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #d40000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.restaurant-intro-content .subtitle-line {
    width: 32px;
    height: 1px;
    background: #a52231;
}


.restaurant-intro-content h2 {
    margin: 0 0 4px;
    color: #24191a;
    font-family: "Times New Roman", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.12;
}

.restaurant-intro-content h2 span {
    /* display: block; */
    color: #d40000;
}


.intro-lead {
    margin-bottom: 8px;
    color: #2d2727;
    font-size: 16px;
    line-height: 1.75;
}

.restaurant-intro-content > p:not(.intro-lead) {
    margin-bottom: 5px;
    color: #75686a;
    font-size: 13px;
    line-height: 1.8;
}


/* ================================
   HIGHLIGHTS
================================ */

.intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 14px 0;
    padding: 10px 0;
    border-top: 1px solid #eee1e2;
    border-bottom: 1px solid #eee1e2;
}

.intro-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.intro-highlight > span {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d40000;
    background: #fff2f2;
    border-radius: 50%;
}

.intro-highlight h4 {
    margin: 0 0 5px;
    color: #2b2021;
    font-size: 14px;
    font-weight: 600;
}

.intro-highlight p {
    margin: 0;
    color: #827678;
    font-size: 11px;
    line-height: 1.6;
}


/* ================================
   BOTTOM
================================ */

.intro-bottom {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 15px;
}

.intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 11px 17px;
    background: #d40000;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 7px;
    transition: all .3s ease;
}

.intro-btn:hover {
    background: #7d1421;
    color: #fff;
    transform: translateY(-2px);
}

.intro-btn i {
    transition: transform .3s ease;
}

.intro-btn:hover i {
    transform: translateX(5px);
}


.intro-location {
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-location > i {
    color: #d40000;
    font-size: 18px;
}

.intro-location small,
.intro-location strong {
    display: block;
}

.intro-location small {
    margin-bottom: 2px;
    color: #999;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.intro-location strong {
    color: #332728;
    font-size: 12px;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1199px) {

    .restaurant-intro-visual {
        min-height: 520px;
    }

    .intro-main-image {
        height: 440px;
    }

    .intro-food-image {
        width: 185px;
        height: 185px;
    }

    .restaurant-intro-content {
        padding-left: 5px;
    }

}


@media (max-width: 991px) {

    .lalmiri-restaurant-intro {
        padding: 50px 0;
    }

    .restaurant-intro-visual {
        max-width: 650px;
        margin: 0 auto 20px;
    }

    .restaurant-intro-content {
        padding-left: 0;
    }

}


@media (max-width: 767px) {

    .lalmiri-restaurant-intro {
        padding: 35px 0;
    }

    .restaurant-intro-visual {
        min-height: 410px;
    }

    .intro-main-image {
    left: 0px;
    width: 100%;
    height: 450px;
    border-radius: 120px 120px 10px 10px;
}

    .intro-food-image {
        right: 0;
        bottom: 5px;
        width: 140px;
        height: 140px;
    }

    .intro-badge {
        left: 0;
        bottom: 30px;
        padding: 9px 13px;
    }

    .intro-badge > i {
        width: 34px;
        height: 34px;
    }

    .intro-badge strong {
        font-size: 14px;
    }

    .intro-badge small {
        font-size: 8px;
    }

    .intro-circle {
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .restaurant-intro-content .section-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .restaurant-intro-content h2 {
        font-size: 29px;
    }

    .intro-lead {
        font-size: 14px;
    }

    .intro-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .intro-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

}
.restaurant-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.restaurant-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.highlight-icon {
    width: 23px;
    height: 23px;
    min-width: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e00000;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
}

.highlight-icon.non-veg {
    background: #8b0000;
}

.restaurant-highlight-item span:last-child {
    font-weight: 500;
}
/* =========================================
   LAL MIRI CUISINE SECTION
========================================= */

.lalmiri-cuisine-sec {
    padding: 40px 0;
    background: #fffaf5;
    overflow: hidden;
}


/* Image */

.cuisine-image-wrap {
    position: relative;
    padding-right: 10px;
}

.cuisine-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.cuisine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.6s ease;
}

.cuisine-image:hover img {
    transform: scale(1.04);
}


/* Decorative Frame */

.cuisine-image-wrap::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-top: 2px solid #e00000;
    border-left: 2px solid #e00000;
    top: -18px;
    left: -18px;
    z-index: 0;
}

.cuisine-image-wrap::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-right: 2px solid #e00000;
    border-bottom: 2px solid #e00000;
    bottom: -18px;
    right: 0;
    z-index: 0;
}

.cuisine-image {
    position: relative;
    z-index: 1;
}


/* Badge */

.cuisine-badge {
    position: absolute;
    left: -25px;
    bottom: 35px;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    background: #e00000;
    color: #fff;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cuisine-badge i {
    font-size: 16px;
}


/* Content */

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #e00000;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-label i {
    font-size: 14px;
}

.cuisine-content h2 {
    margin: 0 0 8px;

    color: #21120d;

    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
}

.cuisine-content h2 span {
    /* display: block; */
    color: #e00000;
}

.cuisine-content > p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}


/* Cuisine Options */

.cuisine-options {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cuisine-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 10px;

    background: #fff;
    border-left: 3px solid #e00000;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

    transition: 0.35s ease;
}

.cuisine-option:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}


/* Icons */

.cuisine-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 19px;
}

.veg-icon {
    color: #248a3d;
    background: #edf8ef;
}

.nonveg-icon {
    color: #e00000;
    background: #fff0f0;
}

.cuisine-option h4 {
    margin: 0 0 5px;

    color: #21120d;

    font-size: 17px;
    font-weight: 700;
}

.cuisine-option p {
    margin: 0;

    color: #777;

    font-size: 13px;
    line-height: 1.6;
}


/* Button */
.cuisine-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 10px 24px;
    background: #e00000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cuisine-btn:hover {
    background: #21120d;
    color: #fff;
}

.cuisine-btn i {
    transition: 0.3s ease;
}

.cuisine-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .lalmiri-cuisine-sec {
        padding: 75px 0;
    }

    .cuisine-content {
        padding-left: 0;
    }

    .cuisine-content h2 {
        font-size: 38px;
    }

    .cuisine-image img {
        height: 480px;
    }

}

@media (max-width: 767px) {

    .lalmiri-cuisine-sec {
        padding: 60px 0;
    }

    .cuisine-image-wrap {
        padding-right: 15px;
    }

    .cuisine-image img {
        height: 400px;
    }

    .cuisine-badge {
        left: 10px;
        bottom: 20px;
    }

    .cuisine-content h2 {
        font-size: 32px;
    }

    .cuisine-option {
        padding: 15px;
    }

}

@media (max-width: 480px) {

    .cuisine-image img {
        height: 330px;
    }

    .cuisine-content h2 {
        font-size: 28px;
    }

    .cuisine-option {
        gap: 12px;
    }

    .cuisine-icon {
        min-width: 42px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

}
/* =========================================
   WHY LAL MIRI SECTION
========================================= */

.lalmiri-why-sec {
    padding: 40px 0;
    background: #fff;
}


/* Section Heading */

.lalmiri-section-head {
    max-width: 700px;
    margin: 0 auto 50px;
}
.lalmiri-section-head .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e00000;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.lalmiri-section-head h2 {
    margin: 0 0 5px;
    color: #21120d;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
}

.lalmiri-section-head h2 span {
    color: #e00000;
}

.lalmiri-section-head > p {
    margin: 0;

    color: #777;

    font-size: 15px;
    line-height: 1.8;
}


/* Why Card */
.why-card {
    position: relative;
    height: 100%;
    padding: 15px 13px;
    background: #fff5f578;
    border: 1px solid #f0e5dc;
    text-align: center;
    overflow: hidden;
    transition: 0.4s ease;
}

.why-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #e00000;

    transform: scaleX(0);

    transform-origin: center;

    transition: 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);

    border-color: #e00000;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.why-card:hover::before {
    transform: scaleX(1);
}


/* Icon */
.why-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #e00000;
    border: 1px solid #eadbd0;
    font-size: 19px;
    transition: 0.4s ease;
}

.why-card:hover .why-icon {
    background: #e00000;
    color: #fff;

    transform: rotateY(180deg);
}


/* Number */

.why-number {
    position: absolute;

    top: 15px;
    right: 18px;

    color: #e00000;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    opacity: 0.7;
}


/* Content */
.why-card h3 {
    margin: 0 0 7px;
    color: #21120d;
    font-size: 19px;
    font-weight: 600;
}
.why-card p {
    margin: 0;

    color: #322f2f;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .lalmiri-why-sec {
        padding: 20px 0;
    }

    .lalmiri-section-head h2 {
        font-size: 28px;
    }

}

@media (max-width: 767px) {

    .lalmiri-why-sec {
        padding: 25px 0;
    }

    .lalmiri-section-head {
        margin-bottom: 35px;
    }

    .lalmiri-section-head h2 {
        font-size: 23px;
    }

  

}
/* =========================================
   LAL MIRI RESTAURANT GALLERY
========================================= */

.lalmiri-restaurant-gallery {
    padding: 40px 0;
    background: #fffaf5;
    overflow: hidden;
}


/* Heading */

.gallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 15px;
}

.gallery-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #e00000;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
}

.gallery-label i {
    font-size: 13px;
}

.gallery-head h2 {
    margin: 0;

    color: #21120d;

    font-family: "Times New Roman", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
}

.gallery-head h2 span {
    color: #e00000;
}


/* View Gallery Button */

.gallery-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;

    border: 1px solid #e00000;

    color: #e00000;
    background: transparent;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: .3s ease;
}

.gallery-view-btn:hover {
    background: #e00000;
    color: #fff;
}

.gallery-view-btn i {
    transition: .3s ease;
}

.gallery-view-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   ALBUM GRID
========================================= */

.lalmiri-album-grid {
    display: grid;

    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 212px 208px;

    gap: 14px;
}


/* Gallery Item */

.album-item {
    position: relative;

    display: block;

    overflow: hidden;

    background: #eee;

    text-decoration: none;
}

.album-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .7s ease;
}


/* Large Image */

.album-large {
    grid-row: span 2;
}


/* Overlay */

.album-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding: 18px;

    background:
        linear-gradient(
            to top,
            rgba(30, 0, 0, .75),
            rgba(30, 0, 0, 0) 60%
        );

    opacity: 0;

    transition: .4s ease;
}

.album-item:hover .album-overlay {
    opacity: 1;
}

.album-item:hover img {
    transform: scale(1.07);
}


/* Category */

.album-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #fff;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

.album-overlay span i {
    color: #ffdddd;
}


/* Plus */

.album-plus {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e00000;
    color: #fff;

    font-size: 13px;

    transform: translateY(15px);

    transition: .4s ease;
}

.album-item:hover .album-plus {
    transform: translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .lalmiri-restaurant-gallery {
        padding: 75px 0;
    }

    .lalmiri-album-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 220px 220px;
    }

    .album-large {
        grid-row: span 2;
    }

}

@media (max-width: 767px) {

    .lalmiri-restaurant-gallery {
        padding: 60px 0;
    }

    .gallery-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 25px;
    }

    .gallery-head h2 {
        font-size: 32px;
    }

    .lalmiri-album-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 230px 180px 180px;
        gap: 8px;
    }

    .album-large {
        grid-row: span 2;
    }

    .album-overlay {
        padding: 10px;
    }

    .album-overlay span {
        font-size: 10px;
    }

    .album-plus {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

}

@media (max-width: 480px) {

    .lalmiri-album-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 190px 150px 150px;
    }

    .gallery-view-btn {
        padding: 10px 15px;
        font-size: 12px;
    }

}
