/* Reset leggero */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f7f7f7;
    color: #222;
}

/* Layout generale */
body {
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo {
    height: 100px;
    width: auto;
}

.motto {
    font-size: 3.4rem;
    font-family:'Brush Script MT'!important;
    color: #2ecc71!important; /* verde rinascita */
    /*font-weight: 600;*/
}

/* Menu */
.menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

    .menu a {
        text-decoration: none;
        color: #444;
        font-size: 0.95rem;
        font-weight: 500;
        position: relative;
        padding-bottom: 0.15rem;
    }

        .menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #e74c3c, #2ecc71);
            transition: width 0.2s ease-out;
        }

        .menu a:hover::after {
            width: 100%;
        }

        .menu a:hover {
            color: #000;
        }

/* Contenuto principale */
.content {
    flex: 1;
    padding: 2rem 2rem 3rem;
    max-width: 960px;
    margin: 0 auto;
}

/* Sezioni tipiche */
section {
    margin-bottom: 2.5rem;
}

    section h1,
    section h2,
    section h3 {
        margin-bottom: 0.75rem;
        font-weight: 700;
        color: #333;
    }

    section p {
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }

/* Hero (se la usi nella Home) */
.hero {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
}

.hero-subtitle {
    font-size: 1rem;
    color: #555;
}

.hero-highlight {
    color: #e74c3c; /* rosso solidarietà */
    font-weight: 600;
}

/* Box testimonianze */
.testimonianze-preview {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
}

.testimonianza {
    border-left: 4px solid #2ecc71;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

    .testimonianza:last-child {
        margin-bottom: 0;
    }

.testimonianza-testo {
    font-style: italic;
    color: #444;
}

.testimonianza-meta {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: #777;
}

/* Pulsanti */
.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out, background 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #2ecc71);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    }

.btn-outline {
    background: transparent;
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

    .btn-outline:hover {
        background: #2ecc71;
        color: #ffffff;
    }

/* Form esperienze */
.form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.form-group {
    margin-bottom: 1rem;
}

    .form-group label {
        display: block;
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.55rem 0.7rem;
        border-radius: 6px;
        border: 1px solid #d0d0d0;
        font-size: 0.95rem;
        font-family: inherit;
        transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
        resize: vertical;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2ecc71;
            box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
        }

/* Footer */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    color: #777;
    text-align: center;
}

/* Piccoli dettagli */
.highlight-text {
    color: #e74c3c;
    font-weight: 600;
}

.subtle {
    color: #777;
    font-size: 0.9rem;
}
.hamburger {
    display: none;
    flex-direction: column revert;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

    .hamburger span {
        width: 28px;
        height: 3px;
        background-color: #333;
        border-radius: 3px;
        transition: 0.3s;
    }

/* Responsive */
@media (max-width: 768px) {

    .menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background: #ffffff;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        margin-top: 1rem;
    }

        .menu.show {
            display: flex;
        }

    .hamburger {
        display: flex;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Hero */
.hero-storia {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa, #e8ecf1);
    text-align: center;
}

    .hero-storia h1 {
        font-size: 3rem;
        font-weight: 600;
        color: #333;
    }

    .hero-storia .subtitle {
        font-size: 1.3rem;
        color: #666;
        margin-top: 10px;
    }

/* Sezioni */
.storia-section {
    padding: 60px 0;
    background: #ffffff;
}

    .storia-section.alt {
        background: #f7f9fb;
    }

    .storia-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #2c3e50;
    }

    .storia-section p {
        font-size: 1.15rem;
        line-height: 1.7;
        color: #444;
    }

    /* Finale */
    .storia-section.finale {
        padding: 80px 0;
        background: #eef2f5;
        text-align: center;
    }

        .storia-section.finale h2 {
            font-size: 2.2rem;
        }

        .storia-section.finale p {
            max-width: 700px;
            margin: 0 auto;
        }

