/**
    CSS PARA EL INDEX
*/

header{
    
    background-image: url('../img/header_restaurante.jpeg');
    
}

.bold{
    font-weight: bold;
}


/***************************************************************************
    #restaurante-introduccion

*/

.text{
    padding: 15px;
    font-size: 1.5em;
}


@media only screen and (min-width: 1000px) {
    #restaurante-introduccion .flex-container{
        align-items: center;
    }
}


/***************************************************************************
    #restaurante-informacion

*/

@media only screen and (min-width: 1000px) {

    #restaurante-informacion .flex-container{
        flex-wrap: wrap;
        justify-content: center;
    }

    #restaurante-informacion .imagenes figure{
        width: 48%;
        
    }
}


/***************************************************************************
    #restaurante-horarios

*/

#restaurante-horarios .flex-container > div{
    box-shadow: 1px 1px 4px black;
    padding: 10px;

    margin: 10px auto;
}

.telefonos-reservas{
    
}

.telefonos-reservas > span{
    display: block;
    text-align: center;
    font-size: 1.2em;
    padding: 10px;

}

.telefonos-reservas > span a{
    text-decoration: none;
    color: black;
}

@media only screen and (min-width: 1000px) {

    #restaurante-horarios .flex-container{
        flex-wrap: wrap;
        justify-content: center;
    }

    #restaurante-horarios .flex-container > div{
        width: 45%;
        margin: 10px;
    }

    
}


/***************************************************************************
    #restaurante-carta-menu

*/
#restaurante-carta-menu .button-container{
    text-align: center;
}

#restaurante-carta-menu a{
    display: inline-block;
    
    padding: 10px;
    border: 1px solid green;
    text-decoration: none;
    
    font-weight: bold;
    color: green;
}

#restaurante-carta-menu a:hover{
    background-color: green;
    color: white;
}