/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #DADADA;
    background: #2F2A35;
    font-family: 'open sans', sans-serif;
}


h1, h2 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

h3, 
h4,
h5, 
h6 {
    color: #FAF0E6;
     font-family: 'Poppins', sans-serif;
}

a {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #F7ED9C;
    transition: .3s;
}
body, p, span, li {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}


a:hover,
a:active,
a:focus {
    color: #719a0a;
    outline: none;
    text-decoration: none;
}
/* Logo base */
.navbar .navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Default state */
.logo-sticky {
    display: none;
}

/* When navbar becomes sticky */
.navbar.nav-sticky .logo-default {
    display: none;
}

.navbar.nav-sticky .logo-sticky {
    display: inline-block;
}


/**********************************/
/* MOBILE & TABLET LOGO FIX */
/**********************************/
@media (max-width: 991.98px) {

    /* Always show purple logo */
    .logo-default {
        display: none !important;
    }

    .logo-sticky {
        display: inline-block !important;
    }
}



.btn.custom-btn {
    padding: 12px 25px; /* 6px top/bottom, 25px left/right */
    font-family: 'Nunito', sans-serif;
    font-size: 16px ;
    font-weight: 400;
    color: #2F2A35;
    background: #F7ED9C;
    border: 2px solid #F7ED9C;
    border-radius: 5px;
    transition: .5s;
}

.btn.custom-btn:hover {
    color: #F7ED9C;
    background: transparent;
}

.btn.custom-btn:focus,
.form-control:focus,
.custom-select:focus {
    box-shadow: none;
}


.back-to-top {
    position: fixed;
    display: none;
    background: #F7ED9C;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    border-radius: 5px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #2F2A35;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #DADADA;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}

/* Default navbar button */
.navbar .btn.order-btn {
    font-size: 18px;
    padding: 6px 18px;
    color: #2F2A35;
    background: #F7ED9C;
    border: 2px solid #F7ED9C;
    transition: all 0.3s ease;
}

/* Hover effect (default) */
.navbar .btn.order-btn:hover {
    color: #F7ED9C;
    background: transparent;
    border-color: #F7ED9C;
}

/* Sticky navbar button (on scroll) */
.navbar.nav-sticky .btn.order-btn {
    color: #2F2A35;        /* dark text */
    background: #DADADA;   /* ash button */
    border-color: #DADADA;
}

/* Sticky navbar hover effect */
.navbar.nav-sticky .btn.order-btn:hover {
    color:#2F2A35;        /* your purple color */
    background: #DADADA;   /* keep ash background, no yellow */
    border-color: #DADADA;
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

/* Updated brand styles for logo */
.navbar .navbar-brand {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    transition: .5s;
}

.navbar .navbar-brand img {
    height: 50px;   /* Slightly bigger but safe inside navbar */
    width: auto;
    object-fit: contain;
}

/* Removed text color styles for brand (not needed for logo) */

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 30px 60px;
        background: transparent !important;
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #F7ED9C !important;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        font-family: 'Poppins', sans-serif;
        color: #ffffff;
        font-size: 18px;
        font-weight: 400;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: #666666;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #757575;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: #757575;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #F7ED9C !important;
    }
    
    .navbar .navbar-brand {
        /* No color needed—logo only */
    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/

.carousel-text h1 {
    font-family: 'Poppins', sans-serif; /* main heading text */
    
}

.carousel-text h1 span {
    font-family: 'League Spartan', sans-serif; /* highlighted word */
   
}

.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    background: #ffffff;
}


.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.carousel .container-fluid {
    max-width: 100%; /* override the 1366px limit */
    padding: 0;
}


.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
     object-position: center;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
}

.carousel .carousel-text h1 span {
    color: #F7ED9C;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 35px;
}

/* First button - pastel yellow */
.carousel .carousel-btn .btn:first-child {
    background-color: #F7ED9C;  /* pastel yellow */
    border-color: #F7ED9C;
    color: #2F2A35; /* dark text */
    transition: 0.3s;
}

.carousel .carousel-btn .btn:first-child:hover {
    background-color: transparent;
    color: #FBE48B;
    border: 2px solid #FBE48B;
}

/* Second button - ash yellow / pastel ash */
.carousel .carousel-btn .btn:last-child {
    margin-left: 10px;
    background-color: #DADADA;  /* brighter pastel ash-yellow */
    border-color: #DADADA;
    color: #2F2A35; /* dark text */
    transition: 0.3s;
}

.carousel .carousel-btn .btn:last-child:hover {
    background-color: transparent;
    color: #DADADA;
    border: 2px solid #DADADA;
}

.carousel .carousel-btn .btn {
    font-family: 'Poppins', sans-serif;
     font-weight: 500; 
}


.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 105px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 35px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 70px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/page-header.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: #F7ED9C;
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -1px;
    right: -7px;
    text-align: center;
    color: #F7ED9C;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    color: #FBE48B;
    margin-bottom: 5px;
    position: relative;
    font-size: 20px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 40px;
        font-weight: 600;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 35px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 30px;
        font-weight: 600;
    }
}


/*******************************/
/********* Booking CSS *********/
/*******************************/
.booking {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    background: rgba(0, 0, 0, .04);
}

.booking .booking-content {
    padding: 45px 0 15px 0;
}

.booking .booking-content .section-header {
    margin-bottom: 30px;
}

.booking .booking-form {
    padding: 60px 30px;
    background: #F7ED9C;
}

.booking .booking-form .control-group {
    margin-bottom: 15px;
}

.booking .booking-form .input-group {
    position: relative;
}

.booking .booking-form .input-group-text {
    position: absolute;
    padding: 0;
    border: none;
    background: none;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #757575;
    font-size: 14px;
    pointer-events: none;
}

.booking .booking-form .form-control {
    height: 45px;
    font-size: 14px;
    color: #757575;
    padding: 0 15px;
    border-radius: 5px !important;
    border: 1px solid #2F2A35;
    background: transparent;
}

.booking .booking-form select.form-control {
    padding: 0 10px;
}

.booking .booking-form .form-control::placeholder {
    color: #757575;
    opacity: 1;
}

.booking .booking-form .form-control:-ms-input-placeholder,
.booking .booking-form .form-control::-ms-input-placeholder {
    color: #757575;
}

/* Remove number input arrows */
.booking .booking-form input[type=number]::-webkit-inner-spin-button,
.booking .booking-form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booking .booking-form input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

/* Guest input specific */
.booking .booking-form .guest-input {
    padding-right: 40px; /* make room for the icon */
}

/* Date & Time picker input cursor */
.booking .booking-form .input-group [data-toggle="datetimepicker"] {
    cursor: default;
}

.booking .booking-form .btn.custom-btn {
    width: 100%;
    color: #F7ED9C;
    background: #2F2A35;
    border: 1px solid #2F2A35;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
}

.booking .booking-form .btn.custom-btn:hover {
    color: #757575;
    background: transparent;
    border: 1px solid #757575;
}



/*******************************/
/********** Menu CSS ***********/
/*******************************/
.food {
    position: relative;
    width: 100%;
    padding: 90px 0 60px 0;
    margin: 45px 0;
    background: rgba(0, 0, 0, .04);
}

.food .food-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 50px 30px 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.food .food-item:hover {
    box-shadow: none;
}

.food .food-item i {
    position: relative;
    display: inline-block;
    color: #fbaf32;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    transition: .3s;
}

.food .food-item:hover i {
    color: #719a0a;
}

.food .food-item i::after {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -20px;
    left: -15px;
    border: 3px dotted #fbaf32;
    border-right: transparent;
    border-bottom: transparent;
    border-radius: 100px;
    transition: .3s;
}

.food .food-item:hover i::after {
    border: 3px dotted #719a0a;
    border-right: transparent;
    border-bottom: transparent;
}

.food .food-item h2 {
    font-size: 30px;
    font-weight: 700;
}

.food .food-item a {
    position: relative;
    font-size: 16px;
}

.food .food-item a::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    bottom: 0;
    left: calc(50% - 25px);
    background: #fbaf32;
    transition: .3s;
}

.food .food-item a:hover::after {
    width: 100%;
    left: 0;
    background: #719a0a;
}



/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
}

.about .about-img img {
    position: relative;
    width: 100%;
    border-radius: 15px;
}

.about .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.about .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fbaf32;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.about .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fbaf32;
    border-radius: 50%;
    transition: all 200ms;
}

.about .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.about .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #ffffff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
    padding-left: 17px;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

.about .about-content {
    position: relative;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .about .about-img {
        margin-bottom: 30px;
    }
}


.feature-collage {
    width: 100%;
    max-width: 360px;   /* mobile size */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.feature-img .col-6 {
    padding: 0;
}

/* Bigger size on tablets */
@media (min-width: 768px) {
    .feature-collage {
        max-width: 500px;
    }
}

/* Even bigger on laptops */
@media (min-width: 992px) {
    .feature-collage {
        max-width: 650px;
    }
}

/* Move slightly left only on very large screens */
@media (min-width: 1200px) {
    .feature-collage {
        max-width: 700px;
        margin-left: -30px;
    }
}

/* Move collage slightly left ONLY on large screens */
@media (min-width: 1200px) {
    .feature-collage-wrapper {
        justify-content: flex-end; /* moves slightly left within the right column */
    }
    .feature-collage {
        margin-left: -30px;
    }
}

@media (max-width: 768px) {
    .feature-collage-wrapper {
        margin-top: 40px; /* adds clean gap */
    }
}

@media (max-width: 768px) {
    /* Add margin below the image in small screens */
    .feature-collage {
        margin-bottom: 20px; /* adjust value as needed */
    }

    /* Or if you want to target the button specifically */
    .feature-section-button {
        margin-top: 20px; /* adds space above the button */
    }
}



/*******************************/
/*********** Menu CSS **********/
/*******************************/
.menu {
    position: relative;
    padding: 45px 0 15px 0;
}



.menu .menu-tab img {
    max-width: 100%;
    border-radius: 15px;
}

.menu .menu-tab .nav.nav-pills .nav-link {
    color: #2F2A35;
    background: #F7ED9C;
    border-radius: 5px;
    margin: 0 10px;
}

.menu .menu-tab .nav.nav-pills .nav-link:hover,
.menu .menu-tab .nav.nav-pills .nav-link.active {
    color: #2F2A35;
    background: #DADADA;
}

.menu .menu-tab .tab-content {
    padding: 30px 0 0 0;
    background: transparent;
}

.menu .menu-tab .tab-content .container {
    padding: 0;
}

.tab-pane .col-lg-7 {
    padding-top: 30px;
}

.menu .menu-item {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.menu .menu-text p {
    clear: both;
}

.menu .menu-img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    overflow: hidden;
}

.menu .menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.menu .menu-text {
    width: calc(100% - 100px);
}

.menu .menu-text h3 {
    position: relative;
    display: block;
    font-size: 17px;
    font-weight: 700;
}

.menu .menu-text h3::after {
    position: absolute;
    content: "";
    width: 100%;
    top: 13px;
    left: 0;
    border-top: 2px dotted #cccccc;
    z-index: -1;
}

.menu .menu-text h3 span {
    float: left;
    padding-right: 5px;
}

.menu .menu-text h3 strong {
    float: right;
    padding-left: 5px;
    color: #F7ED9C;
}

.menu .menu-text h3 span,
.menu .menu-text h3 strong {
    position: relative;
    top: -15px;
}

.menu .menu-text p {
    margin: 5px 0 0 0;
    font-size: 15px;
}

/* Right side image */
.menu .col-lg-5 img {
    width: 100%;
    max-width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
}
/* ==============================
   Menu Tabs – Desktop Fix
   ============================== */

/* Reduce left & right padding of the nav container */
.menu .menu-tab .nav.nav-pills {
    padding-left: 10px !important;
    padding-right: 10px !important;
    justify-content: flex-start; /* align tabs from the left */
}

/* Reduce spacing between individual tabs */
.menu .menu-tab .nav.nav-pills .nav-link {
    margin: 0 6px !important; /* smaller left/right spacing */
    padding: 8px 12px !important; /* slightly smaller tabs */
}

/* Optional: slightly scale text for very long tabs */
.menu .menu-tab .nav.nav-pills .nav-link span {
    font-size: 14px !important;
}

/* CENTER TABS ON DESKTOP */
@media (min-width: 768px) {
    .tab-scroll-wrapper {
        overflow: visible; /* disable scroll on desktop */
        text-align: center; /* center the content */
    }

    .tabs-row {
        display: inline-flex !important; 
        flex-wrap: nowrap;
    }
}

/* MOBILE (Keep scroll) */
@media (max-width: 767.98px) {
    .tab-scroll-wrapper {
        overflow-x: auto;
        white-space: nowrap;
    }

    .tabs-row {
        display: flex !important;
        flex-wrap: nowrap !important;
    }
}

/********************************/
/***** MOBILE RESPONSIVE FIX ****/
/********************************/
@media(max-width: 575.98px) {
    .menu .menu-text p,
    .menu .menu-text h3,
    .menu .menu-text h3 span,
    .menu .menu-text h3 strong {
        display: block;
        float: none;
        padding: 0;
        margin: 0;
    }

    .menu .menu-text h3 {
        font-size: 15px;
        margin-bottom: 0;
    }

    .menu .menu-text h3 span {
        margin-bottom: 3px;
    }

    .menu .menu-text h3::after {
        display: none;
    }
}




/* FIX: Tabs not clickable – remove click blocking */
.menu .menu-tab {
    position: relative;
    z-index: 100;
}

.menu .menu-tab .nav {
    position: relative;
    z-index: 200;
}

/* Ensure content stays BELOW tabs */
.menu .tab-content {
    position: relative;
    z-index: 1;
}














/* ===============================
   STARTERS STATIC LAYOUT OVERRIDE
   =============================== */

/* Make all menu items visible */
#starters .carousel-inner,
#starters .carousel-item {
    display: block !important;  /* ensure items are visible */
    height: auto !important;
    overflow: visible !important;
}

/* Hide old carousel arrows / indicators completely */
#starters .carousel-control-prev,
#starters .carousel-control-next,
#starters .carousel-indicators {
    display: none !important;
}

/* Shrink and style menu items */
#starters .menu-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 12px !important;
}

#starters .menu-img {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
}

#starters .menu-text h3 {
    font-size: 16px !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
}

#starters .menu-text p {
    font-size: 13px !important;
    margin-top: 0 !important;
    line-height: 1.3 !important;
}

/* Veg / Non-Veg headings */
#starters .menu-sub-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    margin: 20px 0 10px !important;
    text-align: center !important;
}

/* Right-side image sizing */
#starters .col-lg-5 img {
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 15px !important;
}

/* Responsive adjustments for mobile */
@media (max-width: 767.98px) {
    #starters .menu-item {
        flex-direction: row !important;
        margin-bottom: 10px !important;
    }

    #starters .menu-img {
        width: 40px !important;
        height: 40px !important;
        margin-right: 10px !important;
    }

    #starters .menu-text h3 {
        font-size: 14px !important;
    }

    #starters .menu-text p {
        font-size: 12px !important;
    }
}








/* =========================================
   MAIN COURSE – STATIC FIT-TO-IMAGE OVERRIDE
   ========================================= */

/* Kill carousel completely */
#chicken #mainCourseCarousel,
#chicken .carousel-inner,
#chicken .carousel-item {
    display: block !important;
    position: static !important;
    height: auto !important;
    overflow: visible !important;
}

#chicken .carousel-control-prev,
#chicken .carousel-control-next,
#chicken .carousel-indicators {
    display: none !important;
}

/* LEFT MENU CONTAINER */
#chicken .col-lg-7 {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 700px !important;
    padding-top: 0 !important;
    margin-top: -6px !important;
    overflow: hidden !important;
}

/* MENU ITEM LAYOUT */
#chicken .menu-item {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    margin-bottom: 0 !important;
}

/* MENU IMAGES */
#chicken .menu-img {
    width: 48px !important;
    height: 48px !important;
    margin-right: 12px !important;
}

#chicken .menu-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

/* TEXT AREA */
#chicken .menu-text {
    width: calc(100% - 65px) !important;
}

#chicken .menu-text h3 {
    font-size: 16px !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
}

#chicken .menu-text p {
    font-size: 14px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
}

/* SECTION HEADING */
#chicken .menu-sub-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin: 10px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* RIGHT IMAGE */
#chicken .col-lg-5 img {
    width: 400px !important;
    height: 680px !important;
    object-fit: cover !important;
    border-radius: 15px !important;
    display: block !important;
    margin: 0 auto !important;
}

/* ===================================
   ALLERGEN TAGS
   =================================== */

#chicken .allergens {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin-top: 4px !important;
    margin-bottom: 6px !important;
    font-size: 11px !important;
}

#chicken .allergen-label {
    font-weight: 600 !important;
    color: #a80000 !important;
    white-space: nowrap !important;
}

#chicken .allergen-tag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2px 7px !important;
    background-color: #F7ED9C !important;
    color: #2F2A35 !important;
    border-radius: 5px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

/* FORCE ONE LINE ON DESKTOP */
#chicken .allergens.one-line {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

/* ===================================
   MOBILE RESPONSIVE FIX
   =================================== */

@media (max-width: 767.98px) {

    #chicken .col-lg-7 {
        height: auto !important;
        margin-top: 0 !important;
    }

    #chicken .menu-item {
        flex: none !important;
        margin-bottom: 12px !important;
    }

    #chicken .menu-img {
        width: 45px !important;
        height: 45px !important;
    }

    #chicken .menu-text h3 {
        font-size: 15px !important;
    }

    #chicken .menu-text p {
        font-size: 13px !important;
    }

    #chicken .allergens {
        flex-wrap: wrap !important;
        row-gap: 4px !important;
    }

    #chicken .allergen-tag {
        font-size: 10px !important;
        padding: 2px 6px !important;
    }

    #chicken .allergen-label {
        font-size: 10px !important;
    }

    #chicken .col-lg-5 img {
        width: 100% !important;
        height: auto !important;
        margin-top: 15px !important;
    }
}

/* ===================================
   ALLERGEN TAGS – LEG SPECIALS
   =================================== */

#leg .allergens {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 6px !important;
    margin-bottom: 10px !important;
}

#leg .allergen-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #a80000 !important;
    margin-right: 4px !important;
    white-space: nowrap !important;
}

#leg .allergen-tag {
    font-size: 11px !important;
    padding: 3px 8px !important;
    background-color: #F7ED9C !important; /* light peach */
    color: #2F2A35 !important;
    border-radius: 6px !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
}

/* Force single-line (like main course) */
#leg .allergens.one-line {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}
/* Reduce space between allergens and note */
#leg .allergens {
    margin-bottom: 4px !important;
}

/* Reduce space above the note */
#leg p.mt-3 {
    margin-top: 4px !important;
}



/* ===================================
   BIRYANI – ALLERGEN TAGS
   =================================== */

#biryani .allergens {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    white-space: nowrap !important;
}

/* "Allergens :" label */
#biryani .allergen-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #a80000 !important;
    margin-right: 4px !important;
    line-height: 1 !important;
}

/* Individual allergen pills */
#biryani .allergen-tag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    padding: 3px 8px !important;
    background-color: #F7ED9C !important;   /* light peach */
    color: #2F2A35 !important;              /* soft red */
    border-radius: 6px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

/* ===================================
   MOBILE RESPONSIVE – BIRYANI
   =================================== */

@media (max-width: 767.98px) {

    #biryani .allergens {
        flex-wrap: wrap !important;
        row-gap: 4px !important;
    }

    #biryani .allergen-tag {
        font-size: 11px !important;
        padding: 3px 7px !important;
    }
}


/* ===================================
   VEGETARIAN – ALLERGEN TAGS
   =================================== */

#vegetarian .allergens {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    white-space: nowrap !important;
}

/* "Allergens :" label */
#vegetarian .allergen-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #a80000 !important;
    margin-right: 4px !important;
    line-height: 1 !important;
}

/* Individual allergen pills */
#vegetarian .allergen-tag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    padding: 3px 8px !important;
    background-color: #F7ED9C !important;   /* light peach */
    color: #2F2A35 !important;              /* soft red */
    border-radius: 6px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

/* ===================================
   MOBILE RESPONSIVE – VEGETARIAN
   =================================== */

@media (max-width: 767.98px) {

    #vegetarian .allergens {
        flex-wrap: wrap !important;
        row-gap: 4px !important;
    }

    #vegetarian .allergen-tag {
        font-size: 11px !important;
        padding: 3px 7px !important;
    }
}
/* =========================================
   COMBO SECTION – NATURAL LEFT, FIXED RIGHT IMAGE
   ========================================= */
#combo .col-lg-7 {
    display: block !important;   /* natural height based on content */
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Menu item sizing */
#combo .menu-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 20px !important; /* natural spacing */
}

/* Smaller images */
#combo .menu-img {
    width: 48px !important;
    height: 48px !important;
    margin-right: 12px !important;
}

#combo .menu-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

/* Text sizing */
#combo .menu-text {
    width: calc(100% - 65px) !important;
}

#combo .menu-text h3 {
    font-size: 15px !important;
    line-height: 1.2 !important;
    margin-bottom: 2px !important; /* small space before description */
}

#combo .menu-text p {
    font-size: 13px !important;
    line-height: 1.3 !important;
    margin-bottom: 2px !important; /* tighter spacing between items */
}

/* Section headings */
#combo .menu-sub-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin: 10px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Right image – fixed 500px */
#combo .col-lg-5 img {
    width: 400px !important;
    height: 400px !important;
    object-fit: cover !important;
    border-radius: 15px !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Mobile responsiveness */
@media (max-width: 767.98px) {
    #combo .col-lg-7 {
        height: auto !important;
        margin-top: 0 !important;
    }

    #combo .menu-item {
        flex: none !important;
        margin-bottom: 12px !important;
    }

    #combo .menu-img {
        width: 45px !important;
        height: 45px !important;
    }

    #combo .menu-text h3 {
        font-size: 15px !important;
    }

    #combo .menu-text p {
        font-size: 13px !important;
    }

    #combo .col-lg-5 img {
        width: 100% !important;
        height: auto !important;
        margin-top: 15px !important;
    }
}

/* Allergen tags – same styling as main course */
#combo .allergens {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-top: 4px !important;
    margin-bottom: 6px !important;
}

#combo .allergen-tag {
    font-size: 11px !important;
    padding: 3px 8px !important;
    background-color: #ffe6dc !important;  /* soft peach */
    color: #a80000 !important;             /* soft red */
    border-radius: 6px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

#combo .allergens.one-line {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

#combo .allergen-label {
    margin-right: 6px !important;
}

#combo .allergen-tag {
    margin-right: 4px !important;
}
/* Space below Combo sub-heading */
#combo .menu-sub-title {
    margin-bottom: 35px !important; /* adjust value as needed */
}
/* ===================================
   COMBO – ALLERGEN TAGS
   =================================== */

#combo .allergens {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    white-space: nowrap !important;
}

/* "Allergens :" label */
#combo .allergen-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #a80000 !important;
    margin-right: 4px !important;
    line-height: 1 !important;
}

/* Individual allergen pills */
#combo .allergen-tag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    padding: 3px 8px !important;
    background-color: #F7ED9C !important;   /* light peach */
    color: #2F2A35 !important;              /* text color */
    border-radius: 6px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

/* ===================================
   MOBILE RESPONSIVE – COMBO
   =================================== */
@media (max-width: 767.98px) {

    #combo .allergens {
        flex-wrap: wrap !important;
        row-gap: 4px !important;
    }

    #combo .allergen-tag {
        font-size: 11px !important;
        padding: 3px 7px !important;
    }
}

   




















/* ===================================
   STARTERS – MOBILE SPACING FIX ONLY
   =================================== */
@media (max-width: 767.98px) {

    /* Space after Veg / Non-Veg heading */
    #starters .menu-sub-title {
        margin-bottom: 18px !important;
        padding-bottom: 6px !important;
    }

    /* Each menu item = clear block */
    #starters .menu-item {
        display: flex !important;
        align-items: flex-start !important;
        margin-bottom: 20px !important;   /* space between items */
        padding-bottom: 12px !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* Image spacing */
    #starters .menu-img {
        width: 45px !important;
        height: 45px !important;
        margin-right: 14px !important;
        flex-shrink: 0 !important;
    }

    /* Text container spacing */
    #starters .menu-text {
        width: calc(100% - 60px) !important;
    }

    /* Item name */
    #starters .menu-text h3 {
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;   /* space before description */
    }

    /* Description */
    #starters .menu-text p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        opacity: 0.9;
    }

    /* Remove dotted line on mobile (cleaner) */
    #starters .menu-text h3::after {
        display: none !important;
    }
}




/* ===================================
   MAIN COURSE – MOBILE SPACING FIX
   =================================== */
@media (max-width: 767.98px) {

    /* Space after section heading (e.g. CHICKEN & BEEF) */
    #chicken .menu-sub-title {
        margin-bottom: 18px !important;
        padding-bottom: 6px !important;
    }

    /* Each menu item clearly separated */
    #chicken .menu-item {
        display: flex !important;
        align-items: flex-start !important;
        margin-bottom: 22px !important;   /* space between items */
        padding-bottom: 14px !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* Image spacing */
    #chicken .menu-img {
        width: 45px !important;
        height: 45px !important;
        margin-right: 14px !important;
        flex-shrink: 0 !important;
    }

    /* Text container */
    #chicken .menu-text {
        width: calc(100% - 60px) !important;
    }

    /* Item title */
    #chicken .menu-text h3 {
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    /* Price spacing (prevents crowding) */
    #chicken .menu-text h3 strong {
        display: block !important;
        float: none !important;
        margin-top: 2px !important;
    }

    /* Description */
    #chicken .menu-text p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin: 4px 0 0 0 !important;
        opacity: 0.9;
    }

    /* Allergens spacing */
    #chicken .allergens {
        margin-top: 6px !important;
    }

    /* Remove dotted line on mobile */
    #chicken .menu-text h3::after {
        display: none !important;
    }
}




/* ===================================
   COMBO – MOBILE SPACING FIX
   =================================== */
@media (max-width: 767.98px) {

    /* Space after combo section heading */
    #combo .menu-sub-title {
        margin-bottom: 18px !important;
        padding-bottom: 6px !important;
    }

    /* Each combo item clearly separated */
    #combo .menu-item {
        display: flex !important;
        align-items: flex-start !important;
        margin-bottom: 22px !important;
        padding-bottom: 14px !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* Combo image spacing */
    #combo .menu-img {
        width: 45px !important;
        height: 45px !important;
        margin-right: 14px !important;
        flex-shrink: 0 !important;
    }

    /* Text container width */
    #combo .menu-text {
        width: calc(100% - 60px) !important;
    }

    /* Item title */
    #combo .menu-text h3 {
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    /* Price below title (mobile clarity) */
    #combo .menu-text h3 strong {
        display: block !important;
        float: none !important;
        margin-top: 2px !important;
    }

    /* Description spacing */
    #combo .menu-text p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin: 4px 0 0 0 !important;
        opacity: 0.9;
    }

    /* Allergens spacing */
    #combo .allergens {
        margin-top: 6px !important;
    }

    /* Clean mobile look */
    #combo .menu-text h3::after {
        display: none !important;
    }
}




/* ===================================
   CHICKEN LEGS – MOBILE SPACING FIX
   =================================== */
@media (max-width: 767.98px) {

    /* Space after section heading */
    #leg .menu-sub-title {
        margin-bottom: 18px !important;
        padding-bottom: 6px !important;
    }

    /* Clear separation between items */
    #leg .menu-item {
        display: flex !important;
        align-items: flex-start !important;
        margin-bottom: 22px !important;
        padding-bottom: 14px !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* Item image spacing */
    #leg .menu-img {
        width: 45px !important;
        height: 45px !important;
        margin-right: 14px !important;
        flex-shrink: 0 !important;
    }

    /* Text container */
    #leg .menu-text {
        width: calc(100% - 60px) !important;
    }

    /* Item title */
    #leg .menu-text h3 {
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    /* Price under title */
    #leg .menu-text h3 strong {
        display: block !important;
        float: none !important;
        margin-top: 2px !important;
    }

    /* Description spacing */
    #leg .menu-text p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin: 4px 0 0 0 !important;
        opacity: 0.9;
    }

    /* Allergens spacing */
    #leg .allergens {
        margin-top: 6px !important;
    }

    /* Clean mobile look */
    #leg .menu-text h3::after {
        display: none !important;
    }
}




/* ===================================
   GLOBAL MENU SECTIONS – MOBILE FIX
   Lamb, Biryani, Vegetarian, Rice/Bread, Beverages
   =================================== */
@media (max-width: 767.98px) {

    /* Space after section headings */
    #lamb .menu-sub-title,
    #biryani .menu-sub-title,
    #vegetarian .menu-sub-title,
    #bread .menu-sub-title,
    #drink .menu-sub-title {
        margin-bottom: 18px !important;
        padding-bottom: 6px !important;
    }

    /* Menu item spacing */
    #lamb .menu-item,
    #biryani .menu-item,
    #vegetarian .menu-item,
    #bread .menu-item,
    #drink .menu-item {
        display: flex !important;
        align-items: flex-start !important;
        margin-bottom: 22px !important;
        padding-bottom: 14px !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* Item images */
    #lamb .menu-img,
    #biryani .menu-img,
    #vegetarian .menu-img,
    #bread .menu-img,
    #drink .menu-img {
        width: 45px !important;
        height: 45px !important;
        margin-right: 14px !important;
        flex-shrink: 0 !important;
    }

    /* Text container */
    #lamb .menu-text,
    #biryani .menu-text,
    #vegetarian .menu-text,
    #bread .menu-text,
    #drink .menu-text {
        width: calc(100% - 60px) !important;
    }

    /* Item title */
    #lamb .menu-text h3,
    #biryani .menu-text h3,
    #vegetarian .menu-text h3,
    #bread .menu-text h3,
    #drink .menu-text h3 {
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    /* Price below title */
    #lamb .menu-text h3 strong,
    #biryani .menu-text h3 strong,
    #vegetarian .menu-text h3 strong,
    #bread .menu-text h3 strong,
    #drink .menu-text h3 strong {
        display: block !important;
        float: none !important;
        margin-top: 2px !important;
    }

    /* Description spacing */
    #lamb .menu-text p,
    #biryani .menu-text p,
    #vegetarian .menu-text p,
    #bread .menu-text p,
    #drink .menu-text p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin: 4px 0 0 0 !important;
        opacity: 0.9;
    }

    /* Allergens spacing */
    #lamb .allergens,
    #biryani .allergens,
    #vegetarian .allergens {
        margin-top: 6px !important;
    }

    /* Remove dotted leader line on mobile */
    #lamb .menu-text h3::after,
    #biryani .menu-text h3::after,
    #vegetarian .menu-text h3::after,
    #bread .menu-text h3::after,
    #drink .menu-text h3::after {
        display: none !important;
    }

    /* Remove divider on last item */
    #lamb .menu-item:last-child,
    #biryani .menu-item:last-child,
    #vegetarian .menu-item:last-child,
    #bread .menu-item:last-child,
    #drink .menu-item:last-child {
        border-bottom: none !important;
        margin-bottom: 0 !important;
    }
}


/* ===================================
   RICE & BREAD – DESKTOP MICRO COMPACT
   (Very subtle – screens ≥ 768px)
   =================================== */
@media (min-width: 768px) {

    /* Slightly reduce spacing between items */
    #bread .menu-item {
        margin-bottom: 18px !important;  /* was 20+ */
    }

    /* Image: almost same, just a touch smaller */
    #bread .menu-img {
        width: 52px !important;
        height: 52px !important;
        margin-right: 14px !important;
    }

    /* Title: barely reduced */
    #bread .menu-text h3 {
        font-size: 16px !important;     /* almost original */
        line-height: 1.3 !important;
    }

    /* Description: keep readable */
    #bread .menu-text p {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-top: 4px !important;
    }

    /* Keep dotted line natural */
    #bread .menu-text h3::after {
        top: 12px !important;
        opacity: 0.8;
    }
}


/* ===================================
   BEVERAGES – REDUCE RIGHT IMAGE HEIGHT
   (Desktop / Tablet only)
   =================================== */
@media (min-width: 768px) {

    #drink .col-lg-5 img {
        height: 450px !important;   /* reduced from larger default */
        max-height: 400px !important;
        object-fit: cover !important;
    }
}

/* ===================================
   LAMB – REDUCE RIGHT IMAGE HEIGHT
   (Subtle desktop adjustment)
   =================================== */
@media (min-width: 768px) {

    #lamb .col-lg-5 img {
        height: 520px !important;   /* slightly reduced */
        max-height: 520px !important;
        object-fit: cover !important;
    }
}

@media (min-width: 768px) {

    #biriyani .col-lg-5 img {
        height: 520px !important;   /* slightly reduced */
        max-height: 520px !important;
        object-fit: cover !important;
    }
}


/* ===================================
   CHICKEN LEGS – DESKTOP MICRO COMPACT
   (Screens ≥ 768px only)
   =================================== */
@media (min-width: 768px) {

    /* Slightly tighter spacing between items */
    #leg .menu-item {
        margin-bottom: 18px !important;
    }

    /* Image – barely reduced */
    #leg .menu-img {
        width: 52px !important;
        height: 52px !important;
        margin-right: 14px !important;
    }

    /* Title – almost original size */
    #leg .menu-text h3 {
        font-size: 16px !important;
        line-height: 1.3 !important;
    }

    /* Description */
    #leg .menu-text p {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-top: 4px !important;
    }

    /* Keep dotted leader subtle */
    #leg .menu-text h3::after {
        top: 12px !important;
        opacity: 0.8;
    }
}


/* FIX: Keep navbar above menu section ONLY */
.navbar,
.site-header,
header {
  z-index: 9999 !important;
}

/************************************/
/**** SCROLLABLE TABS (IMPORTANT) ****/
/************************************/
.tab-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
}

.tab-scroll-wrapper::-webkit-scrollbar {
    display: none; 
}

.tabs-row {
    flex-wrap: nowrap !important;
    display: flex !important;
}

.tabs-row .nav-link {
    white-space: nowrap;
    flex: 0 0 auto;
}





/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    background: #ffffff;
}

.team .team-img {
    position: relative;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.team .team-img img {
    position: relative;
    width: 100%;
    margin-top: 15px;
    transform: scale(1.1);
    transition: .3s;
}

.team .team-item:hover img {
    margin-top: 0;
    margin-bottom: 15px;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team .team-social a {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 16px;
    color: #ffffff;
    background: #fbaf32;
    opacity: 0;
}

.team .team-social a:hover {
    color: #ffffff;
    background: #719a0a;
}

.team .team-item:hover .team-social {
    background: rgba(256, 256, 256, .5);
}

.team .team-item:hover .team-social a:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .3s;
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-top: none;
    border-radius: 0 0 15px 15px;
}

.team .team-text h2 {
    font-size: 22px;
    font-weight: 700;
}

.team .team-text p {
    margin: 0;
    font-size: 16px;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 90px 0;
    margin: 45px 0;
    background: rgba(0, 0, 0, .04);
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .08);
    transition: .3s;
    overflow: hidden;
}

.testimonial .testimonial-item:hover {
    box-shadow: none;
}

.testimonial .testimonial-img {
    position: relative;
    width: 100px;
    border-radius: 100px;
    margin-bottom: 20px;
    overflow: hidden;
}

.testimonial .testimonial-img img {
    width: 100%;
    border-radius: 100px;
}

.testimonial .testimonial-item p {
    text-align: center;
    margin-bottom: 10px;
}

.testimonial .testimonial-item h2 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial .testimonial-item h3 {
    color: #999999;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.testimonial .owl-dots {
    margin-top: 10px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fbaf32;
}

.testimonial .owl-dot.active {
    background: #719a0a;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.blog .blog-item {
    position: relative;
}

.blog .blog-img {
    position: relative;
    width: 100%;
     height: 250px;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
     height: 100%;
    object-fit: cover;
}

.blog .blog-content {
    position: relative;
    width: calc(100% - 60px);
    top: -60px;
    left: 30px;
    padding: 15px 20px 20px 20px;
    background: #F5F5F3;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border-radius: 8px;
    z-index: 2;
}

.blog .blog-content h2.blog-title {
    font-size: 22px;
    font-weight: 700;
}

.blog .blog-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.blog .blog-meta p {
    margin: 0 10px 0 0;
    font-size: 14px;
    color: #999999;
}

.blog .blog-meta i {
    color: #fbaf32;
    margin-right: 5px;
}

.blog .blog-meta p:last-child {
    margin: 0;
}

.blog .blog-text {
    position: relative;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    margin-top: 10px;
    padding: 5px 15px;
}

.blog .pagination .page-link {
    color: #fbaf32;
    border-radius: 5px;
    border-color: #fbaf32;
    margin: 0 2px;
}


.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #ffffff;
    background: #fbaf32;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}
.blog-content .blog-title {
    color: #2F2A35 !important;
}

@media(max-width: 575.98px){
    .blog .blog-meta p {
        flex: 50%;
        font-size: 13px;
        margin: 0 0 5px 0;
    }
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #fbaf32;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #fbaf32;
    border-color: #fbaf32;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: rgba(0, 0, 0, .04);
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
    border-radius: 100px;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
    border-radius: 5px;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    color: #757575;
    font-size: 17px;
}

.single .post-item .post-text a:hover {
    color: #fbaf32;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    color: #999999;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #fbaf32;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #719a0a;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
    border-radius: 100px;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #454545;
    background: #dddddd;
    border-radius: 5px;
}

.single .comment-text .btn:hover {
    background: #fbaf32;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 5px;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #fbaf32;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #fbaf32;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #719a0a;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #fbaf32;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #719a0a;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fbaf32;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #fbaf32;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #fbaf32;
    border-color: #fbaf32;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-information {
    min-height: 150px;
    margin: 0 0 30px 0;
    padding: 30px 15px 0 15px;
    background: #F7ED9C;
    border-radius: 4px;   /* your chosen color */
}


.contact .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
   background: #2F2A35;
    border-radius: 50px;
}

.contact .contact-icon i {
    font-size: 18px;
    color: #ffffff;
}

.contact .contact-text {
    position: relative;
    width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2F2A35;
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
    color: #454545;
}

.contact .contact-social a {
    margin-right: 10px;
    font-size: 18px;
    color: #2F2A35;
}

.contact .contact-social a:hover {
    color: #DADADA;
}

.contact .contact-form iframe {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: rgba(0, 0, 0, .04);
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #454545;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #F7ED9C;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #DADADA;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #454545;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #F7ED9C;
}

.footer .footer-link a:hover {
    color: #F7ED9C;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
    color: #F7ED9C;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
    display: flex;
}

.footer .footer-social a {
    display: inline-block;
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7ED9C;
    border-radius: 35px;
    font-size: 16px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #2F2A35;
}

.footer .footer-social a:last-child {
    margin: 0;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    background: transparent;
    border: 1px solid #F7ED9C;
    border-radius: 5px;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
}

.footer .copyright {
    position: relative;
    width: 100%;
    padding: 30px 0;
    text-align: center;
    background: #ffffff;
}

.footer .copyright p {
    margin: 0;
    display: inline-block;
    color: #454545;
}

.footer .copyright p a {
    color: #F7ED9C;
}

.footer .copyright p a:hover {
    color: #2F2A35;
}
