@import url('https://fonts.googleapis.com/css?family=Open+Sans|Courgette');

*{
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  color: #484848;
  font-family: 'Open Sans', sans-serif;
}

html,body{
  height: 100vh;
}

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

body{
  background-image: url(../img/background.jpg);
}

footer{
  background: #143e60;
  color: #fff;
  text-align: center;
  padding: 1em 0em;
  margin-top: 2.5em;
}

.wrapper{
  min-height: 100vh;
  position: relative;
}

.hero{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: block;
  height: 600px;
  position: relative;
}

.header{
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-top: 1em;
}

.hero-home {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hero-main.jpg");
}

.hero-menu {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hero-menu.jpg");
}

.header .nav ul {
  display: flex;
  list-style: none;
}

.header .nav li {
  opacity: 0;
  margin: -100px 1em 0em 1em;
}

.header .nav a{
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 1px 1px 2px #000;
}

.hero-text {
  color: #fff;
  position: absolute;
  text-align: center;
  top: 35%;
  left: 25%;
  width: 50%;
}

.title-hero{
  font-family: 'Courgette', cursive;
  font-size: 50px;
  line-height: 55px;
  line-height: 55px;
  opacity: 0;
  text-shadow: 1px 1px 2px #000;
  transform: scale(0,0);
}

.title-hero,
.paragraph-hero {
  text-shadow: 1px 1px 2px #000;
  width: 100%;
}

.paragraph-hero{
  font-size: 22px;
  opacity: 0;
  transform: scale(0,0);
}

/*
 * Detalles
 */
.box-about{
  background: #fff;
}

.aling-detail-content{
  align-items: center;
}
.platos{
  text-align: center;
  padding-top: .8em;
}
.recommended-dashed-line {
  text-align: center;
}
.recommended-dashed-line h2,
.recommended-dashed-line h3,
.recommended-dashed-line p {
  font-size: 14px;
  text-transform: 1px 1px 1px #000;
}

.recommended-dashed-line h2 {
  font-size: 20px;
  text-transform: 1px 1px 1px #000;
}

.recommended{
  background: #ff0000;
  background: -moz-linear-gradient(top, #ff0000 0%, #b20200 100%);
  background: -webkit-linear-gradient(top, #ff0000 0%,#b20200 100%);
  background: linear-gradient(to bottom, #ff0000 0%,#b20200 100%);
  border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#b20200',GradientType=0 );
  color: #fff;
  padding: 1em;
}

.recommended .recommended-dashed-line{
  align-items: center;
  border-style: dashed;
  border: 2px solid #fff;
  border-radius: 4px;
  padding: 1em;
  width: 100%;
}

.dishe img {
  -webkit-filter: grayscale(15%); /* Safari 6.0 - 9.0 */
  filter: grayscale(15%);
  transition: all .3s ease;
  display: initial;
}

.dishe:hover img {
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
  transform: scale(1.1,1.1);
  display: initial;
}

.bg-about{
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/bg-about.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.pg-content-about {
  /*padding-top: 1.5em;*/
}

.box-text-1,
.box-text-2 {
  background: #fff;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
  height: calc(100% - 100%);
  padding: 1em;
}

.box-text-1 p,
.box-text-2 p {
  margin: .7em 0em;
}

.box-text-1{
  margin-top: 5%;
  margin-left: -20%;
  width: 52%;
}

.box-text-2 {
  margin-top: 4%;
  margin-right: -20%;
  z-index: 2;
  width: 52%;
}

.relative-box {
  position: relative;
  margin: 1em 0em;
}

.more{
  background: #f79402;
  border-radius: 6px;
  border: 2px solid #dc8608;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  margin-top: 1em;
  padding: .7em 3em;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 1px #000;
  transition: all .5s ease;
}

.more:hover{
  background: #dc8608;
  border: 2px solid #f79402
}

.active{
  color: #ffffc0 !important;
  border-bottom: 2px solid  #ffffc0;
  text-shadow: 1px 1px 2px #000;
}

/*
 * Animaciones sitio web
 */
.entry-menu{
  margin-top: 0px !important;
  opacity: 1 !important;
  transition: all .5s ease;
}

.titleHero,
.paragraphHero {
  transform: scale(1,1) !important;
  transition: all .8s ease;
  opacity: 1 !important;
}

.paragraphHero{
  transition-delay: .4s;
}

@media screen and (max-width: 768px) {
  .hero{
    height: 400px;
  }
  .hero-text {
    left: 0;
    margin: 0 auto;
    position: relative;
    top: 0;
    width: 90%;
  }
  .title-hero{
    font-size: 36px;
  }
  .paragraph-hero {
    font-size: 18px;
  }
  .header{
    flex-direction: column;
  }
  .header.container .nav,
  .nav ul{
    text-align: center;
    width: 100%;
    margin-bottom: 1em
  }
  .header .nav li {
    text-align: center;
    flex-grow: 1;
  }
  .header .nav a {
    font-size: 22px;
  }
  .recommended-dashed-line p {
    display: none;
  }
}

/* 
 * ===== Estilos para fijar la información de la página - nosotros =====
 */
@media screen and (max-width: 1570px){
  .box-text-1,
  .box-text-2{
    margin-top: 2%;
  }
}

@media screen and (max-width: 1427px){
  .box-text-1,
  .box-text-2{
    margin-top: 1%;
  }
}

@media screen and (max-width: 1397px){
  .box-text-1,
  .box-text-2{
      margin-top: 6%;
    }
  .box-text-1 p,
  .box-text-2 p{
    display: none;
  }
  .box-text-1 p:nth-child(2),
  .box-text-2 p:nth-child(2){
    display: block;
  }
}

@media screen and (max-width: 1233px){
  .box-text-1,
  .box-text-2{
    margin-top: 3%;
  }
}

@media screen and (max-width: 1136px){
  .box-text-1,
  .box-text-2{
    margin-top: 2%;
    width: 50%;
  }
}

@media (min-width: 1024px) and (max-width: 1136px) {
  .recommended .lg-6 {
    width: 100% !important;
  }
  .recommended p {
    display: none;
  }
}

@media screen and (max-width: 1090px){
  .box-text-1,
  .box-text-2{
    margin-top: 1%;
    width: 51%;
  }
}

@media screen and (max-width: 1060px){
  .box-text-1,
  .box-text-2{
    margin-top: 0%;
    width: 53%;
  }
  .box-text-2{
    margin-right: -22%;
  }
  .box-text-1{
    margin-left: -22%;
  }
}

@media screen and (max-width: 1030px){
  .box-text-1,
  .box-text-2{
    margin-top: 0%;
    width: 54%;
  }
  .box-text-1{
    margin-left: -22%;
  }
  .box-text-2{
    margin-right: -23%;
  }
}

@media screen and (max-width: 1023px){
  .box-text-1,
  .box-text-2{
    margin-top: 5%;
    width: 54%;
  }
  .box-text-1{
    margin-left: -23%;
  }
  .box-text-2{
    margin-right: -23%;
  }
}

@media screen and (max-width: 909px){
  .box-text-1,
  .box-text-2{
    margin-top: 2%;
    width: 55%;
  }
  .box-text-1{
    margin-left: -23%;
  }
  .box-text-2{
    margin-right: -23%;
  }
}

@media screen and (max-width: 860px){
  .box-text-1,
  .box-text-2{
    margin-top: 1%;
    width: 54%;
  }
  .box-text-1{
    margin-left: -23%;
  }
  .box-text-2{
    margin-right: -23%;
  }
}

@media screen and (max-width: 876px){
  .box-text-1,
  .box-text-2{
    margin-top: 1%;
    width: 54%;
  }
  .box-text-1{
    margin-left: -23%;
  }
  .box-text-2{
    margin-right: -23%;
  }
}

@media screen and (max-width: 834px){
  .box-text-1,
  .box-text-2{
    margin-top: 0%;
    width: 56%;
  }
  .box-text-1{
    margin-left: -25%;
  }
  .box-text-2{
    margin-right: -25%;
  }
}

@media screen and (max-width: 768px){
  #logo {
    margin-bottom: 1em;
  }
  .box-text-1,
  .box-text-2{
    width: 100% !important;
  }
  .box-text-1{
    margin-left: 0%;
  }
  .box-text-2{
    margin-right: 0%;
  }
  .more{
    width: 300px;
    margin: 1.5em auto 0em auto;
  }
}

/* 
 * ===== FIN =====
 */