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

/* ===================================
   NEW COLOR THEME – PRIMARY & SECONDARY
   =================================== */

:root {
  --primary:      #1b191a;
  --primary-dark: #5e161c;   /* ~30% darker for hover */
  --secondary:    #831f27;
  --light-bg:     #f5f5f5;
  --text-light:   #ffffff;
  --text-dark:    #ffffff;
}
/* ===================================
   CUSTOM FONT DEFINITIONS
   =================================== */
@font-face {
  font-family: 'Helvetica'; /* The name you'll use in your CSS */
  src: url('../fonts/Helvetica.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  background-color: #1b191a;
  overflow-x: hidden;
}

.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;
}

h1,
h2 {
  font-family: 'Dancing Script', cursive;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: bold;
}

.heading_container h2 span {
  color: var(--primary);
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

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

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.logo-above-menu img {
  max-height: 70px;      /* adjust as you like */
  width: auto;
}
/* ===================================
   HEADER SECTION
   =================================== */
   /* ===================================
   NEW HEADER / NAVIGATION BAR
   =================================== */
.site-header {
 background: linear-gradient(to right, var(--secondary), #a83c44);  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo-above-menu img {
  max-height: 70px;      /* adjust as you like */
  width: auto;
}
/* ===================================
   LOGO STYLING (ADJUSTED)
   =================================== */
.logo-above-menu-container {
  position: relative;
  z-index: 1000;
}

/* MODIFIED RULE: This removes the white box styling */
.logo-above-menu-container .container a {
  display: inline-block; /* Kept for proper block-level behavior */
  /* background-color: #ffffff; */ /* REMOVED */
  /* padding: 8px; */              /* REMOVED */
  /* border-radius: 5px; */        /* REMOVED */
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */ /* REMOVED */
  line-height: 1;
}

.logo-above-menu-container .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo-above-menu-container img.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Reduce space between logo and menu section */
.food_section.layout_padding {
  padding-top: 30px !important; /* Reduced from 90px */
}

/* Optional: Tighten heading margin */
.food_section .heading_container h2 {
  margin-bottom: 20px;
}
/* ===================================
   SLIDER SECTION
   =================================== */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 45px 0 75px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #ffffff;
  margin-bottom: 145px;
}

.slider_section .detail-box h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.slider_section .detail-box p {
  font-size: 14px;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 10px;
}

.slider_section .detail-box a:hover {
  background-color: var(--primary-dark);
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: var(--primary);
}

/* ===================================
   OFFER SECTION
   =================================== */
.offer_section {
  position: relative;
  padding-top: 45px;
}

.offer_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
  border-radius: 5px;
  padding: 20px 15px;
  background-color: var(--secondary);
  color: #ffffff;
}

.offer_section .box .img-box {
  width: 175px;
  min-width: 175px;
  height: 175px;
  margin-right: 15px;
  position: relative;
  -webkit-transition: all 0.1 0.5s;
  transition: all 0.1 0.5s;
  border-radius: 100%;
  border: 5px solid var(--primary);
  overflow: hidden;
}

.offer_section .box .img-box img {
  width: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.offer_section .box .detail-box h5 {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  margin: 0;
}

.offer_section .box .detail-box h6 {
  font-family: 'Dancing Script', cursive;
  margin: 10px 0;
}

.offer_section .box .detail-box h6 span {
  font-size: 2.5rem;
  font-weight: bold;
}

.offer_section .box .detail-box a {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.offer_section .box .detail-box a:hover {
  background-color: var(--primary-dark);
}

.offer_section .box .detail-box a svg {
  width: 20px;
  height: auto;
  margin-left: 5px;
  fill: #ffffff;
}

.offer_section .box:hover .img-box img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* ===================================
   FOOD / MENU SECTION
   =================================== */
.food_section .filters_menu {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
  margin: 45px 0 20px 0;
}

.food_section .filters_menu li {
  padding: 7px 25px;
  cursor: pointer;
  border-radius: 25px;
  font-family: Helvetica, sans-serif;
}

.food_section .filters_menu li.active {
  background-color: var(--secondary);
  color: #ffffff;
}

.food_section .box {
  position: relative;
  margin-top: 25px;
  background-color: #ffffff;
  border-radius: 10px;
  color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--light-bg) 25px, var(--secondary) 25px);
}

.food_section .box .img-box {
  background: var(--light-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 215px;
  border-radius: 0 0 0 45px;
  margin: -1px;
padding: 0; /* Remove padding to allow full cover */
  overflow: hidden; /* Critical for object-fit */
}

.food_section .box .img-box img {
width: 100%;
  height: 100%;
  object-fit: cover;     /* This makes image fill the box */
  object-position: center;
  /* transition: all .2s; */
  border-radius: 0 0 0 45px; /* Match container corner */
}

.food_section .box .detail-box {
  padding: 25px;
}

.food_section .box .detail-box h5 {
  font-weight: 600;
  font-family:Helvetica, sans-serif;
  font-weight: bold;
}

.food_section .box .detail-box p {
  font-size: 15px;
    font-family: Helvetica, sans-serif;

}

.food_section .box .detail-box h6 {
  margin-top: 10px;
    font-family:Helvetica, sans-serif;
  font-weight: bold;
}

.food_section .box .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.food_section .box .options a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.food_section .box .options a svg {
  width: 18px;
  height: auto;
  fill: #ffffff;
}

/* .food_section .box:hover .img-box img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
} */

.food_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
  position: relative;
  z-index: 10;
  margin-top: 30px;
}

.food_section .btn-box a {
  display: inline-block;
  padding: 10px 55px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.food_section .btn-box a:hover {
  background-color: var(--primary-dark);
}

/* ===================================
   ABOUT, BOOK, CONTACT, CLIENT
   =================================== */
.about_section {
  background: var(--secondary);
  color: #ffffff;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about_section .img-box img {
  width: 100%;
  max-width: 445px;
  position: relative;
  z-index: 2;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: var(--primary-dark);
}

.book_section .form_container .form-control {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  border: 1px solid #999;
  outline: none;
  color: #000000;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.book_section .form_container button {
  margin-top: 15px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 55px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.book_section .form_container button:hover {
  background-color: var(--primary-dark);
}

.client_section .box .detail-box {
  background-color: var(--secondary);
  color: #ffffff;
}

.client_section .box .img-box::before {
  background-color: var(--primary);
}

.contact_section .form_container button {
  margin-top: 10px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 55px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.contact_section .form_container button:hover {
  background-color: var(--primary-dark);
}

/* ===================================
   FOOTER SECTION
   =================================== */
.footer_section {
  background-color: var(--secondary);
  color: #ffffff;
  padding: 75px 0 40px 0;
  text-align: center;
}

.footer_section .logo-img {
  width: 150px;
  height: auto;
  display: block;           /* Changed from 'inline' to 'block' */
  margin: 0 auto;           /* Horizontally centers */
  margin-top: 0;            /* Remove any top margin */
  margin-bottom: 20px;      /* Optional: space below logo */
}


/* ===================================
   FINAL SOURCE MAP COMMENT
   =================================== */
/*# sourceMappingURL=style.css.map */