/*Body CSS code*/
body {
    overflow-x:hidden;
}


/*Navigation CSS code*/
.nav-item{
    margin-left: 50px;
    transition: all .5s; 

}

.nav-item:hover{
    transform: scale(1.1)
}


/*Footer CSS code*/
#footer{
    position: relative;
    
}

.img-footer {
    position: relative;
    height: 370px;
    overflow: hidden;
}

.img-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/construction_works.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(3px);
    transform: scale(1.1); /* evita bordes oscuros del blur */
    z-index: 1;
}

.text-footer {
    color: rgb(236, 236, 230);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* por encima del fondo */
}


#footer button{
    background-color: rgb(207, 10, 10);
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    height: 50px;
    width: 150px;
    border: none;
    border-radius: 10px;
    align-self: center;
    margin-top: auto;
    margin-bottom: 20px;
    transition: background-color 0.6s; 
}

#footer button:hover{
    background-color: rgb(154, 7, 7);
}



.quick-links-footer{
    background-color: rgb(40, 37, 37);
    width: 100%;
    height: 100%;
}

.link-section-title{
    color: white;
    font-size: 15px;
}

.links ul{
    color: whitesmoke;
    font-size: 10px;
}

.links a {
    color: white;
    text-decoration: none;
    
}
