body {
    font-family: "Arial Black", "Open Sans", sans-serif; 
  }
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/


.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1, h2, h3, .h1, .h2, .h3 {
    font-weight: 500 !important;
    font-family: 'Arial Black', sans-serif !important;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 700 !important;
    font-family: 'Arial Black', 'Open Sans', sans-serif !important;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.wow,
.animated {
    animation-duration: 2s !important;
}


/*** Button Start ***/
.btn.btn-primary {
    border: 0;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*** Button End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-light);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-weight: 600;
    font-size: 17px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
    
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

#searchModal .modal-content {
    background-color: rgba(255, 255, 255, .95);
}
/*** Navbar End ***/


/*** Events Start ***/
.event .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 152, 0, 1);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}
/*** Events End ***/








.form-control:not(:placeholder-shown) {
    color: black; /* Or any other color you want */
}

.form-select {
    color: black; /* Set the default text color for the select */
}

.form-select option:checked {
    color: black; /* Ensure the checked option is also black */
}






/*** service start ***/
.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: var(--bs-primary);
    border-radius: 8px;
    transition: 1s;
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-item:hover .service-content-icon i {
    color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}
/*** services End ***/


/*** Menu Start ***/
.menu .nav-item a.active {
    background: var(--bs-primary) !important;
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}
/*** Menu End ***/


/*** Video start ***/
.video {
    position: relative;
    height: auto;
    min-height: auto;
    background: none;
    border-radius: 8px;
    overflow: hidden;
}

.video video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}
/*** Video End ***/


/*** Video End ***/

/*** Blog Start ***/
.blog-item {
    position: relative;
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.3)
}

.blog-item .blog-content {
    position: relative;
    transform: translateY(-50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item .blog-content a.btn h5 {
    transition: 0.5s;
}

.blog-item:hover .blog-content a.btn h5 {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/


/*** Team Start ***/
.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-item .team-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.team-item .team-icon .share-link {
    opacity: 0;
    transition: 0.9s;
}

.team-item:hover .share-link {
    opacity: 1;
}

.team-item .team-content {
    transition: 0.9s;
}

.team-item:hover .team-content {
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
}

.team-item .team-content h4,
.team-item .team-content p {
    transition: 0.5s;
}

.team-item:hover .team-content h4 {
    color: var(--bs-dark) !important;
}

.team-item:hover .team-content p {
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial-item {
    border: 1px solid var(--bs-primary);
    padding: 20px 20px;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}
/*** testimonial End ***/


/*** Contact start ***/
.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

/*** Contact End ***/


/*** Footer Start ***/
.footer .footer-item a.text-body:hover {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/




.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px; /* Moved up to be above back-to-top button */
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
  }

  .whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
  }

  .whatsapp-float i {
    margin-top: 7px;
  }

  /* For mobile devices */
  @media screen and (max-width: 767px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 90px; /* Adjusted for mobile */
      right: 20px;
      font-size: 25px;
    }
  }



  /* .addr{
    margin-top: 50px;
    font-weight: 700;
  } */





/* Walk-in Restaurant Styles */
.walk-in-restaurant .visit-card {
    transition: all 0.3s ease;
}

.walk-in-restaurant .visit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.walk-in-restaurant h2 {
    font-size: 2.5rem;
    color: #0d0d0d;
}

.walk-in-restaurant h3 {
    font-size: 1.5rem;
    font-weight: normal;
    color: #0d0d0d;
}

/* Address and hours text styling */
.address-text, .hours-text {
    font-weight: 700 !important;
    color: #0d0d0d;
}

/* Button styling */
.walk-in-restaurant .btn {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Orange color styling */
.text-orange {
    color: #FF8C00 !important; /* Deep orange color */
}

.btn-orange {
    background-color: #FF8C00;
    color: white;
    border: 2px solid #FF8C00;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: transparent;
    color: #FF8C00;
}



/* Orange text styling */
.text-orange {
    color: #FF8C00 !important; /* Deep orange color */
}




/* Responsive adjustments */
@media (max-width: 991px) {
    .walk-in-restaurant h2 {
        font-size: 2.3rem;
    }
    
    .walk-in-restaurant h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .walk-in-restaurant {
        margin-top: 2rem !important;
    }
    
    .walk-in-restaurant .visit-card {
        padding: 20px !important;
    }
    
    .walk-in-restaurant h2 {
        font-size: 2.1rem;
    }
    
    .walk-in-restaurant h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .walk-in-restaurant h2 {
        font-size: 2rem;
    }
    
    .walk-in-restaurant h3 {
        font-size: 1.2rem;
    }
}
/* ================================================================== */

.img-fluid {
    display: block; /* Prevents extra space below the image */
    max-width: 100%; /* Ensures the image doesn't exceed the width of its parent container */
    height: auto;    /* Maintains the image's aspect ratio while scaling */
  }



/* ======== */


.centerr-content {
    text-align: center;
  }


.menu-container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #fff;
}

.menu-header2 {
    position: relative;
    background-image: url('/img/foodbackgr.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.menu-header2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.menu-title2 {
    position: relative;
    color: #ff8c00; 
    font-size: 42px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 1;
    text-align: center;
}

.category-title2 {
    color: #000;
    border-bottom: 3px solid #ff8c00;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 24px;
}

.menu-item2 {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
    margin-bottom: 20px;
    height: 100%;
    
}

.menu-item2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.item-image2 {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-info2 {
    padding: 15px;
}

.item-name2 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
    color: #000;
}

.item-description2 {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.item-price2 {
    color: #ff8c00;
    font-weight: bold;
    font-size: 18px;
}


@media (max-width: 768px) {
    .menu-title2 {
        font-size: 32px;
    }
    
    .menu-header2 {
        height: 140px;
    }
    
    .item-image2 {
        height: 150px;
    }
}





    /* Responsive adjustments for rental items */
    .rental-item {
        transition: all 0.3s ease;
        margin-bottom: 20px;
        height: 100%;
    }
    
    .rental-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .rental-img {
        height: 400px;
        overflow: hidden;
    }
    
    .rental-img img {
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .rental-item:hover .rental-img img {
        transform: scale(1.05);
    }
    
    
    @media (max-width: 767.98px) {
        .rental-img {
            height: 200px;
        }
        
        .rental-item .p-4 {
            padding: 15px !important;
        }
        
        .rental-item h4 {
            font-size: 1.2rem;
        }
    }
    
  
    @media (max-width: 575.98px) {
        .rental-item .btn {
            width: 100%;
            text-align: center;
            margin-top: 10px;
        }
    }










