/**
    CSS PARA EL INDEX
*/

header{
    background-image: url('../img/header_habitaciones.jpg');
    
}

.flex-container{
    display: flex;
    justify-content: space-around;
}





/****************************************************************

    #habitaciones-precios

*/

#habitaciones-precios > p{
    text-align: center;
}

table{
    border: 1px solid green;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

tr{
    border: 1px solid green;
    
}
td, th{
    border: 1px solid green;
    padding: 10px;
    
}

th{
    background-color: green;
    color: white;
}

table .precio{
    text-align: right;

    width: 75px;
}

#glamping-precios > p{
    text-align: center;
}

.text-align-left{
    text-align: left;
}



/**********************************************************************************
    #habitaciones-introduccion

*/

@media only screen and (min-width: 1000px) {
    div.imagenes{
        
        display: flex;
        *flex-wrap: wrap;
    }
    
    div.imagenes figure{
        width: 50%;
    }

    div.text{
        padding: 10px;
    }
}

div.text{
    padding: 10px;
}


/****************************************************
    #habitaciones-informacion

*/

.bold{
    font-weight: bold;
}

div > ul{
    margin-left: 20px;
}

#habitaciones-informacion .informacion div{
    box-shadow: 1px 1px 4px grey;
        padding: 15px;
        margin: 10px auto;
}


@media only screen and (min-width: 800px){
    #habitaciones-informacion .informacion{
        display: flex;
        justify-content: space-around;
        *align-items: flex-start;
        flex-wrap: wrap;
    }

    #habitaciones-informacion .informacion div{
        width: 30%;
        
    }
}


#mas-info{
    text-align: center;
    margin-top: 30px;
}


#mas-info a{
    display: inline-block;
    width: 300px;
    padding: 15px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid green;
    background-color: green;
    color: white;
    margin: 10px auto;
}

#mas-info a:hover{
    color: black;
    background-color: white;
}