/* =============================== BASE ================================ */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #f4f1ed;
    color: #2b2b2b;
    padding-top: 60px; /* spazio per fixed header */
}

/* =============================== HEADER ================================ */
.top-strip {
    width: 100%;
    background: #7c988b;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.menu {
    list-style: none;
    display: flex;
    gap: 32px;
    padding: 0;
    margin: 0;
}

.menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.95rem;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #e0e0e0;
}

/* =============================== HERO TESTO ================================ */
.hero-text {
    max-width: 800px;
    margin: 60px auto 20px;
    padding: 40px 24px 36px;
    text-align: center;
}

.hero-text h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #5f5f5f;
    margin: 0 auto;
    max-width: 500px;
}

/* =============================== SEZIONE PRINCIPALE ================================ */
.section-text {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 24px;
}

#copertina {
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* =============================== MAPPA ================================ */
#map {
    height: 400px;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* =============================== BUTTON ================================ */
button {
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background-color: #7c988b;
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

button:hover {
    background-color: #6b846f;
}

/* =============================== LISTE ================================ */
ul#frasi {
    list-style: none;
    padding-left: 0;
}

ul#frasi li {
    margin: 6px 0;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.3s;
}

ul#frasi li.evidenziato {
    background-color: #f7e08b;
}

/* =============================== NASCONDI ================================ */
.nascosto {
    display: none;
}

/* =============================== FOOTER ================================ */
.footer {
    border-top: 1px solid #e5e5e5;
    padding: 24px 32px;
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 60px;
}

/* =============================== RESPONSIVE ================================ */
@media (max-width: 900px) {
    #map {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
}
