.navbar-toggler {
    /* Size of inner lines (default 1.25rem) */
    font-size: 1rem !important;;

    /* Top/Bottom padding | Left/Right padding (Default is 0.25rem 0.75rem) */
    padding: 0.2rem 0.7rem !important;
}

#main-nav .nav-link.active {
  color: var(--nav-accent) !important;
  background: var(--nav-accent-soft);
}

#main-nav .nav-link-evidence.active {
  background-color: rgba(194, 75, 65, 0.85);
  color: var(--nav-accent-soft) !important;
  border-radius: 999px; /* Garantisce l'effetto arrotondato ai lati */
  padding-left: 1.25rem !important;  /* Aumenta lo spazio orizzontale della pillola */
  padding-right: 1.25rem !important;
}

#main-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* FOOTER*/

.site-footer {
    background: linear-gradient(
        180deg,
        #2e241d 0%,
        #241c16 100%
    );

    color: rgba(255,255,255,0.82);

    padding-top: 60px;
    padding-bottom: 28px;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #f1e4d6;
    margin-bottom: 14px;
}

.footer-brand p {
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
    max-width: 320px;
}

.footer-heading {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    color: #d6b899;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: #f3d4b3;
    text-decoration: none;
    padding-left: 4px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin-top: 40px;
    margin-bottom: 24px;
}

.footer-bottom p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
}