/* ✅ Estilos base (MÓVIL primero) */
html {
    height: 50vh;
    width: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    height: 100vh;
    width: 100%;
    background-image: url("../assets/images/logotipo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
     background-size: auto;
    margin: 0;
}

main {
    height: 40%;
    width: 100%;
}

.navbar {
    background-color: #222;
    color: white;
    padding: 15px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 20px;
    font-weight: bold;
}

/* Menú oculto en móvil */
.nav-menu {
    display: none;
    flex-direction: column;
    gap: 15px;

    position: absolute;
    top: 60px;
    right: 0;

    background-color: #333;
    width: 200px;
    padding: 15px;

    list-style: none;
}

.nav-menu li a:hover{
    padding: 8px;
    border-radius: 10px;
    background-color: rgb(126, 126, 126);
}

.nav-menu li a {
    text-decoration: none;
    color: white;
}

/* Hamburguesa visible en móvil */
.hamburger {
    font-size: 28px;
    cursor: pointer;
}

.Active{
    background-color: rgb(102, 102, 105);
    border-radius: 20px;
    padding: 5px;
}

/* Menú activo */
.nav-menu.active {
    display: flex;
    z-index: 1000;
}

.containertext {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 250px;
}

.containertext2 {
    width: 80%;
    background-color: rgba(247, 244, 244, 0.862);
    position: absolute;
    border-radius: 15px;
    padding: 15px;

}

footer{
    width: 100%;
    align-items: center;
    justify-content:center;
    margin-top: 250px;
    flex-direction: column;
    background-color: black;
    height: 20%;
}

.pie{
    width: 80%;
    margin-left: 40px;
    margin-top: 40px;
   display: inline-flex;
   flex-direction: row;
   align-items: center;
  justify-content: space-between;
   height: 20%;
}

.privaDatos{
background-color: rgba(247, 244, 244, 0.862) ;
width: 80%;
margin-left: 2.5em;
padding: 10px;
margin-top: 2em;
border-radius: 15px;
}

.cookie{
background-color: rgba(247, 244, 244, 0.862) ;
width: 80%;
margin-left: 2.5em;
padding: 10px;
margin-top: 2em;
border-radius: 15px;
}

.facebook{
    margin: 20px 40px;
    width: 50px;
    height: 50px;
}

.instagram{
    margin: 20px 40px;
    width: 50px;
    height: 50px;
}

.containerSer{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.fa-solid{
    margin: 0 15px;
}

.fa-solid{
    margin: 0 15px;
}

.containerCon{
    background-color: rgba(247, 244, 244, 0.862) ;
    border-radius: 20px;
    padding: 20px;   
}

.cajapa{
    width: 80%;
    margin: 40px 10px;
    background-color: rgba(247, 244, 244, 0.862) ;
    margin-left: 40px;
    padding: 2px 8px;
    border-radius: 25px;
    line-height: 35px;
}

.cajamvl{
     width: 80%;
    margin: 40px 10px;
    background-color: rgba(247, 244, 244, 0.862) ;
    margin-left: 40px;
    padding: 2px 8px;
    border-radius: 25px;
    line-height: 35px;
}

span{
    color: red;
}

.cantina{
    font-size: 30px;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.cantinapizza{
    background-color: rgba(247, 244, 244, 0.962) ;
    padding: 20px;
    border-radius: 20px;
    color: black;
    text-decoration: none;
}

/* ✅ Estilos para DESKTOP */
@media (min-width: 768px) {

    /* Ocultar hamburguesa */
    .hamburger {
        display: none;
    }

    /* Mostrar menú horizontal */
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        width: auto;
        padding: 0;
        gap: 20px;
    }

    .containertext2{
        text-align: center;
    }    
}