/* Google Fonts (include in <head>) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Raleway:wght@400;700&display=swap');

.carousel-inner {
  transition: transform 0.5s ease-in-out;
}

/* Banner slide container */
.banner_slide {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform-origin: center center;
  transform: scale(1.1); /* start slightly zoomed-in */
}

/* Dark overlay */
.banner_slide .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Text animations */
.banner_text {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-slide-in 1s ease-out forwards;
}
@keyframes fade-slide-in {
  to { 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;
}
.banner_btn {
  margin-top: 20px;
  opacity: 0;
  animation: fade-in 1s ease-out forwards 1.2s;
}

@keyframes fade-in {
  to { opacity: 1; }
}
@keyframes slide-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Zoom‑out animation on active slide */
@keyframes zoom-out {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}
.carousel-item.active .banner_slide {
  animation: zoom-out 5s ease-in-out forwards;
}

/* Button styles */
.btn_2 {
  background-color: #FBB03B;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}
.btn_2:hover {
  background-color: #e89c2b;
}

/* Carousel controls */
.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;
  transition: background-color 0.2s ease;
  color: #fff;
}
.carousel-control-prev-icon i,
.carousel-control-next-icon i {
  font-size: 20px;
}
.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%);
  z-index: 10;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .banner_slide { height: 500px; }
  .banner_text h5 { font-size: 16px; }
  .banner_text h1 { font-size: 26px; }
  .banner_text p { font-size: 14px; }
  .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; }
}
@media (min-width: 577px) and (max-width: 767px) {
  .banner_slide { height: 550px; }
  .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; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner_slide { height: 600px; }
  .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; }
}


.kitchen-banner {
  padding: 80px 20px;
  background-color: #fff;
  position: relative;
  text-align: center;
}

.kitchen-banner .banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.kitchen-banner .headline {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #222;
  margin: 0;
  position: relative;
}

.kitchen-banner .line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
  max-width: 120px;
}

.kitchen-banner .subtext {
  margin-top: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  color: #666;
}

.kitchen-banner .subtext span.veg {
  color: #388e3c;
  font-weight: bold;
}

.kitchen-banner .subtext span.nonveg {
  color: #d32f2f;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .kitchen-banner .headline {
    font-size: 2.2rem;
    letter-spacing: 4px;
  }

  .kitchen-banner .line {
    max-width: 80px;
  }
}
/* 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%;
    }
}

/* --------------------------------------------
   Base Footer Styles
   -------------------------------------------- */
.footer-area {
  background-color: #F0EED4;
  padding: 50px 0;
  color: #000;
}

.footer_logo img {
  margin-bottom: 10px;
}

.footer_2 h4,
.footer_3 h4 {
  color: #FF5722;
  border-bottom: 2px solid #FF5722;
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.footer_2 p,
.footer_3 p {
  color: #080808;
  font-size: 15px;
  line-height: 1.8;
}

.footer_2 .contact_info span {
  color: #FF5722;
  font-weight: bold;
}

.single-footer-widget a {
  color: #000;
  margin: 0 5px;
  font-weight: 800;
  text-decoration: none;
}

.single-footer-widget a:hover {
  color: #FF5722;
}

/* ensure any <p> inside a widget is centered below */
.single-footer-widget p {
  margin: 0.5em 0;
}

/* Copyright row */
.copyright_part_text {
  background-color: #F0EED4;
  padding: 15px 0;
  margin-top: 20px;
  font-weight: 900;
  color: #000;
}

.copyright_part_text .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-text {
  margin: 0;
}

.copyright_social_icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.copyright_social_icon a {
  color: #666;
  margin-left: 10px;
  font-size: 1.1rem;
}

.copyright_social_icon a:hover {
  color: #FF5722;
}

/* --------------------------------------------
   Mobile & Tablet Styles (up to 991px)
   -------------------------------------------- */
@media (max-width: 991px) {

  /* hide separators and stack nav links */
  .link-separator { display: none; }
  .footer-links a {
    display: block;
    margin-bottom: 5px;
  }

  /* center all widget content */
  .footer-area {
    padding: 40px 20px;
    text-align: center;
  }
  .single-footer-widget {
    margin-bottom: 30px;
  }
  .footer_logo img {
    margin: 0 auto 15px;
    display: block;
    max-width: 150px;
  }

  /* smaller headings & text */
  .footer_2 h4,
  .footer_3 h4 {
    font-size: 18px;
  }
  .footer_2 p,
  .footer_3 p {
    font-size: 14px;
    line-height: 1.6;
  }
  .footer_2 .contact_info span {
    display: block;
    margin-top: 5px;
  }

  /* make the email input/form full‑width */
  .footer_3 .input-group {
    width: 100%;
  }
  .footer_3 .input-group .form-control {
    width: calc(100% - 50px); /* leave space for the button */
  }
  .footer_3 .input-group .input-group-append .btn {
    width: 50px;
  }

  /* center copyright & social icons under it */
  .copyright_part_text .row {
    flex-direction: column;
    text-align: center;
  }
  .copyright_social_icon {
    justify-content: center;
    margin-top: 10px;
  }
}




/* Rich Testimonial Card */
.testimonial-rich {
  background: #F6F5F1;            /* darkest charcoal */
  border-radius: 1rem;
  border: none;
  color: #F9FAFB;                 /* pale off‑white text */
  max-width: 850px;
  overflow: hidden;
  position: relative;
  padding: 2rem;
}

/* Decorative Quotes */
.testimonial-rich .quote-deco,
.testimonial-rich .quote-deco-bottom {
  font-size: 2.5rem;
  color: #fd4800;                 /* warm accent */
  opacity: 0.15;
  position: absolute;
}
.testimonial-rich .quote-deco { top: 1rem; left: 1rem; }
.testimonial-rich .quote-deco-bottom { bottom: 1rem; right: 1rem; }

/* Profile Frame */
.profile-frame {
  width: 80px;
  height: 80px;
  border: 3px solid #E07A5F;      /* muted orange border */
  border-radius: 50%;
  overflow: hidden;
  background: #F0EED4;            /* pale neutral */
}
.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Author Header */
.testimonial-header .author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #FF6426;                 /* accent name */
}
.testimonial-header .author-title {
  font-size: 0.9rem;
  color: #555555;                 /* subdued subtitle */
  margin-left: 0.5rem;
}
.text-orange { color: #ff6600; }
/* Testimonial Title & Body */
.testimonial-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;                 /* off‑white */
  margin: .5rem 0;
}
.testimonial-body {
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;                 /* pale body text */
}

/* Star Rating */
.rating i {
  color: #FF6426;                 /* accent stars */
  margin-right: 0.25rem;
  font-size: 1.2rem;
}

/* Indicator Dots */
.indicator-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.indicator-dots span {
  width: 12px;
  height: 4px;
  background: #555555;            /* inactive dot */
  border-radius: 2px;
  display: inline-block;
}
.indicator-dots span.active {
  background: #FF6426;            /* active dot */
}

/* Responsive: stack on xs */
@media (max-width: 576px) {
  .testimonial-rich .row {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-rich .col-auto {
    margin-bottom: 1rem;
  }
  .profile-frame {
    margin: 0 auto 1rem;
  }
}

