/* Estilos generales */
body {
    margin: 0;
    font-family: 'Goodnight London Sans', sans-serif;
    line-height: 1.6;
    background-image: url("LogoIconos/Vino1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 10px;
    display: block;
}

.contenedor-imagen {
    position: relative;
    display: inline-block;
}

.header {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    max-width: 200px;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    margin-right: 20px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.menu a:hover {
    color: #FFC107;
}

.texto-superpuesto {
    position: absolute;
    top: 10%;
    left: 10%;
    padding: 5px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 12px;
}

.history, .history2 {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    color: #000000;
    font-weight: bold;
    background-image: url("LorentesPhotos/fondo.png");
    background-size: cover;
    text-align: center;
}

.botonMenu {
    text-align: center;
    margin: 10px 0;
}

.his {
    margin-left: 15px;
}

.texto {
    font-size: 14px;
    text-align: center;
}

.textoContact {
    text-align: center;
    color: #fff;
    font-weight: bold;
}

#inicio {
    background-image: url('imagen_inicio.jpg');
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

section {
    padding: 40px 0;
    color: #fff;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.fondo, .fondoHoras, .Contacthtml, .review {
    background-image: url("LorentesPhotos/fondo.png");
    background-size: cover;
    margin: 20px 0;
    border-radius: 5px;
    padding: 20px;
}

.pizarra, .pizarra2 {
    max-width: 100%;
    margin: 10px 0;
    padding: 10px;
    background-image: url("LogoIconos/pizarra2.jpg");
    background-size: cover;
    display: block;
}

.iconos {
    margin: 0 auto;
    text-align: center;
}

.photos {
    text-align: center;
    margin: 20px 0;
}

/* Estilos para dispositivos móviles */
@media only screen and (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 5px;
    }
    
    .header {
        padding: 5px 10px;
    }
    
    .logo img {
        max-width: 150px;
    }
    
    .menu {
        display: inline-block;
    }
    
    .menu ul {
        flex-direction: column;
    }
    
    .menu li {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .texto-superpuesto {
        top: 5%;
        left: 5%;
        font-size: 10px;
    }
    
    .history, .history2 {
        padding: 10px;
    }
    
    .botonMenu {
        margin: 5px 0;
    }
    
    .texto {
        font-size: 12px;
    }
    
    .textoContact {
        font-size: 14px;
    }
    
    #inicio {
        padding: 40px 0;
    }
    
    section {
        padding: 20px 0;
    }
    
    .fondo, .fondoHoras, .Contacthtml, .review {
        padding: 10px;
    }
    
    .pizarra, .pizarra2 {
        margin: 5px 0;
        padding: 5px;
    }
}

/* Estilos para tablets y dispositivos pequeños */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 85%;
        padding: 8px;
    }
    
    .logo img {
        max-width: 170px;
    }
    
    .menu li {
        margin-right: 15px;
    }
    
    .texto-superpuesto {
        top: 8%;
        left: 8%;
        font-size: 11px;
    }
    
    .history, .history2 {
        padding: 15px;
    }
    
    .botonMenu {
        margin: 8px 0;
    }
}

