/* ১. বাটন আরও বড় করার জন্য স্টাইল */
.btn-orange {
  background-color: #ff8c00 !important;
  color: #fff !important;
  border: none;
  font-size: 16px;
  /* ফন্ট সাইজ বড় করা হয়েছে */
  padding: 12px 35px !important;
  /* প্যাডিং বাড়িয়ে বাটন বড় করা হয়েছে */
  transition: 0.3s all ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-orange:hover {
  background-color: #fff !important;
  color: #ff8c00 !important;
  transform: scale(1.05);
  /* হোভার করলে হালকা বড় হবে */
}

/* ২. মেনু লিঙ্কের নিচে Underline ইফেক্ট */
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 900;
  font-size: 16px;
  position: relative;
  /* আন্ডারলাইনের জন্য পজিশন */
  padding: 10px 15px !important;
}

/* আন্ডারলাইন এনিমেশন ফিক্স */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  /* height: 2px; এর বদলে 4px বা 5px দিন */
  height: 4px;
  bottom: -2px;
  /* দাগটি লেখা থেকে একটু নিচে নামানোর জন্য */
  left: 15px;
  background-color: #ff8c00;
  border-radius: 10px;
  /* দাগের মাথাগুলো একটু গোল দেখাবে */
  transition: width 0.3s ease;
  width: 0;
}

/* মাউস নিলে বা একটিভ থাকলে দাগটি পুরো দেখাবে */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 30px);
}



/* ৩. রেসপন্সিভ সেটিংস */
.desktop-order-btn {
  display: flex !important;
}

.mobile-order-item {
  display: none;
}

@media (max-width: 991px) {
  .desktop-order-btn {
    display: none !important;
  }

  .mobile-order-item {
    display: block;
  }

  /* মোবাইলে আন্ডারলাইন হাইড করতে চাইলে (অপশনাল) */
  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-collapse {
    background: #111;
    padding: 20px;
    margin-top: 15px;
    border-radius: 15px;
    border: 1px solid #333;
  }
}

/* লোগো ও অন্যান্য */
.custom-nav {
  background-color: #000 !important;
  border-bottom: 1px solid #222;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #ff8c00 !important;
  text-decoration: none;
}

.badge-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff8c00;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
}

/*==================================================================================================*/
/* Hero Base */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.486)),
    url('Orange and Black Modern Beef Steak Promotion Banner.png') no-repeat center center/cover;
  padding-top: 80px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(45px, 6vw, 65px);
  /* Responsive font size */
  color: white;
}

.hero-content h1 span {
  color: #ff8c00;
}

/* Welcome Line (Left Sided Lines) */
.welcome-line {
  font-family: 'Dancing Script', cursive;
  font-size: 38px;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-left: 100px;
  margin-bottom: 10px;
}

.welcome-line::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff8c00);
  left: 0;
  top: 50%;
}

/* Tagline with Line */
.tagline {
  font-size: 20px;
  color: white;
  position: relative;
  display: inline-block;
  padding-left: 80px;
  margin-top: 10px;
  opacity: 0.9;
}

.tagline::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff8c00);
  left: 0;
  top: 50%;
}

/* Buttons Styling */
.hero-btns button {
  padding: 12px 25px;
  margin-top: 20px;
  margin-right: 10px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s ease;
}

.order-now {
  background: #ff8c00;
  border: 2px solid #ff8c00;
  color: white;
}

.view-menu {
  background: white;
  border: 2px solid white;
  color: #ff8c00;
}

.hero-btns button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/*=================== CATEGORIES SECTION (Left Aligned) =====================*/
/*=================== FOOD SECTION (Aligned to Far Left) =====================*/
.menu-categories {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  /* একদম বামে রাখার জন্য */
  margin-top: 40px;
  /* যদি আরও বামে নিতে চান তবে নিচের লাইনটি ব্যবহার করুন */
  margin-left: -15px;
  position: relative;
  z-index: 100;
}

.category-inner {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  /* প্যাডিং কিছুটা কমিয়েছি যাতে বামে জায়গা বেশি পায় */
  border-radius: 50px;
  backdrop-filter: blur(15px);
  gap: 15px;
  /* কন্টেইনারের বাইরে চলে যাওয়া আটকাতে */
  max-width: fit-content;
}

/* আপনার welcome-line এর লাইনের সাথে সমান করতে চাইলে */
@media (min-width: 992px) {
  .menu-categories {
    padding-left: 0;
    /* ডিফল্ট প্যাডিং জিরো */
    margin-left: -50px;
    /* এটি পরিবর্তন করে আপনি ডানে-বামে সরাতে পারবেন */
  }
}


.cat-item {
  width: 130px;
  background: #111;
  border-radius: 20px;
  padding: 12px 5px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: 0.3s all ease;
}

.cat-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid transparent;
}

.cat-item:hover,
.cat-item.active {
  background: #000;
  border-color: #ff8c00;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

.cat-item.active img,
.cat-item:hover img {
  border-color: #ff8c00;
}

.cat-label {
  color: white;
  font-weight: 600;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {

  .welcome-line,
  .tagline {
    padding-left: 0;
  }

  .welcome-line::before,
  .tagline::before {
    display: none;
  }

  .category-inner {
    border-radius: 20px;
    overflow-x: auto;
    max-width: 100%;
  }
}


/*========================================================= CATEGORIES SECTION (Left Aligned) =====================*/

/* About Section Base */
.about-section {
  background: #0b0b0b;
  color: white;
  overflow: hidden;
}

/* Image Styling with Frame Effect */
.about-image {
  position: relative;
  padding: 20px;
}

.image-box {
  position: relative;
  border: 2px solid #ff8c00;
  border-radius: 30px;
  padding: 15px;
  z-index: 1;
}

.image-box img {
  border-radius: 20px;
  box-shadow: 20px 20px 0px rgba(255, 140, 0, 0.1);
  transition: 0.5s ease;
}

.image-box:hover img {
  transform: scale(1.02);
  box-shadow: 15px 15px 0px rgba(255, 140, 0, 0.2);
}

/* Professional Experience Tag */
.experience-tag {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: #ff8c00;
  color: #000;
  /* Black text on orange looks premium */
  padding: 25px 20px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(255, 140, 0, 0.3);
  z-index: 2;
  min-width: 140px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.experience-tag h2 {
  font-size: 35px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.experience-tag p {
  font-size: 13px;
  font-weight: 600;
  margin: 5px 0 0;
  line-height: 1.2;
}

/* Typography */
.sub-title {
  color: #ff8c00;
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  margin-bottom: 10px;
}

.main-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.main-title span {
  color: #ff8c00;
}

.description {
  color: #b0b0b0;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Features Styling */
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.feature-icon i {
  color: #ff8c00;
  font-size: 20px;
}

/* Button Upgraded */
.learn-more {
  background: #ff8c00;
  color: white;
  border: 2px solid #ff8c00;
  padding: 14px 40px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.learn-more:hover {
  background: transparent;
  color: #ff8c00;
  transform: translateX(10px);
}

/* Mobile Fixes */
@media (max-width: 991px) {
  .about-content {
    text-align: center;
    margin-top: 40px;
  }

  .feature-item {
    justify-content: center;
  }

  .experience-tag {
    right: 20px;
    bottom: 20px;
  }
}

/*============================================xxxxxxxxxxx======================================================*/
.filter-btn {
  background: white;
  color: #333;
  border: 1px solid #eee;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active {
  background: #ff8c00 !important;
  color: white !important;
  border-color: #ff8c00 !important;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.menu-item-card {
  display: block;
  /* শুরুতে সব দেখাবে */
}

/* হাইড করার ক্লাস */
.d-none {
  display: none !important;
}

.menu-item {
  transition: 0.3s ease-in-out;
}

/* বাকি সব ডিজাইন আগে যা দিয়েছি তাই থাকবে */


/*==============================================================================================================================*/

/* Gallery Section Styles */
.gallery-section {
  padding-bottom: 80px;
  /* নিচের দিকে অতিরিক্ত জায়গা */
}

/* Gallery Item Styling & Animation */
.gallery-item {
  display: block;
  overflow: hidden;
  /* ছবি জুম হলে যেন বাইরে চলে না যায় */
  position: relative;
  border-radius: 12px;
  /* গোল কর্নার */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  /* হালকা শ্যাডো */
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  /* মাউস নিলে একটু উপরে উঠবে */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  /* শ্যাডো গভীর হবে */
}

.gallery-item img {
  width: 100%;
  height: 200px;
  /* সব ছবি একই উচ্চতার */
  object-fit: cover;
  /* ছবি প্রসারিত না হয়ে ফিট হবে */
  transition: transform 0.6s ease, filter 0.6s ease;
  border-radius: 12px;
}

/* Hover-এ ছবির জুম ও ব্রাইটনেস ইফেক্ট */
.gallery-item:hover img {
  transform: scale(1.1);
  /* ছবি ১০% জুম হবে */
  filter: brightness(110%);
  /* একটু উজ্জ্বল হবে */
}

/* লাইটবক্সের ছবির টাইটেল স্টাইল (Optional) */
#lightbox .lb-caption {
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}

/*===============================================================================================================================*/
.review-card {
  min-height: 280px;
  transition: 0.3s ease;
  border: 1px solid #333 !important;
}

.review-card:hover {
  border-color: #ff8c00 !important;
  transform: translateY(-5px);
}

.swiper-pagination-bullet {
  background: #ffffff !important;
  /* ডট সাদা */
}

.swiper-pagination-bullet-active {
  background: #ff8c00 !important;
  /* এক্টিভ ডট অরেঞ্জ */
}

/*===============================================================================================================================*/
.contact-section {
  position: relative;
}

.contact-info-card {
  transition: 0.3s;
  border-color: #f1f1f1 !important;
}

.contact-info-card:hover {
  border-color: #ff8c00 !important;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.map-container {
  height: 400px;
}

.map-container iframe {
  display: block;
}

/*===============================================================================================================================*/
/* Footer Links */
.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #888;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.footer-links li a:hover {
  color: #ff8c00;
  padding-left: 5px;
}

/* Social Media Icons */
.social-links a {
  width: 38px;
  height: 38px;
  background: #1a1a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #333;
}

.social-links a:hover {
  background: #ff8c00;
  color: #000;
  transform: translateY(-3px);
}

/* Newsletter Input Focus */
.footer-section .form-control:focus {
  border-color: #ff8c00 !important;
}

.footer-section .logo span {
  color: #ff8c00;
}