@font-face {
  font-family: 'Antonio';
  src: url('../fonts/Antonio-Light.woff2') format('woff2'),
      url('../fonts/Antonio-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antonio';
  src: url('../fonts/Antonio-Regular.woff2') format('woff2'),
      url('../fonts/Antonio-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antonio';
  src: url('../fonts/Antonio-Bold.woff2') format('woff2'),
      url('../fonts/Antonio-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Black.woff2') format('woff2'),
      url('../fonts/Inter-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
      url('../fonts/Inter-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.woff2') format('woff2'),
      url('../fonts/Inter-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
      url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2'),
      url('../fonts/Inter-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}



@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Bold.woff2') format('woff2'),
      url('../fonts/OpenSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-BoldItalic.woff2') format('woff2'),
      url('../fonts/OpenSans-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Italic.woff2') format('woff2'),
      url('../fonts/OpenSans-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans.woff2') format('woff2'),
      url('../fonts/OpenSans.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSansLight-Italic.woff2') format('woff2'),
      url('../fonts/OpenSansLight-Italic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Light.woff2') format('woff2'),
      url('../fonts/OpenSans-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}








/* Fonts */
:root {
  --default-font: 'Inter';
  --heading-font: 'Antonio';
  --nav-font: 'Inter';
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f5f9ff; /* Background color for the entire website, including individual sections */
  --default-color: #535353; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #00a19a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #94c122; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --regular-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
} 

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #00a19a;  /* The default color of the main navmenu links */
  --nav-hover-color: #94c122; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #df2327; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #bc222a; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 15px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  /*font-style: italic;*/
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header .topbar {
  background-color: #060606;
  height: 40px;
  padding: 0;
  font-size: 12px;
  transition: all 0.5s;
}

.header .topbar .contact-info {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info a,
.header .topbar .contact-info span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info a,
  .header .topbar .contact-info span {
    font-size: 12px;
  }
}

.header .topbar .contact-info a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: transparent;
  min-height: 60px;
  padding: 18px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 100px;
  margin-right: 8px;
  transition: .3S;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  background-color: var(--heading-color);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.scrolled .header .logo img {
  height: 60px;
  margin-right: 8px;
  transition: .3S;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.6);
    padding: 18px 15px;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: rgba(255, 255, 255, 1);
  }

}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--contrast-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 100px 25px;
    margin: 0;
    border-radius: 1rem;
    background-image: url('../img/dec1.jpg');
    background-position: center;
    background-size: cover;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    /*box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);*/
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #FFF;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }


  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.bg-dark {
  background-color: #060606 !important;
}
.logo-footer {
  width: 150px;
  height: auto;
}
.footer {
  color: var(--contrast-color);
  background-color: #060606;
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  padding: 100px 0 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}


.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--heading-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader img {
  width: 250px;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background: #075e54;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
  margin-top: 137px;
}

.page-title h1 {
  font-size: 34px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero .swiper-slide {
  width: 100%;
  height: 100dvh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#hero .swiper-slide p {
  color: #fff;
}

#hero .swiper-slide::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

#hero .swiper-slide .container {
  position: relative;
  z-index: 2;
}



.swiper-button-next, 
.swiper-button-prev {
  color: var(--accent-color);
  background-color: #f5f9ff;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  box-shadow: var(--regular-shadow);
}
.swiper-button-next::after, 
.swiper-button-prev::after {
  font-size: 16px;
}


#resto-bar .content-green {
  background-color: var(--accent-color);
  border-radius: .5rem;
  box-shadow: var(--regular-shadow);
  position: relative;
  overflow: hidden;
}
#resto-bar .content-green::before {
  font-family: 'fontawesome';
  content: "\f10d";
  color: var(--contrast-color);
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 15px;
  font-size: 150px;
  line-height: normal;
}
#resto-bar .content-green::after {
  font-family: 'fontawesome';
  content: "\f10e";
  color: var(--contrast-color);
  opacity: 0.1;
  position: absolute;
  bottom: 0;
  right: 15px;
  font-size: 150px;
  line-height: normal;
}

#resto-bar blockquote {
  /*font-family: var(--heading-font);*/
  color: var(--contrast-color);
  font-size: 18px;
  line-height: normal;
  /*text-transform: uppercase;*/
}



.swiper-pagination-bullet {
  background: var(--contrast-color);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--accent-color);
}
#hero .swiper-slide .container h1{
  color: var(--contrast-color);
  font-size: 57px;
  font-weight: 600;
  line-height: 57px;
  /*font-style: italic;*/
}

.icon-btn {
  border: 1px solid transparent;
  background: transparent;
  display: inline-block;
  padding: 20px 1px;
  border-radius: .5rem;
  transition: 0.3s;
}
.icon-btn i {
  font-size: 24px;
  transition: 0.3s;
}
.icon-btn h3 {
  color: #000;
  font-family: var(--default-font);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
  margin-top: 15px;
}
.icon-btn:hover {
  border: 1px solid #FFF;
  background: #FFF;
  box-shadow: var(--regular-shadow);
  transition: 0.3s;
}
.icon-btn:hover i {
  font-size: 24px;
  color: var(--heading-color);
  transition: 0.3s;
}
.icon-btn:hover h3 {
  color: var(--heading-color);
  transition: 0.3s;
}
.icon-btn.active {
  border: 1px solid #FFF;
  background: #FFF;
  box-shadow: var(--regular-shadow);
  transition: 0.3s;
}
.icon-btn.active i {
  font-size: 24px;
  color: var(--heading-color);
  transition: 0.3s;
}
.icon-btn.active h3 {
  color: var(--heading-color);
  transition: 0.3s;
}

.btn-get-started {
  color: var(--contrast-color);
  background: var(--heading-color);
  font-family: var(--default-font);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 20px 35px;
  border-radius: .5rem;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-get-started:disabled {
  opacity: .5;
}

.btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--heading-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--heading-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}


.btn-contact {
  color: var(--contrast-color);
  background: var(--heading-color);
  font-family: var(--default-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: .5rem;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-contact:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--heading-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}


.btn-get-invert {
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
  background: transparent;
  font-family: var(--default-font);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: .5rem;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-get-invert:hover {
  color: var(--heading-color);
  background: var(--contrast-color);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}






/*MY STYLES*/

.slider-card {
  border-radius: .5rem;
  height: auto;
  background-color: var(--contrast-color);
  box-shadow: var(--regular-shadow);
}
.slider-card img {
  width: 100%;
  height: 400px;
  border-radius: .5rem .5rem 0 0;
  object-fit: cover;
}
.slider-card .slider-card-body {
  padding: 20px 15px;
  height: 350px;
}
.food-card h5 {
  letter-spacing: normal !important;
  font-family: var(--nav-font);
  color: #060606;
  font-size: 16px;
}
.food-card p {
  margin-bottom: 0;
}
.food-card span {
  letter-spacing: normal !important;
  font-family: var(--nav-font);
  color: var(--accent-color);
  font-weight: bolder;
  font-size: 18px;
}
.food-card .bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  padding-bottom: 100%;
}

input, input::placeholder, select, textarea {
  font-size: 14px;
}
.selecteable-item {
  font-size: 12px;
}






.deco {
  background-image: url('../img/dec1.jpg');
  background-size: cover;
  background-position: top left;
  height: 100%;
  border-radius: .5rem;
}




@media only screen and (max-width: 768px) {
  #hero .swiper-slide .container h1 {
    font-size: 42px;
    line-height: 42px;
  }
  .logo-footer {
    height: 80px;
  }
  #preloader img {
    width: auto;
    height: 80px;
  }
  #hero .swiper-slide {
    height: 700px;
  }
  .border-end {
    border: none !important;
  }
  .slider-card .slider-card-body {
    padding: 20px 15px;
    height: auto;
  }
  .header .logo img {
    height: 60px;
  }
  #resto-bar blockquote {
    font-size: 18px;
  }
  .selecteable-item {
    font-size: 10px;
  }
  #mesas-place {
    overflow-x: scroll;
  }
}