/**
* template: RESTFOOD (réplica con slider + animaciones)
*
* TABLE OF CONTENTS
*   + Global
*   + Reveal animations
*   + Header
*   + Hero slider
*   + Special dishes carousel
*   + About Us
*   + Stats (counters)
*   + Offer
*   + Chefs
*   + Menu
*   + Gallery
*   + Booking table
*   + Contacts
*   + Lightbox
*   + Responsive
*/

/* -------------------------------------------------------
                     GLOBAL
-------------------------------------------------------- */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

:root {
  --accent: #ffcc33;
  --dark: #000;
  --gray: #b8b8b8;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Halant', serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 18px;
  background-color: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

button {
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn {
  display: inline-block;
  color: var(--dark);
  background-color: var(--accent);
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  padding: 10px 22px;
  border-radius: 3px;
  letter-spacing: 3px;
  font-size: 15px;
  transition: all 0.4s ease;
}

.btn:hover {
  background-color: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 204, 51, 0.25);
}

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

section, footer {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

#special-dishes,
#about-us,
#stats,
#offer,
#chefs,
#menu,
#gallery,
#booking-table {
  padding: 100px 0;
}

.title-center {
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 50px;
  padding: 0 10px;
}

.title-center h2,
.about-content h2,
#offer h2 {
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.title-center p {
  color: var(--gray);
}

/* subrayado animado del título (reemplaza bg-title.png) */
.title-center h2::after,
.about-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: transform 0.8s ease 0.3s;
}

.about-content h2::after {
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.reveal.visible h2::after,
.reveal.visible.fade-up h2::after {
  transform: translateX(-50%) scaleX(1);
}

.about-content.reveal.visible h2::after {
  transform: scaleX(1);
}

#scroll-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

#scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ====== Preloader ====== */
#preload {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preload.hidden {
  opacity: 0;
  visibility: hidden;
}

#preload img {
  display: block;
  width: 40px;
  height: auto;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* -------------------------------------------------------
                 REVEAL ANIMATIONS (scroll)
-------------------------------------------------------- */

.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.fade-up    { transform: translateY(60px); }
.reveal.fade-down  { transform: translateY(-60px); }
.reveal.fade-left  { transform: translateX(60px); }
.reveal.fade-right { transform: translateX(-60px); }
.reveal.zoom-in    { transform: scale(0.85); }

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -------------------------------------------------------
                     HEADER
-------------------------------------------------------- */

#header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: 1920px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

#header.bg-fixed-menu {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

#header .wrapper.flex-row {
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

#logo img {
  display: block;
}

.menu li {
  float: left;
  margin-left: 50px;
}

.menu li a {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.4s ease;
}

/* subrayado animado en los links del menú */
.menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.menu li a:hover,
.menu li a.active {
  color: var(--accent);
}

.menu li a:hover::after,
.menu li a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

#openmenu,
#closemenu {
  display: none;
  text-decoration: none;
  font-size: 30px;
  color: var(--white);
  transition: color 0.4s ease;
}

#openmenu:hover,
#closemenu:hover {
  color: var(--accent);
}

/* -------------------------------------------------------
                     HERO SLIDER
-------------------------------------------------------- */

.hero-slider {
  position: relative;
  min-height: 750px;
  height: 100vh;
  overflow: hidden;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 1.4s ease, visibility 1.2s;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.25) 100%);
}

.slide-content {
  position: relative;
  z-index: 3;
}

.slide-content > * {
  max-width: 560px;
}

.slide-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 25px;
}

.slide-content h1 {
  font-size: 80px;
  margin-bottom: 30px;
}

.slide-content p {
  margin-bottom: 30px;
}

/* entrada escalonada del contenido del slide activo */
.slide .slide-tag,
.slide h1,
.slide p,
.slide .btn {
  opacity: 0;
  transform: translateY(40px);
}

.slide.active .slide-tag,
.slide.active h1,
.slide.active p,
.slide.active .btn {
  animation: slideContentIn 0.9s ease forwards;
}

.slide.active .slide-tag { animation-delay: 0.4s; }
.slide.active h1         { animation-delay: 0.6s; }
.slide.active p          { animation-delay: 0.8s; }
.slide.active .btn       { animation-delay: 1s; }

@keyframes slideContentIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* flechas */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.slider-arrow:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* dots (indicadores animados) */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  padding: 0;
  position: relative;
  transition: all 0.4s ease;
}

.slider-dots .dot.active {
  border-color: var(--accent);
  background-color: var(--accent);
  transform: scale(1.3);
}

/* anillo de progreso en el dot activo */
.slider-dots .dot.active::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 204, 51, 0.5);
  animation: dotPulse 1.5s ease-out infinite;
}

@keyframes dotPulse {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* flecha scroll-down */
.scroll-down {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--white);
  font-size: 22px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -12px); }
  60% { transform: translate(-50%, -6px); }
}

/* -------------------------------------------------------
                 SPECIAL DISHES (carousel)
-------------------------------------------------------- */

.dishes-carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.45, 0, 0.25, 1);
}

.carousel-track .item {
  flex: 0 0 calc(25% - 15px);
  margin-right: 20px;
}

.carousel-track .item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.carousel-track .item:hover img {
  transform: translateY(-8px);
  filter: brightness(1.1);
}

.special-dishes-content {
  text-align: center;
}

.special-dishes-content h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.special-dishes-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.special-dishes-content .price {
  font-family: 'Poppins', sans-serif;
  color: var(--accent);
  font-size: 22px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-nav button {
  color: var(--white);
  font-size: 26px;
  transition: color 0.4s ease, transform 0.4s ease;
}

.carousel-nav button:hover {
  color: var(--accent);
  transform: scale(1.2);
}

/* -------------------------------------------------------
                     ABOUT US
-------------------------------------------------------- */

#about-us {
  background-image:
    radial-gradient(rgba(255, 204, 51, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

#about-us .wrapper.flex-row {
  justify-content: space-between;
}

.about-img {
  width: 40%;
  position: relative;
}

.about-img img {
  display: block;
  width: 100%;
  height: auto;
}

.about-img > a {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  color: var(--dark);
  background-color: var(--accent);
  text-decoration: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.about-img > a:hover {
  background-color: var(--white);
  color: var(--dark);
}

/* pulso animado del botón de play */
.pulse::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 204, 51, 0.6);
  animation: dotPulse 1.8s ease-out infinite;
}

.about-content {
  width: 60%;
  padding-left: 50px;
}

.about-content h2 {
  color: var(--white);
}

.about-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.advantage.flex-row {
  justify-content: space-between;
  margin-top: 50px;
}

.advantage.flex-row > div {
  text-align: center;
  width: 33%;
  padding: 10px;
}

.advantage.flex-row > div img {
  margin-bottom: 20px;
}

.advantage.flex-row > div p {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
}

/* -------------------------------------------------------
              STATS (contadores animados)
-------------------------------------------------------- */

#stats {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.82);
}

.stats-row {
  position: relative;
  z-index: 2;
  justify-content: space-between;
  text-align: center;
}

.stat {
  width: 25%;
  padding: 20px;
}

.stat i {
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
}

.stat .counter {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--white);
  line-height: 1.1;
}

.stat .counter::after {
  content: '+';
  color: var(--accent);
}

.stat p {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-top: 10px;
}

/* -------------------------------------------------------
                       OFFER
-------------------------------------------------------- */

#offer {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
}

#offer .wrapper {
  position: relative;
  z-index: 2;
}

#offer h2 {
  color: var(--white);
}

/* -------------------------------------------------------
                       CHEFS
-------------------------------------------------------- */

#chefs .wrapper.flex-row {
  justify-content: space-between;
}

.chefs-item {
  width: calc(25% - 20px);
  margin-bottom: 20px;
  overflow: hidden;
}

.chefs-item img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

.chefs-item:hover img {
  transform: scale(1.05);
}

.about-chefs {
  text-align: center;
}

.about-chefs h3 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-chefs > p {
  color: var(--gray);
  margin-bottom: 20px;
}

.chef-social {
  display: flex;
  justify-content: center;
}

.chef-social li {
  margin: 0 10px;
}

.chef-social li a {
  display: inline-block;
  text-decoration: none;
  color: var(--accent);
  transition: all 0.5s ease;
}

.chef-social li a:hover {
  color: var(--gray);
  transform: translateY(-4px);
}

/* -------------------------------------------------------
                        MENU
-------------------------------------------------------- */

#menu {
  background-image:
    radial-gradient(rgba(255, 204, 51, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.wrapp-menu {
  justify-content: center;
}

.list-menu li {
  float: left;
  margin: 10px;
}

.list-menu li a {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  color: var(--dark);
  background-color: var(--accent);
  padding: 8px 16px;
  border-radius: 3px;
  transition: all 0.5s ease;
}

.list-menu li a:hover,
.list-menu li a.active {
  background-color: var(--white);
  color: var(--dark);
  box-shadow: 0 6px 18px rgba(255, 204, 51, 0.3);
}

.wrapp-menu-item {
  margin-top: 50px;
}

.menu-item.flex-row {
  justify-content: flex-start;
}

.single-menu-item {
  width: calc(25% - 20px);
  margin-right: 20px;
  margin-bottom: 40px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.single-menu-item.hide {
  display: none;
}

.single-menu-item.filtered-in {
  animation: filterIn 0.6s ease both;
}

@keyframes filterIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.single-menu-item a {
  display: block;
  margin-bottom: 30px;
  overflow: hidden;
}

.single-menu-item a img {
  display: block;
  width: 100%;
  transition: all 0.5s ease;
}

.single-menu-item a:hover img {
  filter: brightness(0.5);
  transform: scale(1.08);
}

.single-menu-item-content {
  text-align: center;
}

.single-menu-item-content h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.single-menu-item-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.single-menu-item-content .price {
  font-family: 'Poppins', sans-serif;
  color: var(--accent);
  font-size: 22px;
}

/* -------------------------------------------------------
                       GALLERY
-------------------------------------------------------- */

.gallery-item {
  margin-top: 50px;
  justify-content: flex-start;
}

.gallery-item a {
  display: block;
  width: 33.333333%;
  overflow: hidden;
}

.gallery-item a img {
  width: 100%;
  display: block;
  transition: all 0.5s ease;
}

.gallery-item a:hover img {
  filter: brightness(0.5);
  transform: scale(1.08);
}

/* -------------------------------------------------------
                    BOOKING TABLE
-------------------------------------------------------- */

#booking-table {
  background-image:
    radial-gradient(rgba(255, 204, 51, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.wrapp-booking-form {
  justify-content: space-between;
  align-items: center;
}

.booking-form {
  width: 60%;
  padding-right: 50px;
}

.working-hours {
  width: 40%;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 204, 51, 0.15);
  border-radius: 5px;
}

.working-hours h3 {
  color: var(--white);
  font-size: 30px;
  margin-bottom: 20px;
}

.working-hours p {
  color: var(--gray);
}

.wrapp-input-group {
  justify-content: space-between;
}

.wrapp-input-group > div {
  width: 48%;
  margin-bottom: 20px;
}

.wrapp-input-group > div label {
  font-family: 'Poppins', sans-serif;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 10px;
  margin-bottom: 10px;
  display: block;
}

.wrapp-input-group > div input {
  display: block;
  width: 100%;
  outline: none;
  padding: 8px 16px;
  height: 60px;
  background-color: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.wrapp-input-group > div input::placeholder {
  color: var(--gray);
}

.wrapp-input-group > div input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(255, 204, 51, 0.2);
}

.result {
  display: none;
  margin-top: 20px;
}

.result.show {
  display: block;
  color: var(--accent);
}

.flex-row.table-hours {
  justify-content: space-between;
  margin: 40px 0;
  border-bottom: 1px solid rgba(184, 184, 184, 0.3);
}

.flex-row.table-hours p {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
}

/* -------------------------------------------------------
                      CONTACTS
-------------------------------------------------------- */

#contacts {
  padding-top: 100px;
}

.wrapp-contacts {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.wrapp-contacts > div {
  width: 25%;
  padding: 30px;
}

.wrapp-contacts > div h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
}

.wrapp-contacts > div h3 i {
  color: var(--accent);
  margin-right: 20px;
}

.wrapp-contacts > div p {
  color: var(--white);
}

.footer-social {
  display: flex;
  justify-content: space-between;
}

.footer-social li a {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  color: var(--accent);
  transition: all 0.5s ease;
}

.footer-social li a:hover {
  color: var(--gray);
  transform: translateY(-4px);
}

.phone {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 3px;
  font-family: 'Poppins', sans-serif;
  color: var(--accent);
  transition: color 0.5s ease;
}

.phone:hover {
  color: var(--gray);
}

.wrapp-map iframe {
  width: 100%;
  height: 350px;
  display: block;
  filter: grayscale(1) invert(0.9);
}

.copyright {
  padding: 30px 10px;
  text-align: center;
  font-size: 12px;
  color: var(--gray);
}

.copyright a {
  color: var(--gray);
}

/* -------------------------------------------------------
                      LIGHTBOX
-------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 85%;
  max-height: 85vh;
  display: block;
  border-radius: 4px;
  transform: scale(0.9);
  transition: transform 0.35s ease;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox button {
  position: absolute;
  color: var(--white);
  font-size: 30px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.lightbox button:hover {
  color: var(--accent);
  transform: scale(1.15);
}

.lb-close {
  top: 25px;
  right: 35px;
}

.lb-prev { left: 35px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 35px; top: 50%; transform: translateY(-50%); }

/* -------------------------------------------------------
                     RESPONSIVE
-------------------------------------------------------- */

@media (max-width: 1100px) {
  .carousel-track .item {
    flex: 0 0 calc(33.333% - 14px);
  }
}

@media (max-width: 992px) {
  .slide-content h1 {
    font-size: 56px;
  }

  .chefs-item,
  .single-menu-item {
    width: calc(50% - 20px);
  }

  .stat {
    width: 50%;
    margin-bottom: 30px;
  }

  .about-img,
  .about-content {
    width: 100%;
  }

  .about-content {
    padding-left: 0;
    margin-top: 50px;
  }

  .booking-form,
  .working-hours {
    width: 100%;
  }

  .booking-form {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .wrapp-contacts > div {
    width: 50%;
  }

  .carousel-track .item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  #openmenu {
    display: inline-block;
  }

  #nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.97);
    z-index: 200;
    padding: 80px 30px;
    transition: right 0.45s ease;
  }

  #nav.open {
    right: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  }

  #closemenu {
    display: inline-block;
    position: absolute;
    top: 25px;
    right: 25px;
  }

  .menu li {
    float: none;
    margin: 0 0 25px;
  }

  .slide-content h1 {
    font-size: 42px;
  }

  .slide-tag {
    font-size: 11px;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }

  .title-center h2,
  .about-content h2,
  #offer h2 {
    font-size: 30px;
  }

  .gallery-item a {
    width: 50%;
  }

  .wrapp-input-group > div {
    width: 100%;
  }

  #scroll-top {
    bottom: 25px;
    right: 25px;
  }
}

@media (max-width: 576px) {
  .chefs-item,
  .single-menu-item {
    width: 100%;
    margin-right: 0;
  }

  .stat {
    width: 100%;
  }

  .gallery-item a {
    width: 100%;
  }

  .wrapp-contacts > div {
    width: 100%;
  }

  .carousel-track .item {
    flex: 0 0 100%;
    margin-right: 0;
  }

  .slide-content h1 {
    font-size: 34px;
  }
}
