/* Stili custom per Scopri Le Moire (sovrascrivono il template learts). */

/* Logo centrato in alto */
.site-logo {
    display: inline-block;
}
.site-logo img {
    max-height: 110px;
    width: auto;
}

@media only screen and (max-width: 767px) {
    .site-logo img {
        max-height: 80px;
    }
}

/* Selettore lingua (nice-select del template learts) */
.language-switcher {
    display: inline-block;
    padding-top: 10px;
}
.language-switcher .nice-select {
    float: none;
    height: auto;
    line-height: 1;
    padding: 8px 30px 8px 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #333333;
}
.language-switcher .nice-select .list {
    min-width: 100%;
}

/* Page title sopra la foto di sfondo (Torre di Merana): testo chiaro e leggibile
   sia sulle zone scure (silhouette) sia su quelle chiare (cielo/nebbia). */
.page-title .title {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}
.page-title .breadcrumb .breadcrumb-item,
.page-title .breadcrumb .breadcrumb-item.active,
.page-title .breadcrumb .breadcrumb-item a {
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .6);
}
.page-title .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
}
.page-title .breadcrumb .breadcrumb-item a:hover {
    color: #f0c987;
}

/* Pulsante "Modifica" verso l'admin Django, visibile solo allo staff loggato. */
.activity-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    padding: 6px 16px;
    background-color: #72A499;
    color: #ffffff;
    border: 1px solid #72A499;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .3s, border-color .3s;
}
.activity-edit-btn::before {
    content: "\270E";
    font-size: 13px;
}
.activity-edit-btn:hover {
    background-color: #5c8b81;
    border-color: #5c8b81;
    color: #ffffff;
}
