/* =============================== 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;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #e0e0e0;
}

/* =============================== HERO ================================ */
.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 FAQ ================================ */
.section-text {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 24px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 16px;
    margin-bottom: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-domanda {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2b2b2b;
}

.faq-risposta {
    display: none;
    margin-top: 10px;
    line-height: 1.6;
    color: #555;
}

.faq-risposta.visibile {
    display: block;
}

/* =============================== LUOGHI ================================ */
#lista-luoghi {
    list-style: none;
    padding-left: 0;
}

.luogo {
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    margin: 4px 0;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: background 0.3s, transform 0.3s;
}

.luogo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.luogo.evidenziato {
    background-color: #ffe28a;
    font-weight: bold;
}

/* =============================== 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) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
}
