/* STRUTTURA GENERALE */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

header {
    background: #1f6b3b;
    color: white;
    padding: 20px;
    text-align: center;
}

.header-full {
    background: #1f6b3b;
    padding: 10px 0;
}

.logo-full {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* MENU */
nav {
    background: #144d2a;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* CONTENUTO */
section {
    padding: 20px;
    max-width: 900px;
    margin: auto;
    background: white;
    margin-top: 20px;
    border-radius: 8px;
}

/* FORM */
label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* BOTTONI BASE */
.bottone, .btn {
    display: block;
    width: 90%;
    max-width: 400px;
    margin: 15px auto;
    padding: 14px 0;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background: #1f6b3b; /* colore base */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.bottone:hover, .btn:hover {
    background: #144d2a;
}

/* COLORI PERSONALIZZATI (QUELLI CHE AVEVI PRIMA) */
.btn-blue, .bottone.blue {
    background: #1a73e8; /* BLU */
}

.btn-purple, .bottone.purple {
    background: #6a0dad; /* VIOLA */
}

.btn-orange, .bottone.orange {
    background: #ff7f00; /* ARANCIONE */
}

.btn-green, .bottone.green {
    background: #4CAF50; /* VERDE CHIARO */
}

/* BOTTONI SPECIALI (TUOI) */
.bottone.biblioteca {
    background: #ff8800;
}

.bottone.procedure {
    background: #ff5500;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    color: #555;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {

    nav a {
        display: block;
        margin: 10px 0;
        font-size: 18px;
    }

    section {
        margin: 10px;
        padding: 15px;
    }

    .btn, .bottone {
        width: 100%;
        max-width: none;
        margin: 12px 0;
        font-size: 20px;
        padding: 16px;
    }

    .logo-full {
        max-height: 200px;
    }
}
