/* Reset di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Imposta altezza completa e sfondo sul body */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Sfondo direttamente sul body */
.background {
    background-image: url('img/desktop_Villa-Sandra.png'); /* Percorso immagine desktop */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}

/* Stile del footer */
footer{
    background-color:#F0A732;
    display:flex;
    justify-content: flex-end;
}
footer a {
    color: white;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-decoration: none;
    padding: 15px;
}
footer a:hover{
    text-decoration: underline;
}
/* Media query per dispositivi mobili */
@media screen and (max-width: 768px) {
    .background {
        background-image: url('img/mobile_Villa-Sandra.png'); /* Percorso immagine mobile */
    }
}
