body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* 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;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left,
.footer-center,
.footer-right {
    margin: 0;
}

.footer-center {
    text-align: center;
    flex: 1;
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.footer-link:hover {
    opacity: 0.7;
}



.container {
    max-width: 500px;
    padding: 20px;
}

.chi-siamo-container {
    max-width: 800px;
    text-align: left;
    flex: 1;
}

.chi-siamo-container h1 {
    text-align: center;
}

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

.container img {
    width: 200px;          /* puoi cambiare la dimensione */
    margin: 10px;
    border-radius: 10px;
}

/* METTE LE FOTO IN ORIZZONTALE */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container .preview-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}


h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

p {
    opacity: 0.7;
    margin-bottom: 30px;
}

.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 ;
}

.preview-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: nowrap; /* ← impedisce che vadano a capo */
}

.preview-row img {
  height: 200px;         /* tutte alla stessa altezza */
  width: auto;           /* larghezza proporzionale */
  object-fit: cover;
  border-radius: 10px;
}