/* PALETTE */:root {    --verde-oliva: #7c8b45;    --testo: #333;    --bianco: #fff;    --grigio-chiaro: #f7f7f7;}/* RESET */* {    margin: 0;    padding: 0;    box-sizing: border-box;}body {    font-family: "Helvetica Neue", sans-serif;    background: var(--grigio-chiaro);    color: var(--testo);}/* HEADER bianco*/.site-header {    position: fixed;    top: 0;    width: 100%;    padding: 20px 40px;    z-index: 999;    background: #f8f8f8; /* identico allo sfondo del logo */    box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* separazione elegante */    transition: background 0.3s ease, box-shadow 0.3s ease;}.header-container {    display: flex;    justify-content: space-between;    align-items: center;}/* LOGO */.logo img {    height: 70px;    width: auto;}/* MENU */.main-menu ul {    list-style: none;    display: flex;    gap: 25px;}/* MENU – testo scuro sempre */.main-menu a {    text-decoration: none;    font-size: 16px;    color: var(--testo); /* nero/grigio scuro */    font-weight: 500;    transition: color 0.3s ease;}/* Hover */.main-menu a:hover {    color: var(--verde-oliva);}/* Voce attiva */.main-menu .active {    color: var(--verde-oliva);    font-weight: 600;}.main-menu a:hover {    color: var(--verde-oliva);}.main-menu .active {    color: var(--verde-oliva);    font-weight: 600;}/* HERO / SLIDER */.hero {    margin-top: 120px;}.slider {    position: relative;    overflow: hidden;}.slide {    display: none;    position: relative;}.slide.active {    display: block;}.slide img {    width: 100%;    height: 80vh;    object-fit: cover;}.hero-text {    position: absolute;    bottom: 60px;    left: 60px;    color: var(--bianco);    text-shadow: 0 2px 10px rgba(0,0,0,0.4);}.hero-text h1 {    font-size: 48px;    font-family: "Playfair Display", serif;}.hero-text p {    font-size: 20px;    margin-top: 10px;}/* SEZIONE DIMORE */.dimore {    padding: 80px 40px;    text-align: center;}.dimore h2 {    font-size: 36px;    font-family: "Playfair Display", serif;    margin-bottom: 40px;}.cards {    display: flex;    justify-content: center;    gap: 40px;}.card {    background: var(--bianco);    padding: 20px;    border-radius: 10px;    width: 300px;    box-shadow: 0 4px 15px rgba(0,0,0,0.1);    transition: transform 0.3s ease;}.card:hover {    transform: translateY(-5px);}.card img {    width: 100%;    border-radius: 10px;}.card h3 {    margin-top: 15px;    font-size: 24px;    font-family: "Playfair Display", serif;}.card p {    margin-top: 10px;    font-size: 16px;}.card .btn {    display: inline-block;    margin-top: 15px;    padding: 10px 20px;    background: var(--verde-oliva);    color: var(--bianco);    text-decoration: none;    border-radius: 5px;    transition: background 0.3s ease;}.card .btn:hover {    background: #6f7c3d;}/* SEZIONE GIARDINO */.giardino {    padding: 80px 40px;    text-align: center;}.giardino h2 {    font-size: 36px;    font-family: "Playfair Display", serif;    margin-bottom: 20px;}.giardino p {    font-size: 18px;    margin-bottom: 30px;}.giardino-img {    width: 80%;    border-radius: 10px;    box-shadow: 0 4px 15px rgba(0,0,0,0.1);}/* FOOTER */footer {    background: var(--verde-oliva);    color: var(--bianco);    text-align: center;    padding: 20px;    margin-top: 60px;    font-size: 14px;}/* RESPONSIVE */@media (max-width: 768px) {    .header-container {        flex-direction: column;        gap: 20px;    }    .main-menu ul {        flex-direction: column;        gap: 10px;    }    .cards {        flex-direction: column;        align-items: center;    }    .hero-text h1 {        font-size: 32px;    }    .hero-text p {        font-size: 16px;    }    .giardino-img {        width: 100%;    }}