/* ===== Carousel Styling ===== */
.carousel-inner {
    transition: transform 0.5s ease-in-out;
}

.banner_slide {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.banner_slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner_text {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-slide-in 1s ease-out forwards;
}

@keyframes fade-slide-in {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.banner_text h5 {
    font-size: 1.5rem;
    opacity: 0;
    animation: fade-in 1s ease-out forwards 0.5s;
}

.banner_text h1 {
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    animation: slide-up 1s ease-out forwards 0.7s;
}

.banner_text p {
    font-size: 1.2rem;
    font-weight: bold;
    color: aliceblue;
    opacity: 0;
    animation: fade-in 1s ease-out forwards 1s;
}

@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slide-up {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.banner_btn {
    margin-top: 20px;
    opacity: 0;
    animation: fade-in 1s ease-out forwards 1.2s;
}

.btn_2 {
    background-color: #FBB03B;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn_2:hover {
    background-color: #e89c2b;
}

/* Global Carousel Icon Style */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FBB03B;
    border-radius: 50%;
    padding: 15px;
    width: 50px;
    height: 50px;
    background-size: 50%;
    transition: background-color 0.2s ease;
    color: #fff;
}

.carousel-control-prev-icon i,
.carousel-control-next-icon i {
    font-size: 20px;
    margin: 0;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background: #e89c2b;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile First Adjustments */
@media (max-width: 576px) {
    .banner_slide {
        height: 500px;
        padding: 30px 15px;
        background-position: center center;
    }

    .banner_text h5 {
        font-size: 16px;
    }

    .banner_text h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .banner_text p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .banner_btn {
        display: flex;
        justify-content: center;
    }

    .single_page_btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .carousel-control-prev-icon i,
    .carousel-control-next-icon i {
        font-size: 18px;
    }
}

/* Tablets */
@media only screen and (min-width: 577px) and (max-width: 767px) {
    .banner_slide {
        height: 550px;
        padding: 40px 20px;
    }

    .banner_text h5 {
        font-size: 18px;
    }

    .banner_text h1 {
        font-size: 32px;
    }

    .banner_text p {
        font-size: 15px;
    }

    .single_page_btn {
        font-size: 15px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }
}

/* Small Laptops and Large Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner_slide {
        height: 600px;
        padding: 50px 25px;
    }

    .banner_text h1 {
        font-size: 38px;
    }

    .banner_text p {
        font-size: 16px;
    }

    .single_page_btn {
        font-size: 16px;
    }

    .carousel-control-prev {
        left: 20px;
    }

    .carousel-control-next {
        right: 20px;
    }
}

/* Just in case - general support under 992px */
@media (max-width: 991px) {
    .carousel-control-prev,
    .carousel-control-next {
        z-index: 10;
        opacity: 1;
    }
}



/* Food MENu */
.food_menu {
    padding: 50px 0;
}
.nav-tabs {
    justify-content: center !important; /* Forces center alignment */
    display: flex;
    flex-wrap: wrap; /* Ensures responsiveness */
    margin-bottom: 20px;
    border-bottom: 2px solid #ff9800;
}

.nav-tabs .nav-item {
    flex: 1; /* Makes each item take equal space */
    text-align: center; /* Ensures text is centered */
    max-width: 150px; /* Prevents stretching */
}

.nav-tabs .nav-link {
    font-weight: bold;
    color: #333;
    padding: 10px 15px;
    border: none;
    background: transparent !important;
    justify-content: center;
}

.nav-tabs .nav-link.active {
    color: #ff9800;
    text-decoration: underline #ff9800;
}
.tab-content {
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
/* Food Card */
.food-card {
    display: flex;
    align-items: center;
    border: 1px dashed #ddd;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    transition: transform 0.2s ease-in-out;
    margin-bottom: 15px;
}
.food-card:hover {
    transform: scale(1.02);
}

/* Image Styling */
.food-image {
    width: 85px;
    height: 85px;
    border-radius: 10%;
    overflow: hidden;
    flex-shrink: 0;
}
.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Food Info */
.food-info {
    flex: 1;
    padding-left: 10px;
}
.food-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.food-detail {
    font-size: 14px;
    color: #666;
}

/* Price, Quantity & Add to Cart Section */
.food-actions {
    text-align: right;
    min-width: 150px;
}
.food-price {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
}
.old-price {
    font-size: 14px;
    text-decoration: line-through;
    color: #bbb;
    display: block;
    margin-top: 3px;
}

/* Add to Cart Button */
.add-to-cart-btn {
    background: #ff6600;
    color: white;
    border: none;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin-top: 5px;
}
.add-to-cart-btn:hover {
    background: #e65500;
}
.add-to-cart-btn.active {
    background: rgb(0, 255, 0);
}
.food-type-icon {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .food-card {
        flex-wrap: nowrap;
    }
    .food-image {
        width: 70px;
        height: 70px;
    }
    .food-info {
        padding-left: 10px;
    }
    .food-actions {
        text-align: right;
    }
}

@media (max-width: 480px) {
    .food-card {
        padding: 8px;
    }
    .food-title {
        font-size: 14px;
    }
    .food-detail {
        font-size: 12px;
    }
    .food-price {
        font-size: 16px;
    }
    .add-to-cart-btn {
        font-size: 11px;
        padding: 5px 8px;
    }
}
/* Adjust dropdown */
#foodCategoryDropdown {
    width: 100%;
    padding: 10px;
    font-size: 16px;
}


/* ======= Book A Table Section ======= */
.reservation_part {
    background-color: #F0EED4; /* Light Gray background */
    padding: 60px 0;
}
/* Styling for Chef Hat Icon */
.title-icon {
    width: 50px;
    height: auto;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

/* Background Basil Leaves */
.basil-bg {
    position: absolute;
    right: 25%;
    bottom: -340%;
    width: 170px;
    opacity: 0.6;
    z-index: 1;
}

/* Form Styling Enhancements */


.section_tittle {
    text-align: left;
    margin-bottom: 30px;
}

.section_tittle h2 {
    font-size: 34px;
    font-weight: 700;
    color: #151515; /* Black */
}

/* ======= Form Styling ======= */
.reservation_form .form-control {
    border-radius: 8px;
    height: 45px;
    font-size: 16px;
    border: 1px solid #f68708; /* Black Border */
    background-color: #FFFFFF; /* White */
    color: #151515; /* Black */
    padding: 10px;
}

.reservation_form .form-control::placeholder {
    color: #767676; /* Light Gray */
}

/* Select Box Customization */
.reservation_form select {
    appearance: none;
    background-color: #FFFFFF; /* White */
    border: 1px solid #f68708; /* Black Border */
    border-radius: 8px;
    color: #151515; /* Black */
    padding: 10px;
    font-size: 16px;
}

/* ======= Submit Button ======= */
.reservation_form button {
    background-color: #FBB03B; /* Orange */
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    color: #151515; /* Black */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.reservation_form button:hover {
    background-color: #e69a2e; /* Slightly Darker Orange */
}

/* ======= Flash Message Styling ======= */
.alert-success {
    background-color: #00C853; /* Green */
    color: #151515; /* Black */
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

/* ======= Responsive Design ======= */
@media (max-width: 768px) {
    .reservation_form .form-control {
        width: 100%;
    }

    .reservation_form button {
        width: 100%;
    }
}


.footer-area {
    background-color: #F0EED4;
    padding: 50px 0;
    color: #000000;
}

.footer_logo img {
    margin-bottom: 10px;
}

.footer_2 h4, .footer_3 h4 {
    color: #FF5722;
}
.footer_2 p, span {
    color: #000000;
    font-size: 15px;
    color: #080808;
    line-height: 1.8;
  }
.footer_3 p{
    color: #000000;
    font-size: 15px;
    color: #000000;
    line-height: 1.8;
  }
.footer_2 .contact_info span{
    color: #FF5722;
}

.single-footer-widget a {
    color: #000000;
    margin: 0 5px;
    text-decoration: none;
    font-weight: 800;
}

.single-footer-widget a:hover {
    color: #FF5722;
}

.copyright_part_text {
    background-color: #F0EED4;
    padding: 15px 0;
    margin-top: 20px;
    color: #000000;
    font-weight: 900;
}

.copyright_social_icon a {
    color: #ffffff;
    margin: 0 5px;
}

.copyright_social_icon a:hover {
    color: #FF5722;
}

.text-center .single-footer-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 768px) {
    .link-separator {
        display: none;
    }

    .footer-links a {
        display: block;
        margin-bottom: 5px;
    }
}
/* Tablet Optimization (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .footer-area {
      padding: 40px 20px;
      text-align: center;
    }
  
    .footer_logo img {
      margin: 0 auto 15px;
      display: block;
      max-width: 150px;
    }
  
    .single-footer-widget {
      margin-bottom: 30px;
    }
  
    .footer_2 h4,
    .footer_3 h4 {
      font-size: 18px;
      margin-bottom: 10px;
    }
  
    .footer_2 p,
    .footer_3 p {
      font-size: 14px;
      line-height: 1.6;
    }
  
    .footer_2 .contact_info span {
      display: block;
      margin-top: 5px;
    }
  
    .copyright_part_text {
      text-align: center;
      padding: 10px 15px; 
      font-size: 14px;
    }
  
    .copyright_social_icon {
      margin-top: 10px;
    }
  }
  