/* === Layout base === */
html,
body {
    background-color: #000000;
    color: #f8f9fa;
    text-shadow: 0 .05rem .1rem rgba(0,0,0,.5);
    box-shadow: inset 0 0 5rem rgba(0,0,0,.5);
    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
}

/* Sfondo trasparente per i contenitori principali */
main,
.container,
.container-fluid,
.content-home {
    background-color: transparent;
}

/* Link generici */
a {
    color: #f8f9fa;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #ffffff;
    text-decoration: underline;
}

/* Sfondo nero di utilità */
.bg-black {
    background-color: #000000 !important;
}

/* Colore logo "MAURO TELANI" */
.logocolor {
    color: #00679f !important;
}

/* === Sezioni home === */
.home-section {
    background: #111111;
    color: #f8f9fa;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.75rem 2rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
    .home-section {
        padding: 2.5rem 3rem;
    }
}

/* === Navbar con immagine === */
.navbar-main {
    position: relative;
    border-bottom: 3px solid #ff0000;
    background-image: url("/static/images/nav-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay scuro sopra l’immagine per migliorare la leggibilità */
.navbar-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* === Bottoni lingua === */

/* Base */
.lang-btn {
    border-width: 1px;
}

/* Stato base dentro la navbar principale */
.navbar-main .lang-btn {
    border-width: 1px;
    border-color: #ff0000 !important;
    color: #f8f9fa;
    background-color: transparent;
}

/* Hover: rosso pieno, testo bianco */
.navbar-main .lang-btn:hover {
    background-color: #ff0000;
    color: #ffffff;
    border-color: #ff0000 !important;
}

/* Attivo: sfondo bianco, bordo rosso, testo nero (lingua selezionata) */
.navbar-main .lang-btn.active {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: rgb(255, 0, 0) !important;
}

/* === Footer (se vuoi forzare centratura anche da CSS) === */
footer {
    text-align: center;
    width: 100%;
}
