/* ==========================
   STYLE_CHIARO
   RESET E BASE
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================
   NAVBAR & HAMBURGER
   (solo stile, NO comportamento)
========================== */
.navbar {
    padding: 0.75rem 1rem;
}

/* Hamburger personalizzato */
.custom-toggler {
    position: relative;
    width: 40px;
    height: 35px;
    border: none;
    background: transparent;
    cursor: pointer;
    outline: none;
}

.custom-toggler:focus {
    box-shadow: none;
    outline: none;
}

.toggler-icon {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.toggler-icon:nth-child(1) { top: 0; }
.toggler-icon:nth-child(2) { top: 50%; transform: translateY(-50%); }
.toggler-icon:nth-child(3) { bottom: 0; }

.custom-toggler:not(.collapsed) .toggler-icon:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.custom-toggler:not(.collapsed) .toggler-icon:nth-child(2) {
    opacity: 0;
}

.custom-toggler:not(.collapsed) .toggler-icon:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
}

/* ==========================
   FOOTER
========================== */
footer.site-footer {
    background-color: #0c76a4;
    color: #fff;
    padding: 2rem 0;
}

footer.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

footer.site-footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

footer.site-footer .row > div {
    flex: 1 1 220px;
    max-width: 360px;
}

footer.site-footer h2.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

footer.site-footer p {
    margin: 0.3rem 0;
    font-size: 14px;
    color: #f0f0f0;
}

footer.site-footer a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer.site-footer a:hover {
    color: #ffe066;
}

.footer-col .footer-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

footer.site-footer .footer-copy {
    margin-top: 1.5rem;
    font-size: 13px;
    color: #cce0f0;
    text-align: center;
}

.footer-col a,
.footer-col .footer-icon {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffe066;
}

/* ==========================
   FOOTER RESPONSIVE (tablet)
========================== */
@media (max-width: 992px) {
    footer.site-footer .row > div {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ==========================
   TITOLO BLOG
========================== */
.blog-title {
    color: #0c76a4;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 1rem 0;
}

/* ==========================
   RESPONSIVE BASE
   (solo font-size)
========================== */
@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 0.9rem;
    }
}