/* Estilos generales */
body {
  background-color: #FFFDE6;
  font-family: Arial, sans-serif;
  font-size: 1.3em;
  margin: 0;
  padding: 0;
}

h1{
  width: 45%;
  min-width: 230px;
  margin: 0 auto;
  background: white;
  color: DodgerBlue;
  text-align: center;
  padding: 20px 0;
  font-size: 1.9em;
  border-radius: 15px;
  text-align: center;
}

h2 {
 font-size: 1.7em;
 text-align: center;
 padding: 0 0 40px 0;
}


h4 {
  font-size: 1.2rem;
}

p {
  font-size: 1.2em;

}


a {
  text-decoration: none;
  color: DodgerBlue;
}

a :hover {
  color: orange;
}


img, video {
	max-width: 100%;
	border-radius: 10px;
}

.logito {
  border-radius: 50%;
}

.cabeza1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 19vh;
  padding: 0 20px 0 20px;
  background-color: green;
  color: #fff;
   flex-flow: wrap;
}


nav {
	padding: 10px 0 10px 0;
}

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

nav li {
  margin-right: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}



/* Estilos del encabezado */
.heroes {
  height: 100vh;
  background-image: url('../imagen/plato-de-comida-fondo.jpg');
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}


.lacasa {
  width: 85%;
  margin: 0 auto;

}

.visita {
  color: Gold;

}

.descripcion p {
  font-size: 1em;

}

.descripcion a {
  color: DodgerBlue;
  font-size: 1em;

}

.comidas {
  margin-top: 40px;
}



.secciono1 {
  background: #F4F6F7;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: center;
}


.titulo {
	background: #FF6C2C;
	height: 50px;
	padding-left: 40px;
	padding-top: 1px;
	padding-bottom: 20px;
	width:98.5%;
	border-radius: 30px;

}




.cajacomida {
  max-width: 450px;
  padding: 12px;
}

.cajacomida a {
	color: #0bb634;
	font-weight: bold;
	text-decoration: none;
}

.cajacomida a:hover {
	color: DeepPink;
}




/* Estilos de las secciones */
section {
  padding: 40px;
}

section h2 {
  color: #333;
  margin-bottom: 20px;
}


.container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-flow: wrap;
}


.item {
  min-width: 200px;
  max-width: 250px;
  flex: 1;
}

.item img {
  width: 100%;
  height: auto;

}

.container2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-flow: wrap;
}


.col {
  min-width: 200px;
  max-width: 250px;
  flex: 1;
  padding: 20px;
  background-color: #f2f2f2;
  border-radius: 5px;
  text-align: center;
}

.col h2 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.col p {
  font-size: 1em;
  line-height: 1.5;
}

.rutastodas {
  width: 100%;
  display: flex;
  flex-direction: column;

}

.rutaplato {
  width: 100%;
  display: flex;
  flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30PX;
    flex-flow: wrap;
}

/* Estilos de los platos populares */
.popular-dishes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
}

.popular-dishes img {
  max-width: 100%;
  height: auto;
}

/* Estilos del footer
footer {
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
}
 */