@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root{
  --blue:#0800ff;
  --dark-bg:rgba(0,0,0,.7);
  --white:#fff;
  --light-white:#ccc;
  --black:#222;
}

*{
  font-family: 'Poppins', sans-serif;
  margin:0; 
  padding:0;
  box-sizing: border-box;
  outline: none; 
  border:none;
  text-decoration: none;
  transition: all .2s linear;
}

*::selection{
  background: var(--blue);
  color:#fff;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

section{
  padding:2rem 9%;
}

.heading{
  text-align: center;
  padding:2.5rem 0
}

.heading span{
  font-size: 3.5rem;
  background:rgba(0, 132, 255, 0.2);
  color:var(--blue);
  border-radius: .5rem;
  padding:.2rem 1rem;
}

.heading span.space{
  background:none;
}
.headin .menus h3 {
  text-align: center;
  color:var(--blue);
  padding:2.5rem 0
}

.btn{
  display: inline-block;
  margin-top: 1rem;
  background:var(--blue);
  color:#fff;
  padding:.8rem 3rem;
  border:.2rem solid var(--blue);
  cursor: pointer;
  font-size: 1.7rem;
}

.btn:hover{
  background:black;
  color:#fff;
}

header{
  position: fixed;
  top:0; left: 0; right:0;
  background:#333;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:2rem 9%;
  border-bottom: 1px solid var(--blue);
}

header .logo img{
  width: 100px;
  padding:5px;
  background-color: #fff;
  border-radius: 5px;
  border:1px solid var(--blue);
}
header .logo img:hover {
  box-shadow: 3px 3px #558abb;
}
header .navbar {
  display: flex;
}
header .navbar ul{
  display: flex;
}
header .navbar ul li{
  list-style: none;
}

header .navbar ul li a{
  color:#fff;
  font-size: 2rem;
  margin:0 .8rem;
}

header .navbar ul li a:hover{
  text-shadow: 2px 2px #558abb;
}

header .icons i{
  font-size: 2.5rem;
  color:#fff;
  cursor: pointer;
  margin-right: 2rem;
  
}

header .icons i:hover{
  color:var(--blue);
}

header .search-bar-container{
  position: absolute;
  top:100%; left: 0; right:0;
  padding:1.5rem 2rem;
  background:#333;
  border-top: .1rem solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  z-index: 1001;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

header .search-bar-container.active{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .search-bar-container #search-bar{
  width:100%;
  padding:1rem;
  text-transform: none;
  color:#333;
  font-size: 1.7rem;
  border-radius: .5rem;
}

header .search-bar-container label{
  color:#fff;
  cursor: pointer;
  font-size: 3rem;
  margin-left: 1.5rem;
}

header .search-bar-container label:hover{
  color:var(--blue);
}

.login-form-container{
  position: fixed;
  top:-120%; 
  left: 0;
  z-index: 10000;
  min-height: 100vh;
  width:100%;
  background:rgba(0,0,0,.7);
  display: flex;
  align-items: center;
  justify-content: center;
}


.login-form-container.active{
  top:0;
}

.login-form-container form{
  margin:2rem;
  padding:1.5rem 2rem;
  border-radius: .5rem;
  background:#fff;
  width:50rem;
}

.login-form-container form h3{
  font-size: 3rem;
  color:#444;
  text-transform: uppercase;
  text-align: center;
  padding:1rem 0;
}

.login-form-container form .box{
  width:100%;
  padding:1rem;
  font-size: 1.7rem;
  color:#333;
  margin:.6rem 0;
  border:.1rem solid rgba(0,0,0,.3);
  text-transform: none;
}

.login-form-container form .box:focus{
  border-color: var(--blue);
}

.login-form-container form #remember{
  margin:2rem 0;
}

.login-form-container form label{
  font-size: 1.5rem;
}

.login-form-container form .btn{
  display: block;
  width:100%;
}

.login-form-container form p{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.login-form-container form p a{
  color:var(--blue);
}

.login-form-container form p a:hover{
  color:#333;
  text-decoration: underline;
}

.login-form-container #form-close{
  position: absolute;
  top:2rem; right:3rem;
  font-size: 5rem;
  color:#fff;
  cursor: pointer;
}

#menu-bar{
  color:#fff;
  border:.1rem solid #fff;
  border-radius: .5rem;
  font-size: 3rem;
  padding:.5rem 1.2rem;
  cursor: pointer;
  display: none;
}
/* home */

@keyframes fadeIn {
  0%{
     transform: translateY(-4rem) scale(0);
     opacity: 0;
  }
}

.home{
  padding:0;
  background: var(--black);
}

.home .slide{
  min-height: 100vh;
   background-size: cover !important;
   background-position: center !important;
   position: relative;
   z-index: 0;
   display: flex;
   align-items: center;
   justify-content: center;
}

.home .slide::before{
  content: '';
  position: absolute;
  top:0; left:0;
  height: 100%;
  width: 100%;
  background: var(--dark-bg);
  z-index: -1;
}

.home .slide .content{
  text-align: center;
  width: 70rem;
  display: none;
}
.home .slide .content .imagen img {
  min-height: 100vh;
  
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  z-index: 0;
}
.home .slide .content span{
  font-size: 3rem;
  display: block;
  padding-bottom: .5rem;
  color:var(--light-white);
  animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) .2s backwards;
}

.home .slide .content h3{
  font-size: 8vw;
  text-transform: uppercase;
  color:var(--white);
  text-shadow: 0 .5rem 1rem rgba(0,0,0,.7);
  line-height: 1;
  padding:2rem 0;
  animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) .4s backwards;
}

.home .slide .content .btn{
  animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) .6s backwards;
}

.home .swiper-slide-active .content{
  display: inline-block;
}

.swiper-button-next,
.swiper-button-prev{
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  background: var(--white);
  color:var(--black);
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
  background: var(--blue);
  color:var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after{
  font-size: 2rem;
}



/* nosotros */
.nosotros .row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap:2rem;
}

.nosotros .row .image{
  flex:1 1 45rem;
}

.nosotros .row .image img{
  width: 100%;
}

.nosotros .row .content{
  flex:1 1 45rem;
}

.nosotros .row .content h3{
  color: var(--blue);
  text-shadow:  1px 1px #558abb;
  font-size: 4rem;
  line-height: 1.8;
}

.nosotros  .row .content p{
  color: var(--blue);
  padding:1rem 0;
  font-size: 1.5rem;
  line-height: 1.8;
}




/* menus */
section.menus {
  background-color: #ccc;
}
h3 {
  text-align: center;
  font-size: 2.5rem;
}

.menus .box-container{
  display: flex;
  flex-wrap: wrap;
  gap:1.5rem;
}

.menus  .box-container .box{
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border:1rem solid #222;
  border-radius: .5rem;
  flex:1 1 30rem;
  height: 25rem;
  position: relative;
}

.menus .box-container .box img{
  height: 100%;
  width:100%;
  object-fit: cover;
}

.menus .box-container .box .content{
  position: absolute;
  top:-100%; left:0;
  height: 100%;
  width:100%;
  text-align: center;
  background:rgba(0,0,0,.5);
  text-shadow: 1px 1px #558abb;
  padding:2rem;
  padding-top: 5rem;
}

.menus .box-container .box:hover .content{
  top:0;
}

.menus .box-container .box .content h3{
  font-size: 2.5rem;
  color:var(--blue);
}

.menus .box-container .box .content p{
  font-size: 1.5rem;
  color:#eee;
  padding:.5rem 0;
}

/* menu escoger */
  section.acerca-de {
    padding: 30px 0;
    background:#fff;
    margin-bottom: 60px;
}
.menu-diario, .encarrecs {
    margin-top:20px;
    width:90%;
    margin:auto;
    background: red;
    color:white;
    text-transform: uppercase;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    transform: skew(-0.06turn, -2deg);
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
.listado-menus{
    text-align: center;
}
.listado-menus h1 {
    font-size: 2.5rem;
    margin-top: 30px;
    margin-bottom: 40px;
}
.listado-menus h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.listado-menus h3 span {
    font-size: 2.5rem;
    color: red;
    background: rgba(255,255,255,.5);
    
}
.lista {
    margin-bottom: 40px;
    display:block;
    list-style: none;
}
.lista li {
  font-size: 1.5rem;
}

/*----------------------------------------
                VACACIONES
-----------------------------------------*/
.vacaciones{
  background: url(../../../images/vacaciones.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.vacaciones .content{
  max-width: 60rem;
}

.vacaciones .content .title{
  font-size: 4rem;
  
}

.vacaciones .content p{
  font-size: 3.7rem;
  padding:1rem 0;
  color:#333;
}






/*----------------------------------------
           DONDE ESTAMOS
-----------------------------------------*/
section.donde {
  position: relative;
  width:90%;
  margin-left: 50px;
  margin-top: 10px;
  margin-bottom: 20px;   
}  
iframe {
  width:100%;
  height: 450px;
  margin:0 auto;
  z-index: 1;
}
.titleText {
  font-size: 2rem;
  text-align: center;
}



/*----------------------------------------
            FOOTER
-----------------------------------------*/

footer {
  width: 100% ;
  padding-top:30px;
  display: flex;
  align-items:center;
  justify-content: center;
  background: black;  
}

footer ul {
  width: 100%;
  background:black;
  border-radius:10px;
  box-shadow: white 0px -2px ;
  
}
footer ul li {
  width:100%;
  font-size: 15px;
  text-align: center;
  list-style: none;
  bottom: 2px;
  color:#eaeaea;
  border-bottom: 1px solid #eaeaea;
  
}
footer ul li:nth-last-child(1){
  border-bottom:none;
  padding-bottom: 20px;
}




/*----------------------------------------
      REDES SOCIALES
-----------------------------------------*/
.redes {
  padding-top:10px;
  border-top:1px solid #eaeaea;
  background: black;
  padding-bottom: 1px;
  
  
}
.redes ul{
  
  display: flex;
  align-items:center;
  justify-content: center;
 
}
.redes ul li{
  list-style: none;
}
.redes ul li a{
  
  width:50px;
  height: 50px;
  display: block;
  text-align: center;
  margin: 0 10px;
  border-radius: 50%;
  padding:6px;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow:0 10px 15px rgba(255,255,255,0.3);
  background: linear-gradient(0deg, #fff, #ddd);
  transition:.5s;
}
.redes ul li a:hover{
  box-shadow:0 2px 5px rgba(0,0,0,0.3);
}
.redes ul li a span.fab {
  width:100%;
  height:100%;
  background: #eaeaea;
  border-radius: 50%;
  line-height: calc(45px - 6px);
  font-size:24px;
  color: #262626;
  transition:.5s;
}
.redes ul li:nth-child(1) a:hover span.fab{
  color:#00f
}
.redes ul li:nth-child(2) a:hover span.fab{
  color:#f033d7;
}
/*----------------------------------------------------------------
     enlace a mi blog
---------------------------------------------------------------*/
.footer-link {
  text-align: center;
  color: white;
  font-size: 20px;
}

.footer-link a {
  color: red;
  font-size: 20px;
  text-decoration: none;
}

.footer-link a:hover {
  text-decoration: underline;
}

/*----------------------------------------
      COPYRIGHT
-----------------------------------------*/
.copyrights {
  width:100%;
  display: flex;
  align-items:center;
  justify-content: center;
  background: black;
  color:#eaeaea;
  border-top:1px solid #eaeaea;
}

/*----------------------------------------
  ir arriba
------------------------------------------*/

#scroll-top{
  position: fixed;
  top:-120%;
  right:2rem;
  padding:.5rem 1.5rem;
  font-size: 4rem;
  background:var(--blue);
  color:#fff;
  border-radius: .5rem;
  transition: 1s linear;
  z-index: 1000;
}

#scroll-top.active{
  top:calc(100% - 12rem)
}














/* media queries  */

@media (max-width:1200px){

  html{
    font-size: 55%;
  }

}

@media (max-width:991px){

  header{
    padding:2rem;
  }

  section{
    padding:2rem;
  }

}

@media (max-width:768px){

  #menu-bar{
    display: initial;
  }

  header .navbar{
    position: absolute;
    width: 23rem;
    top:100%; 
    right:0;
    left: -100px;
    background: #333;
    border-top: .1rem solid rgba(255,255,255,.2);
    padding:1rem 1rem;
    border-radius: 0 15px 15px0 15px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  header .navbar.active{
    left:0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    
  }
  header .navbar ul {
    display: block;
  }
  header .navbar ul li{
    width:20rem;
    border-radius: 15px;

    
  }

  header .navbar ul li a{
    display: block;
    border-radius: .5rem;
    text-align: center;
    padding:1.5rem;
    margin:1.5rem 0;    
    background:#222;
  }
  header .navbar ul li a:hover{
    color: var(--blue);
    text-shadow: 2px 2px #558abb;
  }
  .donde {
    width:90%;
    margin-left: 45px;
    margin-bottom: 20px;   
  }  
  iframe {
    width:90%;
    height: 450px;
    z-index: 1;
  }
 h1.heading span{
    font-size: 4.5rem ;
  }
  header .icons i{
    font-size: 4.5rem;
    
  }

  .home .controls{
    width: 23rem;

  }
  
  .home .controls .vid-btn{
    height:4rem;
    width:4rem;
  }
  

}

@media (max-width:450px){

  html{
    font-size: 50%;
  }

  .heading span{
    font-size: 1rem;
  }

  .contact .row form .inputBox input{
    width:100%;
  }

}