@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap");

/* ================================
   BASE STYLES
================================ */
body {
  font-family: "Open Sans", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2 {
  font-family: 'Dancing Script', cursive;
  margin: 0 0 10px;
}

a, a:hover, a:focus {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================================
   LAYOUT PADDING
================================ */
.layout_padding { padding: 90px 0; }
.layout_padding2 { padding: 75px 0; }
.layout_padding2-top { padding-top: 75px; }
.layout_padding2-bottom { padding-bottom: 75px; }
.layout_padding-top { padding-top: 90px; }
.layout_padding-bottom { padding-bottom: 90px; }

/* ================================
   HEADER / NAVIGATION
================================ */
.header_section { padding: 15px 0; }
.navbar-brand { font-family: 'Dancing Script', cursive; }
.navbar-brand span { font-weight: bold; font-size: 32px; color: #ffffff; }

.custom_nav-container .navbar-nav .nav-link {
  padding: 5px 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link { color: #ffbe33; }

.user_option .order_online {
  display: inline-block;
  padding: 8px 30px;
  background-color: #ffbe33;
  color: #ffffff;
  border-radius: 45px;
  transition: all 0.3s;
  border: none;
}

.user_option .order_online:hover { background-color: #e69c00; }

/* ================================
   HERO / SLIDER
================================ */
.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bg-box { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.bg-box img { width: 100%; height: 100%; object-fit: cover; }

.slider_section {
  display: flex;
  align-items: center;
  padding: 45px 0 75px 0;
}
.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ffbe33;
  color: #ffffff;
  border-radius: 45px;
  transition: all 0.3s;
  border: none;
  margin-top: 10px;
}
.slider_section .detail-box a:hover { background-color: #e69c00; }

/* ================================
   OFFER / MENU SECTIONS
================================ */
.offer_section .box,
.food_section .box,
.client_section .box {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 25px;
}

.offer_section .box .img-box img,
.food_section .box .img-box img,
.client_section .box .img-box img {
  transition: all 0.2s;
}

.offer_section .box:hover .img-box img,
.food_section .box:hover .img-box img,
.client_section .box:hover .img-box img { transform: scale(1.1); }

.food_section .filters_menu li.active { background-color: #222831; color: #fff; }

/* ================================
   BUTTONS / ACTIONS
================================ */
.btn, .food_section .btn-box a, .book_section .form_container button,
.contact_section .form_container button {
  display: inline-block;
  padding: 10px 55px;
  background-color: #ffbe33;
  color: #fff;
  border-radius: 45px;
  transition: all 0.3s;
  border: none;
}
.btn:hover,
.food_section .btn-box a:hover,
.book_section .form_container button:hover,
.contact_section .form_container button:hover { background-color: #e69c00; }

/* ================================
   FORMS
================================ */
.book_section .form_container .form-control,
.contact_section .form_container input {
  width: 100%;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  border: 1px solid #999;
  border-radius: 5px;
  outline: none;
  color: #000;
}

/* ================================
   FOOTER
================================ */
.footer_section {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 75px 0 40px 0;
}

.footer_section .footer_social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.footer_section .footer_social a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #111;
  background: #f3f4f6;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.footer_section .footer_social a:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(15,15,15,0.08); color: #fff; }

.footer_social a.facebook:hover { background: #1877F2; }
.footer_social a.x:hover { background: #000; }
.footer_social a.linkedin:hover { background: #0A66C2; }
.footer_social a.instagram:hover { background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.footer_social a.tiktok:hover { background: #010101; }

/* ================================
   TO THE TOP BUTTON
================================ */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFD700;
  color: black;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 2000;
}
.back-to-top:hover { transform: scale(1.1); }
.back-to-top i { font-size: 28px; font-weight: bold; color: black; }

/* ================================
   SEARCH BOX
================================ */
.search-box {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.4);
  z-index: 1001;
  width: 250px;
}
.search-box input { width: 100%; padding: 8px; margin-bottom: 10px; }
#searchResults { max-height: 150px; overflow-y: auto; font-size: 14px; }

/* ================================
   RESPONSIVE MEDIA QUERIES
================================ */
@media (max-width: 1024px) {
  .custom_nav-container .navbar-nav { padding-left: 0; }
}

@media (max-width: 768px) {
  h1, h2 { font-size: 1.8rem; }
  .slider_section .detail-box { margin-bottom: 80px; }
  .food_section .box .img-box { height: 180px; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .btn, .food_section .btn-box a { width: 100%; text-align: center; padding: 12px 0; }
  .slider_section .detail-box h1 { font-size: 2rem; }
}
