/* ============== GOOGLE FONTS ================ */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@400;500;600&display=swap");
/* ============== COLORS ================ */
/* ============= FONTS ================ */
/* ============= REUSABLES ================ */
.container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

.container__title h2 {
  font-size: 3.125rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 3.6875rem;
  margin-block-end: 1.125rem;
}
.container__title p {
  font-size: 1.25rem;
  color: #777;
}

@media screen and (max-width: 580px) {
  .container__title h2 {
    font-size: 2rem;
  }
  .container__title p {
    font-size: 1rem;
  }

  .nosotros .container .container__col-right p {
    font-size: 1rem;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* Use the selection tool "Lobotomised owl". */
/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a {
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

img {
  vertical-align: top;
}

/* Stylise broken links to imagesStylise broken links to images */
img::before {
  content: "We're sorry, the image below is broken :(";
  display: block;
  margin-bottom: 10px;
}

img::after {
  content: "(url: " attr(src) ")";
  display: block;
  font-size: 12px;
}

/* Define font-size in form elements for better mobile experience */
input[type=text],
input[type=number],
select,
textarea {
  font-size: 1rem;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  padding: 0 2rem;
  min-height: 5.875rem;
  border-block-end: 1px solid #eaeaea;
}
.header .logo {
  max-width: 3.125rem;
}
.header .nav {
  display: none;
}
.header .nav__list {
  display: flex;
  gap: 1rem;
}
.header .nav__item {
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 1.25rem;
  padding-inline-end: 1rem;
  color: #303133;
}
.header .nav__item:not(:last-child) {
  border-inline-end: 1px solid #eaeaea;
}
.header .nav__item:hover {
  color: #b4975a;
}
.header .social {
  display: none;
  gap: 1rem;
  font-size: 1.25rem;
}
.header .social a {
  color: #303133;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  text-decoration: none;
}
.header .social a:hover {
  color: #b4975a;
}
.header .hamburger {
  display: block;
  cursor: pointer;
  font-size: 2.25rem;
}

.menu-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: fixed;
  top: 5.875rem;
  left: -100%;
  background: #fff;
  text-align: center;
  padding: 2rem;
  width: 100%;
  height: 100vh;
  font-size: 2rem;
  transition: 0.3s all ease;
  z-index: 50;
}
.menu-mobile .social a {
  color: #303133;
}
.menu-mobile .social a:hover {
  color: #b4975a;
}
.menu-mobile .nav__list {
  display: flex;
  flex-direction: column;
}
.menu-mobile .nav__list .nav__item {
  transition: 0.3s ease;
  cursor: pointer;
  padding: 0.5rem;
  color: #303133;
}
.menu-mobile .nav__list .nav__item:not(:last-child) {
  border-block-end: 1px solid #eaeaea;
}
.menu-mobile .nav__list .nav__item:hover {
  color: #b4975a;
}
.menu-mobile.active {
  left: 0;
}

@media screen and (min-width: 1024px) {
  .header .nav {
    display: flex;
  }
  .header .social {
    display: flex;
  }
  .header .hamburger {
    display: none;
  }
}
.main {
  margin-block-start: 5.875rem;
}

.home {
  display: flex;
  justify-content: space-between;
}
.home .col {
  width: 50%;
  background: #141618;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
}
.home .col__img-left, .home .col__img-right {
  width: 50%;
  background-size: cover;
  background-position: left;
}
.home .col__img-left {
  background-image: url("../assets/img/portada-1.jpg");
}
.home .col__img-right {
  background-image: url("../assets/img/portada-4.jpg");
  background-position: center;
  opacity: 0.8;
}
.home .col__text-left, .home .col__text-right {
  width: 50%;
  padding: 3rem;
}
.home .col__text-left h2, .home .col__text-right h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.6875rem;
  margin-block-end: 1.125rem;
}
.home .col__text-left p, .home .col__text-right p {
  font-size: 1rem;
  line-height: 1.75rem;
}
.home .col__full-img-left, .home .col__full-img-right {
  width: 100%;
  min-height: 15.25rem;
  background-size: cover;
  background-position: center;
}
.home .col__full-img-left {
  background-image: url("../assets/img/portada-2.jpg");
  opacity: 0.8;
}
.home .col__full-img-right {
  background-image: url("../assets/img/portada-3.jpg");
}
.home .overlay {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: relative;
  backdrop-filter: brightness(60%);
  cursor: pointer;
  transition: 0.3s ease;
}
.home .overlay:hover {
  opacity: 1;
}
.home .overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}

@media screen and (max-width: 1500px) {
  .main .home .col__text-left, .main .home .col__text-right {
    padding: 2.25rem;
  }
}
@media screen and (max-width: 1199px) {
  .home .col {
    width: 100%;
  }
  .home .col__img-left, .home .col__img-right {
    display: none;
  }
  .home .col__text-left, .home .col__text-right {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .home .col__full-img-right, .home .col__full-img-left {
    height: 17rem;
  }
}
@media screen and (max-width: 800px) {
  .home {
    flex-wrap: wrap;
  }
  .home .col__full-img-left {
    display: none;
  }
  .home .col__text-left h2, .home .col__text-right h2 {
    text-align: center;
  }
  .home .col__text-left p, .home .col__text-right p {
    text-align: justify;
  }
}
.nosotros {
  padding: 5.625rem 0;
}
.nosotros .container {
  display: flex;
  flex-wrap: wrap;
}
.nosotros .container__col-left {
  width: 30%;
  border-inline-end: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  padding-inline-end: 5%;
}
.nosotros .container__col-right {
  width: 70%;
  padding-inline-start: 5%;
}
.nosotros .container__col-right p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #777;
}

@media screen and (max-width: 980px) {
  .nosotros .container__col-left {
    width: 100%;
    border-inline-end: none;
    border-block-end: 1px solid #eaeaea;
    display: block;
    text-align: center;
    margin-block-end: 2.25rem;
    padding: 0;
  }
  .nosotros .container__col-right {
    width: 100%;
    padding: 0;
    text-align: justify;
  }
}
.chef {
  padding: 5.625rem 0;
  background: #141618;
}
.chef .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.chef .container__col-left, .chef .container__col-right {
  width: 50%;
}
.chef .container__col-left {
  overflow: hidden;
  box-shadow: 0px 9px 32px -1px rgba(0, 0, 0, 0.5);
}
.chef .container__title {
  padding: 3.125rem;
  padding-inline-end: 0;
}
.chef .container__title h2 {
  color: #fff;
}
.chef .container__title p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}
.chef .container__title p:not(:last-child) {
  padding-block-end: 1.125rem;
}

.slider {
  width: 300%;
  display: flex;
}
.slider .slide {
  width: 100%;
  min-height: 25rem;
  background-size: cover;
  background-position: center;
}
.slider .slide.img1 {
  background-image: url("../assets/img/chef-1.jpg");
}
.slider .slide.slide.img2 {
  background-image: url("../assets/img/chef-2.jpg");
}
.slider .slide.slide.img3 {
  background-image: url("../assets/img/chef-3.jpg");
}

@media screen and (max-width: 800px) {
  .chef .container__col-right, .chef .container__col-left {
    width: 100%;
  }
  .chef .container__title {
    padding: 0;
    text-align: center;
  }
  .chef .container__title h2 {
    margin-block-start: 1.125rem;
  }
}
.nuestro-menu {
  padding: 5.625rem 0;
}

.container__title h2 {
  text-align: center;
}
.container__menu {
  margin-block-start: 2.5rem;
}
.container__menu .menu__tabs {
  font-family: "Poppins", sans-serif, system-ui;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.container__menu .menu__tabs li {
  padding: 1rem;
  border-block-end: 2px solid transparent;
}
.container__menu .menu__tabs li a {
  color: #303133;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  text-decoration: none;
  padding: 1rem;
}
.container__menu .menu__tabs li a:hover {
  color: #b4975a;
}
.container__menu .menu__tabs li.active a {
  border-block-end: 2px solid #b4975a;
  color: #b4975a;
  padding: 1rem;
  transition: 0.1s ease;
}
.container__menu .menu__content {
  max-width: 50rem;
  margin: 0 auto;
  margin-block-start: 2.5rem;
  border: 6px double #eaeaea;
  padding: 0 2rem;
}
.container__menu .menu__content > div {
  display: none;
  transition: all 0.3s ease;
}
.container__menu .menu__content .active {
  display: block;
}
.container__menu .menu__content .content__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 2.25rem 0;
}
.container__menu .menu__content .content__item .col-left {
  width: 70%;
}
.container__menu .menu__content .content__item .col-left h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-block-end: 0.625rem;
}
.container__menu .menu__content .content__item .col-left p {
  font-size: 1rem;
  color: #777;
}
.container__menu .menu__content .content__item .col-right {
  width: 30%;
  text-align: center;
  font-size: 2.1875rem;
}
.container__menu .menu__content .content__item:not(:last-child) {
  border-block-end: 1px solid #eaeaea;
}

@media screen and (max-width: 787px) {
  .nuestro-menu .container__menu .menu__content {
    padding: 0 0.5rem;
  }
  .nuestro-menu .container__menu .menu__content .content__item {
    flex-wrap: wrap;
    padding: 1rem;
    gap: 1rem;
  }
  .nuestro-menu .container__menu .menu__content .content__item .col-left,
.nuestro-menu .container__menu .menu__content .content__item .col-right {
    width: 100%;
  }
}
.contact__datos {
  padding: 5.625rem 0 11.875rem 0;
  position: relative;
  background-image: url("../assets/img/contacto-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.contact__datos .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #14161831;
  top: 0;
  z-index: 1;
}
.contact .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact .container .blurb {
  background: #fff;
  border: 6px double #eaeaea;
  padding: 2.25rem;
  text-align: center;
  width: 25%;
}
.contact .container .blurb h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-block-end: 1.125rem;
  border-block-end: 1px solid #eaeaea;
}
.contact .container .blurb p {
  font-size: 1rem;
  color: #777;
}
.contact__form {
  position: relative;
  z-index: 3;
  background: #fff;
  max-width: 40.625rem;
  margin: 0 auto;
  padding: 2.25rem;
  margin-block-start: -6.25rem;
  width: 90%;
  text-align: center;
}
.contact__form .form .input-group {
  position: relative;
  margin-block-end: 2rem;
}
.contact__form .form .input-group input[type=text],
.contact__form .form .input-group input[type=email],
.contact__form .form .input-group textarea {
  font-size: 1rem;
  font-family: "Poppins", sans-serif, system-ui;
  color: #303133;
  width: 100%;
  outline: none;
  padding: 1rem 0;
  background: none;
  border: none;
  border-block-end: 2px solid #b4985a50;
  vertical-align: top;
}
.contact__form .form .input-group input[type=text]:focus,
.contact__form .form .input-group input[type=email]:focus,
.contact__form .form .input-group textarea:focus {
  border-block-end: 2px solid #b4975a;
}
.contact__form .form .input-group textarea {
  max-width: 100%;
  max-height: 10.25rem;
  min-height: 5.125rem;
  min-width: 100%;
}
.contact__form .form .input-group label {
  color: #777;
  font-family: "Poppins", sans-serif, system-ui;
}
.contact__form .form .input-group label.label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 1rem;
  line-height: 1rem;
  margin-inline-start: 1rem;
  transition: 0.3s ease;
}
.contact__form .form .input-group label.label.active {
  top: -0.75rem;
  margin-inline-start: 0;
  font-size: 0.75rem;
  color: #777;
}
.contact__form .form .input-group .error {
  position: absolute;
  color: #ff3b3b;
  font-family: "Poppins", sans-serif, system-ui;
  font-size: 0.875rem;
}
.contact__form .form input[type=submit] {
  font-family: "Poppins", sans-serif, system-ui;
  background: #b4975a;
  color: #fff;
  border-radius: 1px;
  border: 2px solid #fff;
  cursor: pointer;
  margin-block-start: 2rem;
  padding: 1rem;
  width: 50%;
  outline: none;
  transition: 0.3s ease;
}
.contact__form .form input[type=submit]:hover {
  background: #6b521b;
}

@media screen and (max-width: 980px) {
  .contact .container .blurb {
    width: 100%;
    max-width: 40.625rem;
    margin: 0 auto;
  }
  .contact .container .blurb:not(:last-child) {
    margin-block-end: 2.25rem;
  }
  .contact__form {
    width: 100%;
    padding: 1rem;
  }
  .contact__form .form input[type=submit] {
    width: 100%;
    text-align: center;
  }
}
.footer {
  margin-block-start: 2.25rem;
  background: #141618;
  padding: 5.625rem 0;
  text-align: center;
  color: #fff;
}
.footer .social-container {
  margin-block-start: 2.25rem;
}
.footer .social-container .social__link {
  color: #fff;
  font-size: 2rem;
}
.footer .social-container .social__link:not(:last-child) {
  padding: 0 1rem 0 0;
}
.footer .social-container .social__link:hover {
  color: #b4975a;
}
.footer .copyright {
  margin-block-start: 2.25rem;
}
.footer .copyright a {
  color: #b4975a;
  font-size: 1.25rem;
  vertical-align: middle;
  position: relative;
  bottom: 2px;
  left: 1px;
}
.footer .copyright a:hover {
  color: #f1e536;
}

body {
  font-size: 1rem;
  font-family: "Playfair Display", serif, system-ui;
  color: #303133;
}

.imagen-modal {
  width: 90%;
  max-width: 1000px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}
.imagen-modal + i {
  position: absolute;
  top: 2%;
  right: 1%;
  color: #303133;
  font-size: 2.25rem;
  background: #fff;
  display: inline-block;
  padding: 0.75rem;
  cursor: pointer;
}

/*# sourceMappingURL=styles.css.map */
