@import url('global.css');
@import url('swiper.css');
@import url('owl.css');
@import url('preloader.css');
@import url('font-awesome.css');
@import url('simple-line-icons.css');
@import url('animate.css');
@import url('jquery-ui.css');
@import url('jquery.fancybox.min.css');
@import url('custom-animate.css');
/* ====================================
   SARISKA SET MENU PAGE
   Reference: Harry's Dolce Vita
   ==================================== */

/* Hero Section - Image with Centered Text */
.set-menu-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--black-color-opacity);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-content {
    text-align: center;
    color: var(--white-color);
}

.subtitle-text {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.main-hero-title {
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--white-color);
    margin-bottom: 40px;
    font-style: italic;
}

/* Hero Button Spacing - Desktop */
.hero-text-content .theme-btn {
    margin: 0 10px 15px;
}



/* Experience Description Section */
.experience-description-section {
    padding: 50px 0 100px 0;
    background: var(--color-one);
    position: relative;
    overflow: hidden;
}

/* Radial amber glows — breathe */
.experience-description-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 90% at 0% 50%, rgba(183, 94, 38, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 100% 25%, rgba(210, 145, 69, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 55% 100%, rgba(183, 94, 38, 0.10) 0%, transparent 60%);
    animation: expGlowShift 12s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes expGlowShift {
    0% {
        opacity: 0.55;
    }

    100% {
        opacity: 1;
    }
}

/* Diagonal drifting lines */
.experience-description-section::after {
    content: '';
    position: absolute;
    inset: -50% -10%;
    background: repeating-linear-gradient(112deg,
            transparent 0px,
            transparent 50px,
            rgba(210, 145, 69, 0.045) 50px,
            rgba(210, 145, 69, 0.045) 51px);
    animation: expLinesDrift 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes expLinesDrift {
    from {
        transform: translateX(-51px);
    }

    to {
        transform: translateX(51px);
    }
}

/* Skewed corner panel — top left */
.exp-skew-tl {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(183, 94, 38, 0.15) 0%, transparent 65%);
    transform: skewY(-10deg) skewX(-5deg);
    animation: expSkewTL 14s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes expSkewTL {
    0% {
        transform: skewY(-10deg) skewX(-5deg) scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: skewY(-6deg) skewX(-2deg) scale(1.1);
        opacity: 1;
    }
}

/* Skewed corner panel — bottom right */
.exp-skew-br {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 440px;
    height: 440px;
    background: linear-gradient(315deg, rgba(210, 145, 69, 0.13) 0%, transparent 65%);
    transform: skewY(10deg) skewX(5deg);
    animation: expSkewBR 11s ease-in-out infinite alternate-reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes expSkewBR {
    0% {
        transform: skewY(10deg) skewX(5deg) scale(0.9);
        opacity: 0.4;
    }

    100% {
        transform: skewY(6deg) skewX(2deg) scale(1.1);
        opacity: 1;
    }
}

/* Horizontal skew bar */
.exp-hbar {
    position: absolute;
    left: 0;
    right: 0;
    top: 42%;
    height: 110px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(210, 145, 69, 0.06) 20%,
            rgba(183, 94, 38, 0.10) 50%,
            rgba(210, 145, 69, 0.06) 80%,
            transparent 100%);
    transform: skewY(-3deg);
    animation: expHbarSlide 10s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes expHbarSlide {
    0% {
        transform: skewY(-3deg) translateX(-40px);
        opacity: 0.3;
    }

    100% {
        transform: skewY(-3deg) translateX(40px);
        opacity: 1;
    }
}

/* Diamond grid */
.exp-diamond-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(210, 145, 69, 0.04) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(210, 145, 69, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: expGridScale 16s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes expGridScale {
    0% {
        background-size: 38px 38px;
        opacity: 0.5;
    }

    100% {
        background-size: 46px 46px;
        opacity: 1;
    }
}

/* Floating outline diamonds */
.exp-float-d {
    position: absolute;
    border: 1px solid rgba(210, 145, 69, 0.20);
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 0;
}

.exp-float-d--1 {
    width: 70px;
    height: 70px;
    top: 15%;
    right: 8%;
    animation: expFloatD 11s ease-in-out infinite alternate;
}

.exp-float-d--2 {
    width: 45px;
    height: 45px;
    bottom: 22%;
    left: 5%;
    animation: expFloatD 9s ease-in-out infinite alternate-reverse;
    border-color: rgba(210, 145, 69, 0.13);
}

.exp-float-d--3 {
    width: 28px;
    height: 28px;
    top: 58%;
    right: 14%;
    animation: expFloatD 13s ease-in-out infinite alternate;
    border-color: rgba(210, 145, 69, 0.10);
}

@keyframes expFloatD {
    0% {
        transform: rotate(45deg) translate(0, 0) scale(0.9);
        opacity: 0.3;
    }

    100% {
        transform: rotate(45deg) translate(10px, -10px) scale(1.1);
        opacity: 1;
    }
}

/* ── GOLDEN CORNER BRACKETS ── */
.exp-corner-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    pointer-events: none;
    z-index: 2;
}

/* Base corner — no animation, static gold */
.exp-corner {
    position: absolute;
    width: 44px;
    height: 44px;
    border-color: #C9A84C;
    border-style: solid;
    border-width: 0;
    opacity: 0.85;
}

/* Remove the glow animation entirely */

/* Top-left */
.exp-corner--tl {
    top: 0;
    left: 0;
    border-top-width: 2px;
    border-left-width: 2px;
}

/* Top-right */
.exp-corner--tr {
    top: 0;
    right: 0;
    border-top-width: 2px;
    border-right-width: 2px;
}

/* Bottom-left */
.exp-corner--bl {
    bottom: 0;
    left: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

/* Bottom-right */
.exp-corner--br {
    bottom: 0;
    right: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

@media (max-width: 767px) {
    .exp-corner-frame {
        display: none;
    }
}

/* Keep content above all bg layers */
.experience-description-section .auto-container {
    position: relative;
    z-index: 1;
}

.exp-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.exp-text-block {
    padding-left: 60px;
}

.exp-text-block h2 {
    font-size: 38px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.exp-text-block p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.exp-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* CTA Booking Section - Dark Background with Decorative Shapes */
.cta-booking-section {
    position: relative;
    padding: 120px 0;
    background: var(--color-one);
    text-align: center;
    overflow: hidden;
}

/* Texture Background Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(210, 145, 69, 0.03) 2px,
            rgba(210, 145, 69, 0.03) 4px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(210, 145, 69, 0.03) 2px,
            rgba(210, 145, 69, 0.03) 4px);
    opacity: 0.5;
    z-index: 0;
}

/* Decorative Circle Shapes */
.cta-booking-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(210, 145, 69, 0.15);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.cta-booking-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(210, 145, 69, 0.1);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    z-index: 0;
}

.cta-booking-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* Additional decorative circles */
.cta-booking-content::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(210, 145, 69, 0.12);
    border-radius: 50%;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    z-index: -1;
}

.cta-booking-content::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(210, 145, 69, 0.08);
    border-radius: 50%;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    z-index: -1;
}

.cta-subtitle {
    font-size: 24px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.cta-main-title {
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-color);
    margin-bottom: 50px;
    line-height: 1.4;
}

/* Related Events Section */
.related-events-section {
    padding: 100px 0;
    background: var(--color-two);
    position: relative;
}

/* Texture Background for Events Section */
.related-events-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(210, 145, 69, 0.02) 2px,
            rgba(210, 145, 69, 0.02) 4px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(210, 145, 69, 0.02) 2px,
            rgba(210, 145, 69, 0.02) 4px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.related-events-section>.auto-container {
    position: relative;
    z-index: 1;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 38px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-one);
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 16px;
    color: var(--color-four);
    margin-bottom: 25px;
}

.see-all-link {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-one);
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px dotted var(--main-color);
    transition: all 0.3s ease;
}

.see-all-link:hover {
    border-bottom: 1px solid var(--main-color);
    color: var(--main-color);
}

.event-card-item {
    margin-bottom: 30px;
}

.event-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.event-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.event-card-item:hover .event-image-wrapper img {
    transform: scale(1.05);
}

.event-text-content {
    text-align: left;
}

.event-location-tag {
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 10px;
}

.event-card-title {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-one);
    margin-bottom: 10px;
}

.event-date-info {
    font-size: 14px;
    color: var(--color-four);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter Signup Section */
.newsletter-signup-section {
    padding: 100px 0;
    background: var(--color-two);
    position: relative;
}

.newsletter-signup-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 30px,
            rgba(210, 145, 69, 0.08) 30px,
            rgba(210, 145, 69, 0.08) 50px);
    z-index: 0;
}

.newsletter-inner-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text-area {
    margin-bottom: 50px;
}

.newsletter-tag {
    font-size: 22px;
    color: var(--color-one);
    margin-bottom: 20px;
}

.newsletter-main-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-one);
    line-height: 1.4;
    margin-bottom: 0;
}

.newsletter-form-area {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-signup-form {
    text-align: left;
}

.form-row-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input-half {
    flex: 1;
}

.form-row-full {
    margin-bottom: 20px;
}

.newsletter-signup-form input,
.newsletter-signup-form select {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid #999999;
    background: transparent;
    color: var(--color-one);
    transition: all 0.3s ease;
}

.newsletter-signup-form input::placeholder {
    color: var(--color-three);
}

.newsletter-signup-form input:focus,
.newsletter-signup-form select:focus {
    outline: none;
    border-bottom-color: var(--color-one);
}

.form-select-dropdown {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.form-disclaimer-text {
    margin: 25px 0;
    text-align: center;
}

.form-disclaimer-text p {
    font-size: 13px;
    color: var(--color-three);
    line-height: 1.6;
    margin: 0;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 35px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .main-hero-title {
        font-size: 52px;
    }

    .exp-text-block {
        padding-left: 0;
        margin-top: 40px;
    }

    .exp-text-block h2 {
        font-size: 32px;
    }

    .cta-main-title {
        font-size: 34px;
    }

    .newsletter-main-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {

    /* Mobile Hero Section - Full Height */
    .set-menu-hero-section {
        min-height: 100vh;
        height: auto;
    }

    .hero-text-content {
        padding: 100px 20px 60px;
    }

    /* Stack Buttons Vertically on Mobile */
    .hero-text-content .theme-btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 15px;
    }

    .main-hero-title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .experience-description-section {
        padding: 50px 0;
    }

    .exp-text-block h2 {
        font-size: 28px;
    }

    .exp-text-block p {
        font-size: 15px;
    }

    .exp-cta-buttons {
        flex-direction: column;
    }

    .cta-booking-section {
        padding: 80px 0;
    }

    .cta-main-title {
        font-size: 28px;
    }

    .related-events-section {
        padding: 60px 0;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

    .newsletter-signup-section {
        padding: 60px 0;
    }

    .form-row-flex {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .set-menu-hero-section {
        min-height: 100vh;
    }

    .hero-text-content {
        padding: 80px 15px 50px;
    }

    .main-hero-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .subtitle-text {
        font-size: 18px;
    }

    .hero-text-content .theme-btn {
        max-width: 100%;
        margin-bottom: 12px;
    }

    .exp-text-block h2 {
        font-size: 24px;
    }

    .cta-main-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 20px;
    }

    .section-header-center h2 {
        font-size: 28px;
    }

    .event-card-title {
        font-size: 20px;
    }

    .newsletter-main-title {
        font-size: 24px;
    }
}


/* Set Menu Pricing Section */
.set-menu-pricing-section {
    padding: 100px 0;
    background: var(--color-two);
    position: relative;
    overflow: hidden;
}

.set-menu-pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(210, 145, 69, 0.03) 35px,
            rgba(210, 145, 69, 0.03) 70px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 35px,
            rgba(210, 145, 69, 0.03) 35px,
            rgba(210, 145, 69, 0.03) 70px);
    z-index: 0;
    pointer-events: none;
}

.set-menu-pricing-section>.auto-container {
    position: relative;
    z-index: 1;
}

.pricing-header-text {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header-text h2 {
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-one);
    margin-bottom: 15px;
}

.pricing-header-text p {
    font-size: 16px;
    color: var(--color-three);
    font-style: italic;
}

.menu-pricing-card {
    background: var(--white-color);
    border: 2px solid var(--main-color);
    position: relative;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.menu-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(210, 145, 69, 0.25);
}

.menu-day-badge {
    background: var(--color-one);
    padding: 15px 30px;
    text-align: center;
}

.menu-day-badge span {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 500;
}

.menu-card-inner {
    padding: 50px 45px;
}

.menu-card-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-one);
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 20px;
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px dotted rgba(210, 145, 69, 0.3);
}

.menu-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.courses-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-one);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-detail {
    font-size: 15px;
    color: var(--color-three);
    line-height: 1.6;
}

.item-price {
    font-size: 28px;
    font-weight: 400;
    color: var(--color-one);
    white-space: nowrap;
    margin-left: 30px;
}

.wine-option {
    border-bottom: none;
    padding: 15px 0 0;
    margin-top: -5px;
}

.wine-option .item-detail {
    font-style: italic;
    color: var(--color-one);
    font-size: 14px;
}

.menu-footer-note {
    margin-top: 40px;
    text-align: center;
    padding: 25px;
    background: rgba(210, 145, 69, 0.08);
    border: 1px dashed var(--main-color);
}

.menu-footer-note p {
    font-size: 14px;
    color: var(--color-three);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 991px) {
    .pricing-header-text h2 {
        font-size: 36px;
    }

    .menu-card-title {
        font-size: 28px;
    }

    .menu-card-inner {
        padding: 40px 35px;
    }
}

@media (max-width: 767px) {
    .set-menu-pricing-section {
        padding: 60px 0;
    }

    .pricing-header-text h2 {
        font-size: 32px;
    }

    .menu-card-inner {
        padding: 35px 25px;
    }

    .item-price {
        font-size: 24px;
    }

    .menu-card-title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .pricing-header-text h2 {
        font-size: 28px;
    }

    .menu-card-title {
        font-size: 24px;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    .menu-card-inner {
        padding: 30px 20px;
    }

    .menu-item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 0;
    }

    .item-price {
        margin-left: 0;
        font-size: 22px;
    }

    .menu-footer-note {
        padding: 20px 15px;
    }

    .menu-footer-note p {
        font-size: 13px;
    }
}


/* hero banner buttons */
.bt-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.bt-btn-booknow,
.bt-btn-takeaway {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    padding: 17px 40px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.bt-btn-booknow {
    background: #B75E26;
    color: #fff;
}

.bt-btn-booknow:hover {
    background: #9a4e1e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(183, 94, 38, 0.45);
}

.bt-btn-takeaway {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
}

.bt-btn-takeaway:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

/* --- Responsive --- */
@media (max-width: 640px) {
    .bt-section {
        min-height: 100svh;
        padding: 120px 24px 70px;
    }

    .bt-btns {
        width: 100%;
    }

    .bt-btn-booknow,
    .bt-btn-takeaway {
        max-width: 100%;
    }

    .bt-btns {
        flex-direction: column;
    }
}

/* ====================================
   THALI NIGHT & SUNDAY FEAST - ABSOLUTE FINAL
   Simple Swiper + Fixed Navigation Position
   ==================================== */

/* =================================
   EXPERIENCE SWIPER SECTION
   ================================= */

.experience-swiper {
    width: 100%;
    padding-bottom: 120px;
    position: relative;
}

.experience-swiper .swiper-slide {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.experience-swiper .swiper-slide-active {
    opacity: 1;
}

/* Day Badge */
.exp-day-badge {
    display: inline-block;
    background: var(--main-color);
    color: var(--color-one);
    padding: 8px 20px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Swiper Navigation Buttons - BOTTOM CENTER */
.experience-swiper .swiper-button-prev,
.experience-swiper .swiper-button-next {
    width: 50px;
    height: 50px;
    background: var(--color-one);
    border: 2px solid var(--main-color);
    border-radius: 50%;
    color: var(--main-color);
    top: auto;
    bottom: 0;
    margin-top: 0;
}

.experience-swiper .swiper-button-prev {
    left: 50%;
    margin-left: -80px;
    right: auto;
}

.experience-swiper .swiper-button-next {
    right: 50%;
    margin-right: -80px;
    left: auto;
}

.experience-swiper .swiper-button-prev:after,
.experience-swiper .swiper-button-next:after {
    font-size: 20px;
    font-weight: bold;
}

.experience-swiper .swiper-button-prev:hover,
.experience-swiper .swiper-button-next:hover {
    background: var(--main-color);
    color: var(--color-one);
    transform: scale(1.1);
}

/* Swiper Pagination */
.experience-swiper .swiper-pagination {
    bottom: 60px;
}

.experience-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(244, 229, 207, 0.3);
    opacity: 1;
}

.experience-swiper .swiper-pagination-bullet-active {
    background: var(--main-color);
    width: 40px;
    border-radius: 6px;
}


@media (max-width: 767px) {

    /* Swiper buttons smaller on mobile - stay at bottom center */
    .experience-swiper .swiper-button-prev,
    .experience-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .experience-swiper .swiper-button-prev {
        left: 50%;
        margin-left: -60px;
    }

    .experience-swiper .swiper-button-next {
        right: 50%;
        margin-right: -60px;
    }

    .experience-swiper .swiper-button-prev:after,
    .experience-swiper .swiper-button-next:after {
        font-size: 16px;
    }
}

@media (max-width: 575px) {

    /* Mobile buttons closer at bottom */
    .experience-swiper .swiper-button-prev {
        margin-left: -50px;
    }

    .experience-swiper .swiper-button-next {
        margin-right: -50px;
    }
}

/* =====================================================
   LUNCH MENU SECTION
   Background: --color-two  #F5E6D0  (light cream)
   Text/accent: --color-one  #492D1A  (dark brown)
===================================================== */

.lunch-menu-section {
    position: relative;
    background-color: var(--color-two);
    padding-bottom: 100px;
    overflow: hidden;
}

/* Subtle warm noise texture */
.lunch-menu-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.lunch-menu-section .auto-container {
    position: relative;
    z-index: 1;
}

/* =====================================================
   LABEL BAR
===================================================== */
.lm-label-bar {
    background-color: var(--color-one);
    padding: 13px 0;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.lm-label-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lm-label-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-two);
    font-family: var(--font-family-Urbanist);
}

.lm-label-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-two);
    opacity: 0.4;
    display: inline-block;
}

.lm-label-divider {
    width: 1px;
    height: 14px;
    background: var(--color-two);
    opacity: 0.25;
    display: inline-block;
}

/* =====================================================
   HEADER
===================================================== */
.lm-header {
    text-align: center;
    margin-bottom: 60px;
}

.lm-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-one);
    font-size: 13px;
    letter-spacing: 0.22em;
    line-height: 1em;
    margin-bottom: 12px;
    font-family: var(--font-family-Urbanist);
    opacity: 0.7;
}

.lm-subtitle::before,
.lm-subtitle::after {
    content: "";
    width: 22px;
    height: 22px;
    background: url(../images/icons/lion-svg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    opacity: 0.6;
}

.lm-heading {
    color: var(--color-one);
    font-family: var(--font-family-Fraunces);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.15em;
    margin-bottom: 0;
}

.lm-heading-em {
    font-style: italic;
    color: var(--color-one);
    font-size: 0.72em;
    display: block;
    font-weight: 300;
    opacity: 0.55;
    margin-top: 6px;
}

.lm-header-desc {
    color: rgba(73, 45, 26, 0.65);
    font-size: 16px;
    max-width: 500px;
    margin: 20px auto 0;
    line-height: 1.85em;
    font-family: var(--font-family-Urbanist);
}

/* =====================================================
   MOSAIC GRID
===================================================== */
.lm-mosaic {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 6px;
    margin-bottom: 6px;
}

.lm-mosaic__col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Left col — 2 equal height boxes */
.lm-mosaic__col--stack .lm-img-wrap {
    height: 288px;
    flex: 1;
}

/* Centre col — one tall image */
.lm-mosaic__col--featured {
    flex: 1;
}

.lm-img-wrap--tall {
    height: 100%;
    min-height: 582px;
}

/* Right col — 3 equal height boxes */
.lm-mosaic__col--triple .lm-img-wrap {
    height: 190px;
    flex: 1;
}

/* =====================================================
   IMAGE WRAPS — shared rules
===================================================== */
.lm-img-wrap {
    position: relative;
    overflow: hidden;
    background: rgba(73, 45, 26, 0.08);
    display: block;
}

.lm-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lm-img-wrap:hover img {
    transform: scale(1.06);
}

/* =====================================================
   IMAGE OVERLAYS
===================================================== */
.lm-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 18px 16px;
    background: linear-gradient(to top,
            rgba(73, 45, 26, 0.80) 0%,
            rgba(73, 45, 26, 0.30) 55%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.lm-img-wrap:hover .lm-img-overlay {
    opacity: 1;
}

/* Featured centre — overlay always visible */
.lm-img-overlay--always {
    opacity: 1;
    background: linear-gradient(to top,
            rgba(73, 45, 26, 0.88) 0%,
            rgba(73, 45, 26, 0.25) 45%,
            transparent 100%);
}

.lm-img-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-two);
    font-family: var(--font-family-Urbanist);
    line-height: 1;
}

.lm-img-badge {
    display: inline-block;
    background: var(--color-two);
    color: var(--color-one);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 12px;
    font-family: var(--font-family-Urbanist);
    margin-bottom: 4px;
}

/* =====================================================
   CINEMATIC STRIP — 7th image
===================================================== */
.lm-strip-wrap {
    margin-bottom: 70px;
}

.lm-img-wrap--strip {
    height: 340px;
    display: block;
}

.lm-img-wrap--strip img {
    object-position: center 45%;
}

.lm-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(73, 45, 26, 0.82) 0%,
            rgba(73, 45, 26, 0.35) 45%,
            transparent 75%);
    display: flex;
    align-items: center;
    padding: 0 70px;
}

.lm-strip-quote {
    font-family: var(--font-family-Fraunces);
    font-size: clamp(18px, 2.4vw, 30px);
    color: var(--color-two);
    font-weight: 300;
    font-style: italic;
    max-width: 480px;
    line-height: 1.55em;
}

/* =====================================================
   CTA STRIP
===================================================== */
.lm-cta-strip {
    display: flex;
    align-items: stretch;
    background: var(--color-one);
    flex-wrap: wrap;
}

.lm-cta-left {
    flex: 1 1 340px;
    padding: 52px 50px;
    border-right: 1px solid rgba(245, 230, 208, 0.12);
}

.lm-cta-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-one);
    background: var(--color-two);
    padding: 5px 16px;
    margin-bottom: 22px;
    font-family: var(--font-family-Urbanist);
}

.lm-cta-heading {
    color: var(--color-two);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.2em;
    margin-bottom: 18px;
    font-family: var(--font-family-Fraunces);
    font-weight: 300;
}

.lm-cta-desc {
    color: rgba(245, 230, 208, 0.60);
    font-size: 15px;
    line-height: 1.85em;
    font-family: var(--font-family-Urbanist);
    margin: 0;
}

.lm-cta-right {
    flex: 1 1 320px;
    padding: 52px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.lm-cta-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lm-cta-detail {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(245, 230, 208, 0.12);
    transition: all 0.3s ease;
}

.lm-cta-detail:last-child {
    border-bottom: none;
}

.lm-cta-detail__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid rgba(245, 230, 208, 0.22);
    color: var(--color-two);
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.lm-cta-detail:hover .lm-cta-detail__icon {
    background: var(--color-two);
    color: var(--color-one);
    border-color: var(--color-two);
}

.lm-cta-detail__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 230, 208, 0.45);
    margin-bottom: 5px;
    font-family: var(--font-family-Urbanist);
}

.lm-cta-detail__value {
    font-size: 18px;
    color: var(--color-two);
    font-family: var(--font-family-Fraunces);
    font-weight: 300;
    line-height: 1;
}

.lm-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =====================================================
   RESPONSIVE
===================================================== */

/* Tablet */
@media (max-width: 991px) {
    .lm-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .lm-mosaic__col--featured {
        grid-column: 1 / -1;
        order: -1;
    }

    .lm-img-wrap--tall {
        min-height: 360px;
        height: 360px;
    }

    .lm-mosaic__col--stack .lm-img-wrap {
        height: 230px;
    }

    .lm-mosaic__col--triple .lm-img-wrap {
        height: 170px;
    }

    .lm-cta-strip {
        flex-direction: column;
    }

    .lm-cta-left {
        border-right: none;
        border-bottom: 1px solid rgba(245, 230, 208, 0.12);
        width: 100%;
    }

    .lm-cta-right {
        width: 100%;
    }

    .lm-img-wrap--strip {
        height: 260px;
    }

    .lm-strip-overlay {
        padding: 0 40px;
    }
}

/* Mobile landscape */
@media (max-width: 767px) {
    .lm-label-bar {
        margin-bottom: 50px;
    }

    .lm-header {
        margin-bottom: 36px;
    }

    .lm-mosaic {
        grid-template-columns: 1fr;
    }

    .lm-mosaic__col--featured {
        grid-column: 1;
    }

    .lm-img-wrap--tall {
        min-height: 300px;
        height: 300px;
    }

    /* Stack and triple go side by side on mobile */
    .lm-mosaic__col--stack,
    .lm-mosaic__col--triple {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .lm-mosaic__col--stack .lm-img-wrap,
    .lm-mosaic__col--triple .lm-img-wrap {
        height: 180px;
    }

    /* 3rd image in triple spans full width */
    .lm-mosaic__col--triple .lm-img-wrap:last-child {
        grid-column: 1 / -1;
        height: 160px;
    }

    .lm-strip-wrap {
        margin-bottom: 50px;
    }

    .lm-img-wrap--strip {
        height: 220px;
    }

    .lm-strip-overlay {
        padding: 0 28px;
        background: linear-gradient(to right,
                rgba(73, 45, 26, 0.85) 0%,
                rgba(73, 45, 26, 0.5) 60%,
                transparent 100%);
    }

    .lm-strip-quote {
        font-size: 17px;
        max-width: 100%;
    }

    .lm-cta-left,
    .lm-cta-right {
        padding: 36px 24px;
    }

    .lm-cta-btns {
        flex-direction: column;
    }

    .lm-cta-btns .theme-btn {
        width: 100%;
        text-align: center;
    }

    .lm-cta-btns .theme-btn .btn-wrap {
        width: 100%;
        justify-content: center;
    }

    .lunch-menu-section {
        padding-bottom: 70px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .lm-label-divider {
        display: none;
    }

    .lm-label-text {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .lm-mosaic__col--stack .lm-img-wrap,
    .lm-mosaic__col--triple .lm-img-wrap {
        height: 150px;
    }

    .lm-img-wrap--strip {
        height: 190px;
    }

    .lm-strip-quote {
        font-size: 15px;
    }

    .lm-cta-left,
    .lm-cta-right {
        padding: 30px 20px;
    }

    .lunch-menu-section {
        padding-bottom: 60px;
    }
}