  /* Load Google Fonts */
  
  @import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:wght@400;500;700&display=swap');
  /* Load Google Fonts */
  
  @import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Roboto:wght@400;500;700&display=swap');
  /* Website Headings - Cursive Stylish Font */
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .website-heading {
      font-family: 'Dancing Script', cursive;
      font-weight: 700;
      letter-spacing: 0.5px;
  }
  /* Website Paragraphs and Body Text - Modern Font */
  
  body,
  p,
  li,
  span,
  a {
      font-family: 'Roboto', sans-serif;
      font-size: 16px;
      line-height: 1.7;
  }
  /* Preloader Styles */
  
  #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      flex-direction: column;
  }
  
  .preloader-content {
      text-align: center;
      animation: fadeIn 1.2s ease;
  }
  
  .utensils {
      font-size: 50px;
      animation: spin 1.5s infinite linear;
      display: inline-block;
      margin-bottom: 20px;
  }
  
  .restaurant-name {
      font-family: 'Dancing Script', cursive;
      font-size: 36px;
      font-weight: bold;
      letter-spacing: 1px;
  }
  /* Animations */
  
  @keyframes spin {
      0% {
          transform: rotate(0deg);
      }
      100% {
          transform: rotate(360deg);
      }
  }
  
  @keyframes fadeIn {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
  }
  /* Fade out effect */
  
  .fade-out {
      opacity: 0;
      transition: opacity 1s ease;
  }
  
  .navbar {
      min-height: 70px;
  }
  
  .nav-link-custom {
      font-weight: 500;
      margin: 0 10px;
      color: #333 !important;
      position: relative;
  }
  
  .nav-link-custom::after {
      content: '';
      display: block;
      width: 0;
      height: 2px;
      background: #ff8c00;
      transition: width 0.3s ease;
      margin: 0 auto;
  }
  
  .nav-link-custom:hover::after {
      width: 100%;
  }
  
  .nav-link-custom:hover {
      color: #ff8c00 !important;
  }
  
  .btn-orange {
      background-color: #ff8c00;
      color: white;
      font-weight: 600;
      border-radius: 30px;
      padding: 8px 20px;
      font-size: 14px;
      transition: background-color 0.3s ease;
  }
  
  .btn-orange:hover {
      background-color: #ff6600;
      color: white;
  }
  
  .hero {
      background: url('https://i.pinimg.com/1200x/31/74/04/317404b435b8b8797b14674adfac7a66.jpg') center/cover no-repeat;
      height: 100vh;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      font-family: 'Roboto', sans-serif;
  }
  
  .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
      z-index: 0;
  }
  
  .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: inherit;
      background-size: 110%;
      /* zoom effect */
      transform: scale(1.1);
      filter: blur(2px);
      transition: transform 5s ease;
      z-index: -1;
  }
  
  .hero:hover::before {
      transform: scale(1.15);
  }
  
  .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
  }
  
  .hero-content h1 {
      font-family: 'Dancing Script', cursive;
      font-size: 48px;
      line-height: 1.2;
      letter-spacing: 1px;
      color: #fff;
  }
  
  .hero-content p {
      font-size: 20px;
      font-weight: 300;
      color: #eee;
      margin-bottom: 30px;
  }
  
  .btn-orange {
      background-color: #ff8c00;
      color: white;
      font-weight: 600;
      border-radius: 30px;
      padding: 12px 30px;
      font-size: 16px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
  }
  
  .btn-orange:hover {
      background-color: #ff6600;
      transform: scale(1.05);
  }
  
  .btn-outline-light {
      border: 2px solid white;
      color: white;
      font-weight: 500;
      border-radius: 30px;
      padding: 12px 25px;
      font-size: 16px;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
  
  .btn-outline-light:hover {
      background-color: white;
      color: #000;
      transform: scale(1.05);
  }
  
  .category-icons img {
      width: 100px;
      height: 100px;
  }
  
  .feature-box {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: transform 0.3s;
  }
  
  .feature-box:hover {
      transform: translateY(-10px);
  }
  
  .btn-orange {
      background-color: #ff8c00;
      border: none;
      color: white;
      font-weight: bold;
      border-radius: 30px;
      padding: 10px 20px;
  }
  
  .btn-orange:hover {
      background-color: #ff6600;
  }
  
  .menu-card {
      border: 1px solid #eee;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      background: #fff;
  }
  
  .menu-card:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .menu-img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
  }
  
  .menu-tabs .nav-link {
      background: #f8f9fa;
      color: #333;
      font-weight: 600;
      border-radius: 50px;
      margin: 0 10px;
      padding: 10px 20px;
      transition: all 0.3s ease;
      border: 1px solid #ddd;
  }
  
  .menu-tabs .nav-link:hover {
      background-color: #ff8c00;
      color: #fff;
      border-color: #ff8c00;
  }
  
  .menu-tabs .nav-link.active {
      background-color: #ff8c00;
      color: #fff;
      border-color: #ff8c00;
      box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
  }
  
  .filter-buttons button {
      margin: 0 8px 12px 8px;
      font-weight: 600;
      border-radius: 30px;
  }
  
  .filter-buttons button.active {
      background-color: #ff8c00;
      color: white;
      border-color: #ff8c00;
  }
  
  .filter-buttons button:hover {
      background-color: #ff8c00;
      color: white;
  }
  
  .chef-card {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      transition: transform 0.3s ease;
  }
  
  .chef-card:hover .social-overlay {
      opacity: 1;
      visibility: visible;
  }
  
  .chef-img-wrapper {
      padding: 4px;
      border-radius: 8px;
      background: linear-gradient(45deg, #ff8c00, #ff5100);
      display: inline-block;
  }
  
  .chef-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-radius: 8px;
  }
  
  .social-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }
  
  .social-overlay a {
      color: white;
      font-size: 18px;
  }
  
  .social-overlay a:hover {
      color: #ff8c00;
  }
  
  .carousel-indicators [data-bs-target] {
      background-color: #ff8c00;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      opacity: 0.7;
  }
  
  .carousel-indicators .active {
      opacity: 1;
  }
  
  .feedback-card img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border: 3px solid #ff8c00;
      padding: 2px;
  }
  
  .feedback-card .stars i {
      font-size: 1rem;
  }
  
  .blog-card img.blog-img {
      height: 200px;
      object-fit: cover;
  }
  
  .blog-card:hover {
      transform: translateY(-5px);
      transition: all 0.3s ease;
  }
  
  .blog-card a.btn {
      border-radius: 30px;
      font-weight: 600;
  }
  
  .blog-card img.blog-img {
      height: 300px;
      object-fit: cover;
      transition: transform 0.4s ease;
  }
  
  .blog-card:hover img.blog-img {
      transform: scale(1.1);
  }
  
  .blog-card {
      transition: transform 0.3s ease;
  }
  
  .blog-card:hover {
      transform: translateY(-5px);
  }
  
  .blog-card a.btn {
      background-color: #ff8c00;
      color: #fff;
      font-weight: 600;
      border-radius: 30px;
      padding: 6px 20px;
      transition: background-color 0.3s ease;
      border: none;
  }
  
  .blog-card a.btn:hover {
      background-color: #ff6600;
  }
  
  .video-section .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
  }
  
  .play-btn {
      background-color: #ff8c00;
      color: white;
      font-size: 30px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      transition: transform 0.3s ease, background-color 0.3s ease;
      animation: pulse 1.5s infinite;
  }
  
  .play-btn:hover {
      background-color: #ff6600;
      transform: scale(1.1);
  }
  
  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
      }
      70% {
          box-shadow: 0 0 0 20px rgba(255, 140, 0, 0);
      }
      100% {
          box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
      }
  }
  
  .reserve-form input {
      height: 45px;
      border-radius: 8px;
      font-size: 15px;
  }
  
  .btn-orange {
      background-color: #ff8c00;
      color: white;
      font-weight: bold;
      border-radius: 8px;
      padding: 10px;
      transition: background-color 0.3s ease;
      border: none;
  }
  
  .btn-orange:hover {
      background-color: #ff6600;
  }
  
  .was-validated input:invalid {
      border: 2px solid #dc3545;
  }
  
  .was-validated input:valid {
      border: 2px solid #28a745;
  }
  
  .footer-link {
      color: #aaa;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: color 0.3s ease;
  }
  
  .footer-link:hover {
      color: #ff8c00;
  }
  
  .footer-social {
      color: #fff;
      font-size: 18px;
      display: inline-block;
      width: 35px;
      height: 35px;
      background-color: #222;
      border-radius: 50%;
      text-align: center;
      line-height: 35px;
      transition: background-color 0.3s ease;
  }
  
  .footer-social:hover {
      background-color: #ff8c00;
      color: white;
  }
  
  .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: #ff8c00;
      color: #fff;
      border: none;
      border-radius: 50%;
      font-size: 18px;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 999;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      animation: bounce 1.5s infinite;
  }
  
  .back-to-top:hover {
      background-color: #ff6600;
      transform: scale(1.1);
  }
  
  @keyframes bounce {
      0%,
      100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-8px);
      }
  }
  
  .image-badge-section {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 400px;
  }
  
  .center-logo {
      z-index: 2;
  }
  
  .main-logo {
      width: 150px;
      border-radius: 50%;
      background: white;
      padding: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      animation: rotateLogo 12s linear infinite;
      /* Slow infinite rotation */
  }
  
  @keyframes rotateLogo {
      0% {
          transform: rotate(0deg);
      }
      100% {
          transform: rotate(360deg);
      }
  }
  
  .overlap-images img {
      position: absolute;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
  }
  
  .overlap-images img:hover {
      transform: scale(1.1);
  }
  /* Position images around the center image */
  
  .img1 {
      top: 20%;
      left: 50%;
      transform: translate(-50%, -50%);
  }
  
  .img2 {
      top: 50%;
      right: 30%;
      /* Reduced from 20% to 10% */
      transform: translate(50%, -50%);
  }
  
  .img3 {
      bottom: 20%;
      left: 50%;
      transform: translate(-50%, 50%);
  }
  
  .img4 {
      top: 50%;
      left: 30%;
      /* Reduced from 20% to 10% */
      transform: translate(-50%, -50%);
  }
  /* Background Icons Container */
  
  .floating-food-icons {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
      /* Allows user to click through */
  }
  /* Each Icon Style */
  
  .food-icon {
      position: absolute;
      width: 90px;
      opacity: 0.06;
      /* Subtle visibility */
      animation: floatIcon 25s linear infinite;
  }
  /* Random Starting Positions */
  
  .icon1 {
      top: 10%;
      left: 5%;
      animation-delay: 0s;
  }
  
  .icon2 {
      top: 30%;
      left: 70%;
      animation-delay: 5s;
  }
  
  .icon3 {
      top: 60%;
      left: 20%;
      animation-delay: 10s;
  }
  
  .icon4 {
      top: 80%;
      left: 80%;
      animation-delay: 15s;
  }
  
  .icon5 {
      top: 15%;
      left: 20%;
      animation-delay: 3s;
  }
  
  .icon6 {
      top: 45%;
      left: 80%;
      animation-delay: 7s;
  }
  
  .icon7 {
      top: 75%;
      left: 30%;
      animation-delay: 12s;
  }
  
  .icon8 {
      top: 85%;
      left: 60%;
      animation-delay: 18s;
  }
  /* Floating Animation */
  
  @keyframes floatIcon {
      0% {
          transform: translateY(0) rotate(0deg);
      }
      50% {
          transform: translateY(-30px) rotate(180deg);
      }
      100% {
          transform: translateY(0) rotate(360deg);
      }
  }