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

body, html {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
}

.bodystyle {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0b424c;
  z-index: -2;
}

.fondo {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
}

.inicio {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  min-height: 100vh;
}

.inicio h1 {
  font-size: 3em;
  color: #FFD700; 
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.menu {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.shadow-effect {
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #00BFFF; 
  color: #FFFFFF; 
  font-weight: bold;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.shadow-effect:hover {
  background-color: #009ACD; 
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}


.menu-lateral {
  position: fixed;
  top: 0;
  width: 200px;
  height: 100%;
  background-color: rgba(11, 66, 76, 0.9);
  padding: 20px;
  color: white;
  overflow-y: auto;
  text-align: center;
}


.menu-lateral-izquierda {
  left: 0;
}


.menu-lateral-derecha {
  right: 0;
}


.menu-lateral h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #FFD700;
}


.imagenes-turismo img,
.imagenes-recetas img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.imagenes-turismo img:hover,
.imagenes-recetas img:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}
