html{
    font-size: 16px;
    box-sizing: border-box;
    margin: 0;
}

body {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    align-items: center;
  margin: 0;
  min-height: 100vh;
  background-image: url("../assets/images/mariscos.jpeg");
  background-size: cover;      /* CLAVE */
  background-position: center; /* Centrada */
  background-repeat: repeat;
  background-attachment: fixed; /* Opcional */
}

.layout{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    margin-left: 5px;
    background-color: rgba(255, 255, 255, 0.7);

    padding: 20px;
    border-radius: 50px;
}

h1{
    font-size: 40px;
}

.telefono{
    font-size: 25px;
    margin-bottom: 20px;
}

.telefonoFijo{
    font-size: 25px;
    margin-bottom: 20px;
}

h2{
    text-decoration: none;
}

h3{
    font-size: 30px;
}

.map{
    display: flex;
    flex-direction: column;
    align-items: center;
}

img{
    width: 200px;
    height: 100px;
    border-radius: 20px;
}

.aviso-footer {
  text-align: center;
  margin: 20px 0;
}

#toggleAviso {
  background-color: #1e90ff;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.9rem;
}

#toggleAviso:hover {
  background-color: #0a2540;
}

.aviso-contenido {
  display: none; /* oculto por defecto */
  margin-top: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) and (orientation: landscape) {
 
    body{
        display: flex;
       min-width: 100vh;
  }

}

@media screen and (min-width: 1024px) {
 
}

