/*esto es el reset inicial*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/*aquí doy formato al modal de bienvenida*/

#modalBienvenida{
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.7);
	position: fixed;
	display: none;
	z-index: 5;
}

#modaleBoxB {
	width: 800px;
	height: 500px;
	background-color: lightgrey;
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 50px;
	text-align: center;
	border-radius: 25px;

}

#modaleBoxB>h1{
	font-size: 5rem;
	/*text-align: center;*/
	font-family: 'Niconne', cursive;
	font-weight: normal;
	margin-bottom: 100px;
}

#modaleBoxB> button {
	font-family: 'Niconne', cursive;
	font-size: 3rem;
	padding: 20px 40px;
	border-radius: 15px;
	background-color: black;
	color:white;
}

#modaleBoxB> button:hover {
	color:black;
	background-color: #FF5200;
}



/*aquí empieza la zona del hero image*/
#encabezado {

	height: 1000px;
	width: 100%;
	
	}

.fondosHero {
	height: 1000px;
	width: 100%;
	background-size: cover;
	position: absolute;

}

#fondoHero1 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),url(../Media/Hero01.jpg);
	z-index: 3;
}
#fondoHero2 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),url(../Media/Hero02.jpg);
	z-index: 2;
}
#fondoHero3 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),url(../Media/Hero03.jpg);
	z-index: 1;
}

body {
	overflow-x: hidden;
}

.mainSlide{
	animation-name:mainSlideAnim;
	animation-iteration-count: 1;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

.nextSlide{
	animation-name:nextSlideAnim;
	animation-iteration-count: 1;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

.hiddenSlide {
	display: none;
}


@keyframes mainSlideAnim{
	0%{margin-left: 0%;}
	100%{margin-left: -100%;}
}

@keyframes nextSlideAnim{
	0%{margin-left: 100%;}
	100%{margin-left: 0%;}
}



/*aquí empieza el menú.
Esto se explica en la conferencia UF1B del 10/03*/
nav {
	width: 100%;
	height: 150px;
	background-color: rgba(50,50,50,0.75);
	/*overflow: hidden;*/
	font-size: 2rem;
	position: fixed;
	top: 0;
	z-index: 5;
	transition-property: top, height, font-size;
	transition-duration: 0.75s;
}
#logo{
	width: auto;
	height: 100%;
	/*background-color: grey;*/
	float: left;
	display: block;
	margin-left: 100px;
	padding: 23px;
	transition-property: padding;
	transition-duration: 0.75s;


}



#menu {
	list-style-type: none;
	width: auto;
	overflow: hidden;
	float: right;
	margin-right: 75px;
	line-height: 150px;
	transition-property: line-height;
	transition-duration: 0.75s;
}

.elementoMenu{
	float: left;
	margin: 0px 25px;
	/*background-color: yellow;*/
}

.elementoMenu>a {
	font-family: 'Roboto', sans-serif;
	color: white;
	text-decoration: none;
	/*display: block;*/
	/*font-size: 2rem;*/
	transition-property: color;
	transition-duration: 0.5s;
}

.elementoMenu > a:hover {
	color: #FF5200;
}

/*aquí empieza el submenu*/

#submenu {
	width: auto;
	height: 150px;
	list-style: none;
	position: absolute;
	top: 100px;
	z-index: 1;
	display: none;
	background-color: rgba(50,50,50,0.9);

}

.elemSubmenu {

	width: 100%;
	height: 50px;
	line-height: 50px;
}

.elemSubmenu >a {
	text-decoration: none;
	color: white;
	font-size: 1.75rem;
	font-family: 'Roboto', sans-serif;
	transition-property: color;
	transition-duration: 0.5s;
}

.elemSubmenu >a:hover {
	color: #FF5200;
}

/*esta regla permite desplegar el submenu*/

.elementoMenu:hover #submenu {
	
	display: block;
}

#tituloEncabezado {

	font-size: 16.5rem;
	/*background-color: orange;*/
	text-align: center;
	position: relative;
	top: 215px;
	font-family: 'Niconne', cursive;
	color: white;
	text-shadow: 1px 9px 5px rgba(0,0,0,0.57);
	font-weight: normal;
	z-index: 4;
	animation-name: fadein; 
	animation-duration: 4s;

}

#subtituloEncabezado {

	font-size: 4.5rem;
	z-index: 4;
	text-align: center;
	position: relative;
	top: 160px;
	font-family: 'Niconne', cursive;
	color: white;
	text-shadow: 1px 9px 5px rgba(0,0,0,0.57);
	font-weight: normal;
	opacity: 0;
	animation-name: fadeinSub; 
	animation-duration: 4s;
	animation-delay: 0.5s;
	animation-fill-mode: forwards;
	}


@keyframes fadein {
	0% { opacity:0; top:300px;}
	50% {opacity: 1; top:300px;}
	100% {opacity: 1; top:215px;}
}

@keyframes fadeinSub {
	0% { opacity:0;}
	50% {opacity: 0;}
	100% {opacity: 1;}
}




/*aquí se acaba el header*/


#filosofia {

	width: 100%;
	height: 950px;
	background-color: #FEE2B3;
	overflow: hidden;
}

.tituloSeccion {

	font-family: 'Niconne', cursive;
	font-size: 5rem;
	font-weight: normal;
	/*background-color: olive;*/
	text-align: center;
	margin-top: 200px;

}

#contenedorFilo {

	width: 1200px;
	height: 500px;
	margin-left: auto;
	margin-right: auto;
	/*background-color: yellow;*/
	margin-top: 150px;
	overflow: hidden;
}

.colFilo{

	width: 50%;
	height: 500px;
	/*background-color: orange;*/
	/*border-style: solid;*/
	float: left;
}

#videoFilo {

	width: calc(100% - 75px);
	/*background-color: lightblue;*/
	height: 300px;
	margin-right: 75px;
}

.colFilo >p {
	font-family: 'Roboto', sans-serif;
	font-size: 1.25rem;
	padding-left: 75px;
	line-height: 1.75;

}

#carta {

	width: 100%;
	height: 1210px;
	/*background-color: black;*/
	overflow: hidden;
	background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),url(../Media/Fondo_Carta.jpg);
	background-size: cover;
}

.titulosBlanco{
	color:white;
}

#contenedorEtiquetaPestanas{

	width: 700px;
	/*background-color: tomato;*/
	margin-left: auto;
	margin-right: auto;
	overflow:hidden;
	margin-top: 50px;
}

.etiquetaPestanas{

	width: calc(33.33% - 70px);
	font-size: 2rem;
	color:white;
	float: left;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 2rem;
	transition-property: color;
	transition-duration: 0.5s;
	padding-bottom: 5px;
	margin-left: 35px;
	margin-right: 35px;
	cursor: pointer;

}

.pestanaActiva{
	color: #FF5200;
	/*text-decoration: underline;*/
	border-bottom-style: solid;
}
.contenedorPestana{

	margin-top: 40px;
	width: 1275px;
	height: 800px;
	/*background-color: lightgreen;*/
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.plato {

	width: calc(33.33% - 75px);
	height: calc(50% - 75px);
	/*background-color: brown;*/
	/*border-style: solid;*/
	float: left;
	margin-right: 37.5px;
	margin-left: 37.5px;
	margin-top: 37.5px;
	margin-bottom: 37.5px;

}

@keyframes animPlato {
	from { transform: scale(0.25,0.25); };
	to{transform: scale(1,1);};
}

.platoAnimado{
	animation-name: animPlato;
	animation-duration: 1s;
}

.imagenPlato{
	width: 100%;
	height: 250px;
	background-color: lightgrey;
	overflow: hidden;
	border-style: solid;
	border-color: #FEE2B3;
}

.imagenPlato img {
	width: 100%;
	height: 100%;
	transition-property: transform;
	transition-duration: 0.3s;
}

.imagenPlato img:hover {
	transform: scale(1.2,1.2);
}



.nombrePlato {

	text-align: center;
	color: white;
	margin-top: 12px;
	font-family: 'Roboto', sans-serif;
	font-size: 1.25rem;
}

.precio {
	text-align: center;
	color:#FF5200;
	margin-top: 12px;
	font-family: 'Roboto', sans-serif;
	font-size: 1.25rem;

}

#galeria {

	width: 100%;
	height: 950px;
	background-color: #FEE2B3;
	overflow: hidden;
}

#contenedorGaleria{
	width: 1210px;
	height: 525px;
	/*background-color: lightblue;*/
	margin-top: 95px;
	margin-left: auto;
	margin-right: auto;
}

.imgGal {
	width: calc(25% - 10px);
	height: calc(33.33% - 10px);
	background-color: grey;
	/*border-style: solid;*/
	float: left;
	margin: 5px;
	display: block;
	border-radius: 14px;
}

.imgGal:hover{
	box-shadow: 0px 0px 7px 4px #FF5200;
	cursor: pointer;
}

/*aquí doy formato al lightbox*/

#modalLightboxG{
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.7);
	position: fixed;
	display: none;
	top: 0;
	z-index: 5;
}

#imageToShow {
	width: 80vw;
	height: auto;
	/*background-color: lightgrey;*/
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	/*padding: 50px;*/
	text-align: center;

}

.imageLightbox{
	width: 100%;
	height: auto;
	border-radius: 50px;

}

.lbButtons{
	width: 150px;
	height: 150px;
	border-radius: 50%;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	background-color: black;
	border-style: solid;
	border-width: 5px;
	border-color: white;
}

.lbButtons:hover{
	border-color: #FF5200;
}

.lbbRight{
	right: 30px;
}

.lbbLeft{
	left: 30px;
}

.lbButtons i {
	font-size: 4rem;
	color: white;
}

.lbButtons:hover i{
	color: #FF5200;
}



#contacto{

	width: 100%;
	height: 950px;
	background-color: black;
	overflow: hidden;
	background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),url(../Media/fondo_Carta2.jpg);
	background-size: cover;
}

#contenedorContacto {
	width: 1200px;
	height: 600px;
	/*background-color: lightgreen;*/
	margin-right: auto;
	margin-left: auto;
	margin-top: 95px;
	overflow: hidden;

}

#map {
	float: left;
}


#textoReservas {
	font-family: 'Roboto', sans-serif;
	font-size: 1.5rem;
	color: white;
}


#formu {
	width: 50%;
	height: 525px;
	/*background-color: pink;*/
	float: left;
	padding-top: 25px;
	padding-left: 60px;
}

input {
	display: block;
	height: 40px;
	margin-top: 25px;
	padding-left: 10px;
	width: 525px;
	font-family: 'Roboto', sans-serif;
	font-size: 1.15rem;
}

#botonEnviar{

	width: 150px;
	border-style: none;
	background-color: #FF5200;
	padding: 5px;
	font-family: 'Roboto', sans-serif;
	font-size: 1.5rem;
	transition-property: color, border-style, border-color, background-color;
	transition-duration: 0.5s;

}

#botonEnviar:hover{

	border-style: solid;
	border-color: white;
	background-color: black;
	color: #FF5200;

}

/*aquí doy formato al modal de bienvenida*/

#modalReserva{
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.7);
	position: fixed;
	top: 0px;
	display: none;
	z-index: 5;
}

#modaleBoxR {
	width: 800px;
	height: 325px;
	background-color: lightgrey;
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 50px;
	text-align: center;
	border-radius: 25px;

}

#modaleBoxR>h1{
	font-size: 3rem;
	/*text-align: center;*/
	font-family: 'Niconne', cursive;
	font-weight: normal;
	margin-bottom: 20px;
}

#modaleBoxR>p{
	font-size: 1.15rem;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 40px;
	
}


#modaleBoxR> button {
	font-family: 'Niconne', cursive;
	font-size: 2.5rem;
	padding: 10px 15px;
	border-radius: 15px;
	background-color: black;
	color:white;
}

#modaleBoxR> button:hover {
	color:black;
	background-color: #FF5200;
}


/*aquí empieza el footer*/
#pie {

	width: 100%;
	height: 100px;
	background-color: rgba(15,15,15,1);
	text-align: center;		
}

#pie i {

			line-height: 100px;	
		color: white;
		font-size: 3rem;
		padding: 	0px 50px;
		transition-property: color;
		transition-duration: 0.5s;
}


#pie i:hover {

color: #FF5200;
			
}

