/* Stili per la pagina dello Statuto */

.statuto-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    line-height: 1.9;
}

.statuto-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary-color);
}

.statuto-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.statuto-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.statuto-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.statuto-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.statuto-section h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.statuto-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.statuto-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.statuto-section ul,
.statuto-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.statuto-section li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 1.5rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    text-decoration: none;
    color: var(--white);
}

@media print {
    .back-to-top,
    .site-header,
    .site-footer {
        display: none;
    }

    .statuto-page {
        max-width: 100%;
    }

    .statuto-section {
        page-break-inside: avoid;
    }
}

@media (max-width: 768px) {
    .statuto-page {
        padding: 1rem;
    }

    .statuto-header h1 {
        font-size: 2rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}
