@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

* {
	box-sizing: border-box;
	margin: 0; padding: 0;
	padding-top: 1px;
}

body {
	font-family: 'Montserrat', sans-serif;
}

/*con esto las img quedan a un 100% de ancho
y el alto se calcula automaticamente*/
img {
	display: block;
	width: 100%;
	max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

/*el .CONTAINER lo abarca todo hasta el fin del FOOTER*/
.container {
	width: 100%;
	margin: auto;
}

.container--flex {
	display: flex; /*debe poner columnas juntas*/
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.column {
	width: 100%;
}

/*estilos del header*/

.main-header {
	width: 100%;
}

.logo {
	font-size: 1.8em;
	color: white;
	padding: 10px;
}

.logo-2 {
	font-size: 1.6em;
	color: #DE423A;
	padding: 1px 9px;	
	margin-bottom: 10px;
}

/*.logo-container {
	padding: 10px 20px;
}*/

.main-header__contactInfo__phone {
	background-color: #DE423A;
	color: white;
	margin: 0 auto;
	padding: 10px;
}

.main-header__contactInfo__address {
	padding: 10px;
	margin: 0;
}

.main-header [class*=icon-]:before {
	position: relative;
	top: 2px;
	right: 5px;
}

/*------------------estilos del menu------------------*/

.main-nav {
	width: 100%;
	position: relative;
	z-index: 2000;
	padding: 10px;
}

.icon-menu {
	display: block;
	color: white;
	border: 1px solid white;
	border-radius: 3px;
	width: 40px; height: 40px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	font-size: 1.5em; 
}

.menu {
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,.85);
	padding: 0; 
	margin: 0;
	list-style: none;
	text-align: center;
	height: 0;
	overflow: hidden;
	transition: height .4s linear;
}

.menu__link {
	display: block;
	padding: 15px;
	color: white;
	text-decoration: none;
}

.menu__link:hover {
	background-color: #DE423A;
}

.menu__link--select {
	background-color: #DE423A;
}

/*------------------estilos banner------------------*/

/*esta clase se enlazara con JS*/
.mostrar {
	height: 149px;196px;
}

.banner {
	margin-top: -58px;
	position: relative;
}

.banner:before {
	content: '';
	position: absolute;
	width: 100%; height: 100%;
	background-color: rgba(0,0,0,.4);
	z-index: 1000;
	top: 0;
}

.banner__img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.banner__content {
	width: 90%;
	color: white;
	text-align: center;
	position: absolute;
	z-index: 1500;
	top: 72%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	font-size: 1.5em;
	font-weight: bold;
}

.chef {
	/*background-color: red;*/
	/*text-align: center*/;
	position: absolute;
	z-index: 1500;
	color: white;
	margin-top: -1.5cm;
	margin-left:  .7cm;
	font-family: 'Pacifico', sans-serif;
	font-size: 1.6em;
	background-color: rgba(0,0,0,.3);
	padding: 0 10px 0 5px;
}

/*-----------------Estilos principales-----------------*/

.group--color .container {
	background-color: #DE423A;
	color: white;
	padding: 10px;
	text-align: center;
}

.main__title {
	margin: 15px 0;
	font-size: 1.9em;
	font-family: 'Pacifico', cursive;
	font-weight: 100;
}

.main__txt {
	padding: 5px;
	font-size: 1.3em;
}

.main__txt-2 {
	font-size: .9em;	
	margin-bottom: .2cm;
}

.column__title {
	font-size: 1.3em;
	text-align: center;
	margin: 10px;
	font-family: 'Montserrat', cursive;
}

 
/*trabajamos con la 2 columna*/
/*busca la 2 columna que este dentro del
.main__about__description*/
.main__about__description .column:nth-child(2) {
	padding: 10px;
}

.btn {
	/*si no tiene el display block, no se centra*/
	display: block;
	text-align: center;
	text-decoration: none;
	width: 120px;
	background-color: #DE423A;
	color: white;
	padding: 10px;
	margin: 25px auto; /*10px hacia arriba y auto lo centra*/
	border-radius: 2px;
	box-shadow: 0 8px 10px -3px rgba(0,0,0,.8);
}

.group__title {
	/*padding-left: 1cm;*/
	text-align: center;
	background: rgba(0,0,0,0.2);
	margin-bottom: .2cm;
	font-size: 1.7em;
}

.gallery__img {
	margin-left: 2px;
	margin-right: 2px;
}
/*-----------------Estilos FOOTER-----------------*/ 
.main-footer {
	background-color: #222;
	color: white;
	padding: 10px;
	padding-top: 10px;
	padding-bottom: 20px;
	font-size: .8em;
}

/*para alinear las 3 columnas*/
.main-footer .container--flex {
	align-items: flex-start;
	/*ya a partir de aca quedan alineados*/
}

.copy {
	text-align: center;
	margin: auto;
	margin-top: 15px;
}

.main-footer [class*="icon-"] {
	color: white;
	text-decoration: none;
}

.main-footer [class*="icon-"]:before {
	position: relative;
	top: 1px;
	right: 5px;
}

/*para galeria*/
.gallery__img {
	 margin-bottom: 10px;
	 cursor: pointer;
	 transition: all 0.5s;
	 border-radius: 5px;
	 object-fit: cover;
}

.gallery__img:hover {
	transform: scale(1.03);
}

.fideo {
	/*display: none;*/

}

/*parte de las 3 fotos de cheff*/

.cheff-fotos {
	text-align: center;
	margin-bottom: 15px;
	margin-top: 7px;
}

.team__img {
	margin: auto; 
	margin-bottom: 4px;
	width: 200px; height: 200px;
	object-fit: cover;
	padding: 3px;
	border-radius: 10px;
	border: 1px solid gray; 
	transition: all 0.4s;
}

.team__img:hover {
	transform: scale(1.02);
}

.sub {
	color: black;white;
	font-family: 'Pacifico', sans-serif;
	margin-bottom: 1px;
	font-size: 1em;
	background: white;
}

.sub2 {
	font-size: .9em;
	margin-bottom: 37px;
}

.column--25 {
	width: 24%;
}






/*-----------------Estilos RESPONSIVE-----------------*/
/*@media screen and (min-width: 200px) {*/
@media screen and (max-width: 400px){ 
	.column--25 {
	width: 49%;
	}

	.banner__img {
	width: 100%;
	height: 470px;
	object-fit: cover;
}



	.logo {
		text-align: center;
	}

	.logo-2 {
		display: none;
	}

	.banner__content {
		margin-top: 2.2cm;
	}

	.main-header__contactInfo__phone {
		background: none;
		float: right;
	}

	.main-header__contactInfo__address {
		color: white;
		float: right;
	}
	.modal {
		display: none;
	}

	.banner {
		margin-top: -240px; /*subimos el banner*/
		z-index: -1000;
	}

	.main__title {
		margin-bottom: 15px;
	}

	.cheff {
		width: 250px;
		height: auto;
		border: 1px solid black;
		margin-top: 10px;
		margin: auto;
		border-radius: 7px;
	}

	.gallery__img {
		width: 90%;
		height: auto;
		object-fit: cover;
		margin: auto;
		margin-bottom: 5px;
		border: 1px solid black;
	}

	/*.gallery__img--big {
		height: 340px;
	}

	.gallery__img--small {
		height: 250px;
	}*/

	.slider {
	width: 100%;
	margin: auto;
	/*ocultamos lo q esta fuera del width 100%*/
	overflow: hidden;
	}

	.slider ul {
		display: flex;
		padding: 0;
		width: 500%;
		animation: cambio 25s infinite alternate linear;
	}
 
	.slider li {
		width: 100%;
		list-style: none;
	}

	.slider img {
		width: 100%;
		height: 3cm;
		object-fit: cover;
	}

	@keyframes cambio {
	/*del o al 20% (4 s.) va a estar ahi la 1° imagen*/
	0% {margin-left: 0;}
	20% {margin-left: 0;}
	/*cambio de 1 img a otra dura 1s.*/
	25% {margin-left: -100%;}
	40% {margin-left: -100%;}
	/*-200% para que se vea la 2° img*/
	45% {margin-left: -200%;}
	60% {margin-left: -200%;}

	65% {margin-left: -300%;}
	80% {margin-left: -300%;}

	85% {margin-left: -400%;}
	100% {margin-left: -400%;}
}

}

/*==================================================*/

@media screen and (min-width: 480px) {
	.column--25 {
	width: 49%;
	}

	.logo, .logo-2 {
		color: white;
	}


	.banner__content {
		margin-top: 2cm;
	}

	/*hacemos q la info de contacto se ponga a la derecha*/
	.main-header__contactInfo {
		text-align: right;
	}

	.banner {
		margin-top: -240px; /*subimos el banner*/
		z-index: -1000;
	}

	/*las columnas tenian el 100%, ahora le decimos q ocupen la mitad*/

	.column--50 {
		width: 49%;
	}

	.column--50-25 {
		width: 49%;
	}

	.column__txt {
		margin-left: .4cm;
	}

	.main-header__contactInfo__phone {
		background: none;
	}

	.main-header__contactInfo__address {
		color: white;
	}

	.main-nav {
		background-color: rgba(0,0,0,0.50);
	}

	.cheff {

		margin-left: .4cm;
		border-radius: 7px;
		border: 1px solid black; 
		margin-top: 10px;
		margin-bottom: 15px;
	} 

	.gallery__img {
		height: 500px;
		object-fit: cover;
	}

	.gallery__img--big {
		height: 370px;
	}

	.gallery__img--small {
		height: 280px;
	}

	.modal {
		width: 100%;
		min-height: 100vh;
		background-color: rgba(0,0,0,0.9);
		position: fixed; /*estara siempre fijo*/
		top: 0; left: 0;
		z-index: 10000;
		display: none;
	}

	.modal__content {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100vh;
	}

	/*ancho de la foto del modal*/
	.modal__img {
		width: 70%;
		border-radius: 10px;
		border: 4px solid white; 
	}

	.modal__boton {
		position: absolute; /*px que pierda su posicion*/
		top: 15px;
		right: 15px;
		color: white;
		cursor: pointer;
		font-weight: bold;
		width: 50px; height: 50px;
		line-height: 50px;
		background-color: #DE423A;
		font-size: 1.6em;
		text-align: center;
		border-radius: 50%;
	}

	.modal--open {
		display: block;
	}

	.column--33 {
		width: 33%;
	}

	.mail {
		/*se lo vuelvo a agregar a partir de 768*/
		/*xq en este tamaño, se solapa con otra columna*/
		display: none;
	}

	.logo-2 {
		display: none;
	}

	.fotos {
		display: flex;
		width: 33.3%;
		margin-bottom: 10px;

	}

	.nombres {
		display: flex;
	}

    .slider {
	width: 100%;
	margin: auto;
	/*ocultamos lo q esta fuera del width 100%*/
	overflow: hidden;
	}

	.slider ul {
		display: flex;
		padding: 0;
		width: 500%;
		animation: cambio 25s infinite alternate linear;
	}

	.slider li {
		width: 100%;
		list-style: none;
	}

	.slider img {
		width: 100%;
		height: 5cm;
		object-fit: cover;
	}

	@keyframes cambio {
	/*del o al 20% (4 s.) va a estar ahi la 1° imagen*/
	0% {margin-left: 0;}
	20% {margin-left: 0;}
	/*cambio de 1 img a otra dura 1s.*/
	25% {margin-left: -100%;}
	40% {margin-left: -100%;}
	/*-200% para que se vea la 2° img*/
	45% {margin-left: -200%;}
	60% {margin-left: -200%;}

	65% {margin-left: -300%;}
	80% {margin-left: -300%;}

	85% {margin-left: -400%;}
	100% {margin-left: -400%;}
}

}

@media screen and (min-width: 768px) {
	.column--25 {
	width: 24%;
	}


	.logo-2 {
		display: block;
	}

	.mail {
		display: block;
	}

	.main__about__description {
		margin-top: 15px;
		margin-bottom: 15px;
	}

	.main__about__description .column--50:nth-child(2) {
		font-size: 1.2em;
	}

	.main__about__description .column--50:nth-child(2) .column__txt {
		line-height: 30px;
	}

	.column--50-25 {
		width: 24%;
	}

	.slider {
	width: 100%;
	margin: auto;
	/*ocultamos lo q esta fuera del width 100%*/
	overflow: hidden;
	}


	.slider ul {
		display: flex;
		padding: 0;
		width: 500%;
		animation: cambio 25s infinite alternate linear;
	}

	.slider li {
	width: 100%;
	list-style: none;
	}

	.slider img {
	width: 100%;
	height: 5cm;
	object-fit: cover;
	}

	 


	@keyframes cambio {
	/*del o al 20% (4 s.) va a estar ahi la 1° imagen*/
	0% {margin-left: 0;}
	20% {margin-left: 0;}
	/*cambio de 1 img a otra dura 1s.*/
	25% {margin-left: -100%;}
	40% {margin-left: -100%;}
	/*-200% para que se vea la 2° img*/
	45% {margin-left: -200%;}
	60% {margin-left: -200%;}

	65% {margin-left: -300%;}
	80% {margin-left: -300%;}

	85% {margin-left: -400%;}
	100% {margin-left: -400%;}
}


}

@media screen and (min-width: 1024px) {
	.column--25 {
	width: 24%;
	}

	.container {
		width: 1000px;
	}

	.group__title {
		width: 1000px;	
		margin: auto; /*con esto lo centramos*/
		margin-bottom: 10px;
	}

	.group--color {

	}

	.logo {
		font-size: 2em;
		padding: 0;
	}

	.logo-2 {
		padding-left: 1.3cm;
		 
	}

	.main-header__contactInfo__phone,
	.main-header__contactInfo__address {
		margin-right: 0;
		font-size: 1.15em;
	}

	.main-nav {
		padding: 0;
	}

	.banner__content {
		font-size: 2.2em;
		margin-top: .5cm;
	}

	.icon-menu {
		display: none;
	}

	.menu {
		display: flex;
		height: auto;
		margin-top: 3.9cm;
		padding-left: 2cm;
		padding-right: 2cm;
		justify-content: space-between;
		background-color: rgba(1,1,1,.4);
	}

	.group--color .container {
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.main__title {
		font-size: 2.4em;
	}

	.main__txt {
		font-size: 1.6em;
	}

	.main__about__description .column--50:nth-child(2) .column__txt {
		line-height: 50px;
	}

	.slider {
		width: 100%;
		margin: auto;
		margin-top: .4cm; 
		/*ocultamos lo q esta fuera del width 100%*/
		overflow: hidden;
	}

	.slider ul {
		display: flex;
		padding: 0;
		width: 500%;
		animation: cambio 25s infinite alternate linear;
	}

	.slider li {
	width: 100%;
	list-style: none;
	}

	.slider img {
	width: 100%;
	height: 5cm;
	object-fit: cover;
	}

	 

	@keyframes cambio {
	/*del o al 20% (4 s.) va a estar ahi la 1° imagen*/
	0% {margin-left: 0;}
	20% {margin-left: 0;}
	/*cambio de 1 img a otra dura 1s.*/
	25% {margin-left: -100%;}
	40% {margin-left: -100%;}
	/*-200% para que se vea la 2° img*/
	45% {margin-left: -200%;}
	60% {margin-left: -200%;}

	65% {margin-left: -300%;}
	80% {margin-left: -300%;}

	85% {margin-left: -400%;}
	100% {margin-left: -400%;}
}

}

@media screen and (min-width: 1600px) {
	.column--25 {
	width: 24%;
	}

	.container {
		width: 1400px;
	}
}








