/* Impostazioni base */

@font-face {
    font-family: Inter;
    src: url(../assets/fonts/Inter.ttf);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter;
    margin: 0;
    padding-top: 80px;
    text-align: center;
    background-color: #8D8070;
}



.page-title {
    margin-top: 40px;
    /* Distanza dal bordo superiore */
    font-size: 2.5em;
    /* Dimensione del titolo */
    color: #ffffff;
    /* Colore del titolo */
    text-transform: uppercase;
    /* Opzionale, per il maiuscolo */
    font-family: Inter;
    font-weight: 300;
    scroll-margin-top: 170px;
}

.section-title {
    font-size: 1.5em;
    font-weight: 400;
    margin: 60px 0 20px 0;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-family: Inter;
    font-weight: lighter;
    letter-spacing: 1px;
    scroll-margin-top: 170px;
}

.section-title a {
    color: #ffffff;
}

/* Colore specifico quando la sezione è attiva 
.bg-industrial {
    background-color: #808080;
}

.bg-garden {
    background-color: #3a7641; 
}
    */


.title {
    text-align: center;
    font-size: 1.1em;
    margin-top: 10px;
    color: #333;
}


.bio-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    align-items: start;
    color: white;
}

.bio-photo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 1);
}

.bio-text {
    /*
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 40px;
    */
    font-size: 1.2em;
    line-height: 1.7;
    text-align: justify;
    font-weight: 300;
}

.bio-text p {
    margin-top: 0;
}

@media screen and (orientation: landscape) {
    .bio-text {
        border-left: 1px solid rgba(0, 0, 0, 0.2);
        padding-left: 1rem;
    }
}

/* Media query per schermi piccoli (mobile) */
@media (max-width: 768px) {

    body {
        padding-top: 150px;
    }

    .bio-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bio-text {
        text-align: left;
        font-size: 1.1em;
    }

    .bio-photo img {
        margin: 0 auto;
    }
}