/*
Theme Name: Hello-elementor-child
Author: 
Description: Your description goes here
Version: 1.0
Template: hello-elementor

This is the child theme for Hello Elementor theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/




/* =========================
   KUMAR'S HEADER
========================= */
.kumar-header-inner {
    max-width: 1500px;
    margin: 0 auto;
}
body {
    margin: 0px !important;
}
a {
    text-decoration: none;
}
.kumar-header {
    width: 100%;
    background: #131313;
    position: relative;
    z-index: 9999;
    border-bottom: 1px solid rgba(238, 187, 98, 0.08);
}
a.kumar-btn.book-btn {
    background: transparent;
    color: #EEBB62 !important;
}
.kumar-header-inner {
    width: 100%;
    height: 72px;
    padding: 0 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
}

/* =========================
   LOGO
========================= */

.kumar-logo {
    width: 177px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.kumar-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   DESKTOP NAV
========================= */

.kumar-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 32px;
}

.kumar-nav a {
    color: #ffffff;
    text-decoration: none;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;

    white-space: nowrap;
    transition: 0.3s ease;
}

.kumar-nav a:hover {
    color: #EEBB62;
}

/* =========================
   HEADER BUTTONS
========================= */

.kumar-header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.kumar-btn {
    height: 40px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.3px;

    border-radius: 6px;

    transition: all 0.3s ease;
}

/* Book Table */

.book-btn {
    color: #EEBB62;
    background: transparent;
    border: 1px solid rgba(238, 187, 98, 0.65);
}

.book-btn:hover {
    background: #EEBB62;
    color: #131313;
}

/* Order Online */

.order-btn {
    color: #131313;
    background: #EEBB62;
    border: 1px solid #EEBB62;
}

.order-btn:hover {
    background: #dca84f;
    border-color: #dca84f;
}

/* =========================
   MOBILE TOGGLE
========================= */

.kumar-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;
    margin: 0;

    border: 0;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.kumar-menu-toggle span {
    display: block;

    width: 18px;
    height: 2px;

    background: #EEBB62;

    transition: 0.3s ease;
}

/* =========================
   MOBILE MENU
========================= */

.kumar-mobile-menu {
    display: none;
}


@media (max-width: 1025px) and (min-width: 767px){
     .kumar-menu-toggle {
        display: flex;
    }
    .kumar-nav, .kumar-header-buttons {
    display: none;
}
.kumar-nav, .kumar-header-buttons {
    display: none;
}
.kumar-mobile-menu.active {
    display: block;
}
.kumar-mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.kumar-mobile-buttons {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}
.kumar-mobile-menu nav a {
    padding: 14px 0;
    color: #ffffff;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.kumar-mobile-buttons .kumar-btn {
    flex: 1;
    height: 40px;
    padding: 0 8px;
    font-size: 15px;
}
.kumar-mobile-menu {
    width: 100%;
    background: #131313;
    padding: 20px 18px 25px;
    box-sizing: border-box;
    display: none;
    border-top: 1px solid rgba(238, 187, 98, 0.15);
}
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .kumar-header-inner {
        padding: 0 25px;
    }

    .kumar-nav {
        gap: 20px;
    }

    .kumar-header-buttons {
        gap: 6px;
    }

    .kumar-btn {
        padding: 0 13px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .kumar-header-inner {
        height: 64px;
        padding: 0 18px;
    }

    /* Logo */

    .kumar-logo {
        width: 105px;
    }

    /* Hide desktop nav */

    .kumar-nav,
    .kumar-header-buttons {
        display: none;
    }

    /* Show hamburger */

    .kumar-menu-toggle {
        display: flex;
    }

    /* Mobile menu */

    .kumar-mobile-menu {
        width: 100%;
        background: #131313;

        padding: 20px 18px 25px;

        box-sizing: border-box;

        display: none;

        border-top: 1px solid rgba(238, 187, 98, 0.15);
    }

    .kumar-mobile-menu.active {
        display: block;
    }

    .kumar-mobile-menu nav {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .kumar-mobile-menu nav a {
        padding: 14px 0;

        color: #ffffff;
        text-decoration: none;

        font-family: "Poppins", sans-serif;
        font-size: 13px;
        font-weight: 400;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .kumar-mobile-buttons {
        display: flex;
        gap: 8px;
        margin-top: 20px;
    }

    .kumar-mobile-buttons .kumar-btn {
        flex: 1;
        height: 40px;
        padding: 0 8px;
        font-size: 8px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .kumar-header-inner {
        height: 60px;
        padding: 0 15px;
    }

    .kumar-logo {
        width: 100px;
    }

    .kumar-menu-toggle {
        width: 40px;
        height: 40px;
    }

}



    /* =========================================================
   KUMAR'S INDIAN KITCHEN & SWEETS
   COMPLETE PAGE CSS
========================================================= */


/* =========================================================
   FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


/* =========================================================
   VARIABLES
========================================================= */

.kumar-page {
    --kumar-bg: #131313;
    --kumar-gold: #EEBB62;
    --kumar-text: #ffffff;
    --kumar-description: #B9B2A6;
    --kumar-border: #4b3d29;
    --kumar-card: #1a1816;
    --kumar-offset: #29241d;

    background: #131313;
    color: #ffffff;

    font-family: "Poppins", sans-serif;

    width: 100%;
    overflow: hidden;
}


/* =========================================================
   RESET
========================================================= */

.kumar-page *,
.kumar-page *::before,
.kumar-page *::after {
    box-sizing: border-box;
}

.kumar-page img {
    max-width: 100%;
}

.kumar-page a {
    text-decoration: none;
}

.kumar-container {
    width: min(1500px, calc(100% - 120px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.kumar-hero {
    position: relative;

    /*min-height: 680px;*/

    display: flex;
    align-items: center;
    justify-content: center;

        background-image: url(https://kumarssweets.com.au/images/home-banner-img.png);
    background-size: cover;
    background-position: center;

    text-align: center;
}



.kumar-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    padding: 250px 30px 250px;
}
.white-section span {
    background: #7A5D2B !important;
}
.kumar-hero-eyebrow {
       margin-bottom: 18px;
    color: #EEBB62;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 28%;
    text-transform: uppercase;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.kumar-hero h1 {
    margin: 0 auto 25px;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: clamp(48px, 5vw, 66px);
    font-weight: 700;

    line-height: 1.15;
    letter-spacing: -2px;
    text-transform: uppercase;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.kumar-hero p {
    margin: 0 auto 35px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.kumar-hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    
}

.kumar-hero-content a.kumar-btn {
    box-shadow: 0 6px 8px rgb(0 0 0);
}
/* =========================================================
   BUTTON
========================================================= */

.kumar-btn {
    min-width: 158px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    background: #EEBB62;
    border: 1px solid #EEBB62;
    border-radius: 10px;

    color: #131313 !important;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;

       letter-spacing: 14%;
    text-transform: uppercase;
    
    transition: all 0.3s ease;
     
}

.kumar-btn:hover {
    background: transparent;
    color: #EEBB62 !important;
}


/* =========================================================
   SPLIT SECTIONS
========================================================= */

.kumar-split-section {
    width: 100%;
    padding: 50px 0;

    background: #131313;
}

.kumar-split {
    min-height: 500px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 85px;
}

.kumar-split-content {
    max-width: 590px;
}

.kumar-eyebrow {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 20px;

    color: #EEBB62;

    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;

    letter-spacing: 4px;
    line-height: 1.4;

    text-transform: uppercase;
}

.kumar-eyebrow span {
    width: 36px;
    height: 1px;

    background: #EEBB62;

    display: inline-block;
    flex-shrink: 0;
}
.white-section p {
    color: #474036 !important;
}
.kumar-split-content h2 {
    margin: 0 0 25px;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: 44px;
    font-weight: 700;

    line-height: 1.28;
    letter-spacing: -1px;

    text-transform: uppercase;
}

.kumar-split-content p {
    max-width: 570px;

    margin: 0 0 40px;

    color: #B9B2A6;

    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1.8;
}


/* =========================================================
   SPLIT IMAGE
========================================================= */

.kumar-split-image {
    position: relative;

    width: 100%;
    height: 480px;
}

.kumar-split-image img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.kumar-real-flavours .kumar-image-offset {
    position: absolute;
    z-index: 0;

    right: -20px;
    bottom: -20px;

    width: calc(100% - 20px);
    height: calc(100% - 20px);

    background: #29241d;
}


/* =========================================================
   REVERSE
========================================================= */

.kumar-reverse .kumar-split-content {
    order: 2;
}

.kumar-reverse .kumar-split-image {
    order: 1;
}

section.kumar-split-section.white-section {
    background: #F5EDE0;
}
.white-section .kumar-split {
    display: flex;
}
.white-section .kumar-split-content {
    width: 40%;
}
.white-section .kumar-split-image {
    width: 60%;
}
/* =========================================================
   FAVOURITES
========================================================= */

.kumar-favourites {
    padding: 90px 0 120px;
    background: #131313;
}

.kumar-section-heading {
    text-align: center;
    margin-bottom: 65px;
}

.kumar-section-heading h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-family: "Cinzel", serif;
    font-size: 44px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.kumar-eyebrow.centered {
    justify-content: center;
}

.kumar-favourite-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 38px;
}

.kumar-favourite-card {
    background: #1B1815;

    border: 1px solid #493b27;
    border-radius: 4px;

    overflow: hidden;
}

.kumar-card-image {
    width: 100%;
    height: 285px;
}

.kumar-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.kumar-card-content {
    min-height: 205px;
    padding: 27px;
}

.kumar-card-content h3 {
    margin: 0 0 7px;

    color: #EEBB62;

    font-family: "Cinzel", serif;
    font-size: 21px;
    font-weight: 700;

    line-height: 1.3;
}

.kumar-card-content p {
    margin: 0 0 22px;

    color: #B9B2A6;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
font-weight: 300;
    line-height: 1.65;
}
/* ================================
   JOIN US IN STORE SECTION
================================ */

.join-store-section {
    position: relative;
    width: 100%;
    min-height: 360px;

        background-image: url(https://kumarssweets.com.au/images/join-background-img.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Dark overlay */

.join-store-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.58);

    z-index: 1;
}

/* Content */

.join-store-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;

    padding: 170px 30px;

    text-align: center;

    box-sizing: border-box;
}

/* Small gold heading */

.join-store-eyebrow {
    margin-bottom: 11px;

    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;

    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    color: #EEBB62;
}

/* Main heading */

.join-store-content h2 {
    margin: 0 0 10px;

    font-family: "Cinzel", serif;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;

    color: #ffffff;

    text-transform: uppercase;

    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.7);
}

/* Description */

.join-store-content p {
    margin: 0 auto 22px;

    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;

    color: #FFFFFF;
}

/* Button */

.join-store-btn {
    display: inline-flex;

    min-width: 112px;
    height: 42px;

    padding: 0 22px;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    background: #EEBB62;
    color: #131313;

    border-radius: 6px;
    border: 1px solid #EEBB62;

    text-decoration: none;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
}

.join-store-btn:hover {
    background: #dca84f;
    border-color: #dca84f;

    color: #131313;

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.45);
}
.kumar-booking p {
    font-family: Poppins;
    font-weight: 300;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0%;
    text-align: center;
    color: #B9B2A6;
}

/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .join-store-section {
        min-height: 330px;
    }

    .join-store-content {
        padding: 60px 25px;
    }

    .join-store-content h2 {
        font-size: 34px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {
.white-section .kumar-split-image {
    order: 2 !important;
}
    .join-store-section {
        min-height: 330px;

        background-position: center center;
    }
    .kumar-form-box {
    width: 100% !important;
}
.kumar-btn {
    width: 100% !important;
}
.kumar-booking p br {
    display: none;
}
    .join-store-content {
        padding: 60px 20px;
    }
    .leftright .kumar-split-content {
        padding: 37px 20px !important;
}
.btnnn {
    display: block !important;
}
.kumar-booking p {
    font-size: 15px !important;
}
.leftright .kumar-split-image {
    order: 2 !important;
}
a.kumar-btn {
    width: 100% !important;
    margin-bottom: 10px !important;
}

    .join-store-eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
        margin-bottom: 8px;
    }

    .join-store-content h2 {
        font-size: 35px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .join-store-content p {
        max-width: 320px;

        font-size: 15px !important;
        line-height: 1.6;

        margin-bottom: 20px;
    }
    .join-store-content p br {
    display: none;
}

    .join-store-btn {
        min-width: 110px;
        height: 40px;

        font-size: 12px;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .join-store-section {
        min-height: 300px;
    }

    .join-store-content {
        padding: 50px 15px;
    }

    .join-store-content h2 {
        font-size: 34px;
    }

    .join-store-content p {
        font-size: 9px;
    }

}

/* =========================================================
   STREET FOOD TAGS
========================================================= */

.kumar-tags {
    display: grid;

    grid-template-columns: 132px 132px;

    gap: 13px;

    margin-bottom: 40px;
}
.white-section .kumar-eyebrow {
    color: #7A5D2B;
}
.white-section h2 {
    color: #131313 !important;
}
.kumar-tags span {
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #654d27;
    border-radius: 9px;

    color: #B9B2A6;

    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2px;
    text-transform: uppercase;
}
.white-section a.kumar-btn {
    background: #131313;
    color: #fff !important;
}
.leftright .kumar-split.kumar-reverse {
    gap: 0px;
}

/* =========================================================
   FEATURES
========================================================= */

.kumar-features {
    padding: 35px 0 10px;

    background: #131313;
}

.kumar-features-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 27px;
    max-width: 1238px;
    margin: 0 auto;
    padding-top: 50px;
}

.kumar-feature {
    min-height: 94px;

    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 17px 21px;

    background: #191816;

    border: 1px solid #493b27;
    border-radius: 4px;
}

.kumar-feature-icon {
    color: #EEBB62;

    font-size: 23px;
    line-height: 1;
}

.kumar-feature h3 {
    margin: 0 0 4px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;

    line-height: 1.4;
}

.kumar-feature p {
    margin: 0;

    color: #B9B2A6;

    font-family: "Poppins", sans-serif;
    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   BOOKING
========================================================= */

.kumar-booking {
    padding: 100px 0 120px;
    background: #131313;
}

.kumar-section-heading.left {
    text-align: left;
    margin-bottom: 45px;
}

.kumar-section-heading.left h2 {
    font-size: 44px;
}
.kumar-booking h2 {
    text-align: center;
}
.kumar-form-box {
       width: 880px;
    padding: 40px;
    background: #191816;
    border: 1px solid #493b27;
    border-radius: 5px;
    margin: 0 auto;
}

.kumar-form-box form {
    width: 100%;
}

.kumar-form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.kumar-field {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.kumar-field.full {
    margin-top: 20px;
    margin-bottom: 25px;
}

.kumar-field label {
    color: #D8CBB7;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
}

.kumar-field input,
.kumar-field select,
.kumar-field textarea {
    width: 100%;

    border: 1px solid #4b3d29;
    border-radius: 5px;
    background: #fff;
    border-radius: 14px;
    outline: none;

    background: #131313;

    color: #000;

    font-family: "Poppins", sans-serif;
    font-size: 13px;

    padding: 0 14px;
}
.kumar-field textarea {
    background: #fff !important;
}
.kumar-field input,
.kumar-field select {
    height: 55px;
        background: #fff;
    border-radius: 14px;
}

.kumar-field textarea {
    height: 130px;

    padding: 14px;

    resize: vertical;
}
.kumar-booking .kumar-eyebrow {
    justify-content: center;
}

/* =========================================================
   LOCATION
========================================================= */

.kumar-location {
    padding: 0 0 90px;

    background: #131313;
}
.kumar-location img {
    height: auto !important;
    width: auto !important;
}
.kumar-location-grid {
    display: grid;

    grid-template-columns: 1.3fr 1fr;

    gap: 32px;
}


/* MAP */

.kumar-map-card {
    overflow: hidden;

    background: #191816;

    border: 1px solid #493b27;
    border-radius: 15px;
        position: relative;
}

.kumar-map {
    width: 100%;
    height: 100%;
}

.kumar-map iframe {
    width: 100%;
    height: 100%;

    border: 0;

    display: block;
}
.social-icons img {
    background: #fff;
    border-radius: 58px;
}
.kumar-address {
    min-height: 135px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px 27px;
    background: rgba(19, 19, 19, 0.95);
    position: absolute;
    width: 100% !important;
    bottom: 0;
}

.kumar-address-info {
    display: flex;
    align-items: center;

    gap: 15px;
}

.kumar-location-icon {
    color: #EEBB62;
    font-size: 28px;
}

.kumar-address-info span {
    display: block;

    margin-bottom: 4px;

    color: #EEBB62;

    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2px;
}

.kumar-address-info strong {
    display: block;

    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;

    line-height: 1.45;
}

.kumar-address-info p {
    margin: 3px 0 0;

    color: #B9B2A6;

    font-size: 11px;
}


/* =========================================================
   HOURS CARD
========================================================= */

.kumar-hours-card {
    overflow: hidden;

    background: #1B1713;

    border: 1px solid #75654a;
    border-radius: 15px;
}

.kumar-hours-top {
    min-height: 85px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 27px;
}

.kumar-hours-title {
    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
}

.kumar-hours-pill {
  padding: 8px 22px;
    border: 1px solid #75654a;
    border-radius: 20px;
    color: #EEBB62;
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 500;
    background: #EEBB621A;
}
.kumar-hours-row span {
    font-family: Poppins;
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #C9BAA7;
}
.kumar-hours-list {
    padding: 5px 27px 25px;
}

.kumar-hours-row {
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #39342d;

    color: #B9B2A6;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
}

.kumar-hours-row strong {
    color: #ffffff;

    font-weight: 600;
}

.kumar-contact-bar {
    min-height: 100px;

    display: grid;

   grid-template-columns: 1.3fr 1fr 0.7fr;

    align-items: center;

    gap: 20px;

    padding: 17px 22px;

    background: #EEBB62;
}

.kumar-contact-item > span {
   display: block;
    margin-bottom: 7px;
    color: #17120D;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
}
.btnnn {
    display: flex;
    justify-content: space-between;
}
.btnnn p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: right;
    color: #B9B2A6;
}
.kumar-location .kumar-container {
    border-top: 1px solid #EEBB62;
    padding-top: 40px;
}
.kumar-address a.kumar-btn {
    border-radius: 24px;
}
.mail a {
    font-size: 12px !important;
    font-weight: 500 !important;
}
.kumar-contact-item.social-icons {
    text-align: end;
}
.kumar-socials {
    justify-content: end;
}
.kumar-contact-item > a {
    color: #131313 !important;

    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.kumar-socials {
    display: flex;
    gap: 8px;
}

.kumar-socials a {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #131313;

    color: #ffffff !important;

    font-size: 14px;
}
.kumar-split-content {
    max-width: 590px;
    margin: 0 auto;
}

/* =========================================================
   FOOTER
========================================================= */

.kumar-footer {
    padding: 42px 0 25px;

    background: #131313;

    border-top: 1px solid #EEBB62;
}

.kumar-footer-main {
    min-height: 245px;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 80px;

    padding-bottom: 30px;
}
.kumar-contact-item > a {
    align-content: center;
    display: flex;
    gap: 7px;
}
.kumar-footer-brand img {
    width: 205px;
    height: auto;

    display: block;

    margin-bottom: 25px;
}

.kumar-footer-brand p {
    max-width: 430px;

    margin: 0;

    color: #B9B2A6;

    font-family: "Poppins", sans-serif;
    font-size: 17px;

    line-height: 1.7;
}

.kumar-footer-column {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.kumar-footer-column > span {
    margin-bottom: 5px;

    color: #EEBB62;

    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;

    letter-spacing: 3px;
}

.kumar-footer-column a {
    color: #B9B2A6 !important;

    font-family: "Poppins", sans-serif;
    font-size: 17px;

    transition: color .3s ease;
}

.kumar-footer-column a:hover {
    color: #EEBB62 !important;
}

.kumar-footer-bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid #6c542d;
}

.kumar-footer-bottom p,
.kumar-footer-bottom a {
    margin: 0;

    color: #817d76 !important;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.kumar-footer-bottom a {
    text-decoration: underline;
}
@media (max-width: 767px) {
    .kumar-footer-column {
    width: 44% !important;
}
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .kumar-container {
        width: min(900px, calc(100% - 70px));
    }

    .kumar-hero {
        min-height: 600px;
    }

    .kumar-hero h1 {
        font-size: 55px;
    }

    .kumar-split {
        gap: 50px;
    }

    .kumar-split-content h2 {
        font-size: 36px;
    }

    .kumar-split-image {
        height: 420px;
    }

    .kumar-favourite-grid {
        gap: 20px;
    }

    .kumar-card-image {
        height: 230px;
    }

    .kumar-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kumar-location-grid {
        grid-template-columns: 1fr;
    }
}
.leftright {
    padding: 0px !important;
}
.leftright .kumar-split-image {
    height: auto !important;
}
.leftright .kumar-split {
    gap: 0px !important;
}

/* =========================================================
   MOBILE
========================================================= */
.leftright .kumar-split-content {
    padding: 20px;
}
@media (max-width: 767px) {

    .kumar-container {
        width: calc(100% - 32px);
    }
.kumar-real-flavours .kumar-split-content {
    order: 1;
}
.white-section .kumar-split-content, .white-section .kumar-split-image {
    width: 100% !important;
}
.kumar-reverse .kumar-split-content, .kumar-reverse .kumar-split-content {
    padding: 20px;
}
.smosa-section .kumar-split-image {
    order: 1 !important;
}
.kumar-contact-item.social-icons {
    text-align: left !important;
}
.kumar-socials {
    justify-content: left !important;
}
    /* HERO */

    .kumar-hero {
        min-height: 680px;

        background-position: center;
    }

    .kumar-hero-content {
        padding: 80px 16px;
    }

    .kumar-hero-eyebrow {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .kumar-hero h1 {
        font-size: 35px !important;

        line-height: 1.18;
        letter-spacing: -1px;
    }

    .kumar-hero p {
        font-size: 17px !important;
        line-height: 1.7;
    }

    .kumar-hero p br {
        display: none;
    }

    .kumar-hero-buttons {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .kumar-hero-buttons .kumar-btn {
              width: 76%;
        min-width: 0;
        padding: 0 8px;
        font-size: 15px;
        letter-spacing: 1.2px;
        margin: 0 auto;
    
    }


    /* SPLIT */

    .kumar-split-section {
        padding: 70px 0;
    }

    .kumar-split,
    .kumar-reverse {
        display: flex;
        flex-direction: column;

        gap: 45px;

        min-height: auto;
    }

    .kumar-split-image,
    .kumar-reverse .kumar-split-image {
        order: 1;

        width: 100%;
        height: 330px;
    }

    .kumar-split-content,
    .kumar-reverse .kumar-split-content {
        order: 2;

        width: 100%;
        max-width: none;
    }

    .kumar-split-content h2 {
        font-size: 30px;
        line-height: 1.28;
        letter-spacing: -.5px;
    }

    .kumar-split-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .kumar-eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
        gap: 8px;
    }

    .kumar-eyebrow span {
        width: 26px;
    }

    .kumar-image-offset {
        right: -10px;
        bottom: -10px;
    }

    /* FAVOURITES */

    .kumar-favourites {
        padding: 65px 0 80px;
    }

    .kumar-section-heading {
        margin-bottom: 40px;
    }

    .kumar-section-heading h2 {
        font-size: 30px;
    }

    .kumar-favourite-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .kumar-card-image {
        height: 260px;
    }

    .kumar-card-content {
        min-height: auto;
        padding: 23px;
    }

    .kumar-card-content h3 {
        font-size: 18px;
    }


    /* TAGS */

    .kumar-tags {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .kumar-tags span {
        font-size: 11px;
        letter-spacing: 1px;
    }


    /* FEATURES */

    .kumar-features {
        padding: 15px 0 75px;
    }

    .kumar-features-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    /* BOOKING */

    .kumar-booking {
        padding: 65px 0 80px;
    }

    .kumar-section-heading.left {
        margin-bottom: 30px;
    }

    .kumar-section-heading.left h2 {
        font-size: 31px;
    }

    .kumar-form-box {
        padding: 22px 17px;
    }

    .kumar-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .kumar-field.full {
        margin-top: 15px;
    }


    /* LOCATION */

    .kumar-location {
        padding-bottom: 65px;
    }

    .kumar-location-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .kumar-map {
        height: 500px;
    }

    .kumar-address {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .kumar-address .kumar-btn {
        width: 100%;
    }


    /* HOURS */

    .kumar-hours-top {
        min-height: 100px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 12px;
    }

    .kumar-hours-title {
        font-size: 18px;
    }

    .kumar-hours-list {
        padding: 5px 18px 20px;
    }

    .kumar-hours-row {
        min-height: 55px;

        font-size: 10px;

        gap: 15px;
    }

    .kumar-hours-row strong {
        white-space: nowrap;
        font-size: 10px;
    }

    .kumar-contact-bar {
        grid-template-columns: 1fr;

        gap: 17px;

        padding: 22px;
    }

    .kumar-contact-item > a {
        font-size: 14px;
    }
.kumar-booking p {
    text-align: center !important;
}

    /* FOOTER */

    .kumar-footer {
        padding-top: 40px;
    }

    .kumar-footer-main {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 45px;
        flex-wrap: wrap;
        display: flex;
    }

    .kumar-footer-brand img {
        width: 185px;
    }

    .kumar-footer-bottom {
        min-height: auto;

        flex-direction: column;
        align-items: flex-start;

        gap: 15px;

        padding: 22px 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .kumar-hero {
        min-height: 620px;
    }

    .kumar-hero h1 {
        font-size: 29px;
    }

    .kumar-hero p {
        font-size: 12px;
    }

    .kumar-hero-buttons {
        grid-template-columns: 1fr;
    }

    .kumar-hero-buttons .kumar-btn {
        height: 43px;
    }

    .kumar-split-section {
        padding: 55px 0;
    }

    .kumar-split-image {
        height: 285px;
    }

    .kumar-split-content h2 {
        font-size: 30px !important;
    }

    .kumar-split-content p {
        font-size: 16.5px !important;
    }

    .kumar-section-heading h2 {
        font-size: 30px;
    }

    .kumar-card-image {
        height: 235px;
    }

    .kumar-hours-row {
    justify-content: space-between;
    gap: 3px;
    flex-direction: row;
    align-items: center;
}
.kumar-hours-row span {
    font-size: 11px !important;
}
}

a.kumar-btn.first-button {
    background: transparent;
    color: #eebb62 !important;
        margin-right: 10px;
}


/*success message */

#kumar-form-message {
    margin-top: 25px;
    padding: 18px 20px;
    border: 1px solid #493b27;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

#kumar-form-message.success {
    display: block !important;
    background: #191816;
    color: #EEBB62;
}

#kumar-form-message.error {
    display: block !important;
    background: #191816;
    color: #ff8b8b;
}


@media (max-width: 1101px) and (min-width: 767px){
    .kumar-form-box {
    width: auto !important;
}
.kumar-map-card {
    height: 500px;
}
}
