/* Reset margini e altezza */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #FFF;
    background-color: #000; /* fallback */
}

/* Sfondo full screen */
#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('images/barbara_badetti.jpg') no-repeat center center;
    background-size: cover;
}

/* Menu */
.menu_back {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
    background: transparent;
}

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

#menu li {
    display: inline;
    margin-right: 20px;
}

#menu a {
    text-decoration: none;
    color: #FFF;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s;
}

#menu a:hover {
    color: #FFD700;
}

/* Bio */
#biografia {
    position: absolute;
    top: 70px;
    width: 96%;
    margin: 0 2%;
    text-align: justify;
    line-height: 1.4em;
    z-index: 5;
}

#eng, #ita {
    width: 46%;
    float: left;
    padding: 0 2%;
}

/* Divider tra lingue */
hr.divider {
    border: 0;
    height: 1px;
    background: #FFF;
    margin: 40px 0;
    clear: both;
}

/* Contatti */
#contatti {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 1.6em;
    line-height: 1.5em;
}
#contatti a {
    color: #FFF;
    text-decoration: none;
}
