/* ------------------------------
   STILE PAGINA CHI SIAMO
--------------------------------*/

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    width: 100%;
    height: 60px;
    background: #eee6d3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 6px;
}

nav {
    margin-right: 20px;
}

.linkhome a {
    color: #b99e7f;
    text-decoration: none;
    font-weight: 600;
}

.linkhome a:hover {
    opacity: 0.7;
}

/* CONTENUTO */
.chi-siamo-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    flex: 1;
}

.chi-siamo-container h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.chi-siamo-container h2 {
    margin-top: 30px;
    font-size: 24px;
    color: #b99e7f;
}

.chi-siamo-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* BOTTONE */
.btn {
    display: inline-block;
    padding: 12px 20px;
    background: #b99e7f;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s;
}

.btn:hover {
    background: #a88765;
}

/* FOOTER */
footer {
    width: 100%;
    background: #eee6d3;
    padding: 20px 0;
    text-align: center;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 600px) {

    .chi-siamo-container {
        padding: 20px;
    }

    .chi-siamo-container h1 {
        font-size: 26px;
    }

    .chi-siamo-container h2 {
        font-size: 20px;
    }

    .chi-siamo-container p {
        font-size: 16px;
    }

    .logo-img {
        height: 50px;
    }

    nav ul li a {
        font-size: 16px;
    }
}
