/**********************************************************

BLUE JAY 1.0
First light

CSS - Default theme // Front end

www.catbird.it - 2019

ABIUS - 2025

**********************************************************/


/********************************************************************
HEADER
********************************************************************/


.bj-header {
    margin: 0px;
    background: var(--light);
}

.bj-header .container {
    display: flex;
    align-items: center;      /* verticale al centro */
    gap: 1rem;                /* spazio tra logo e testo */
    flex-wrap: wrap;          /* permette di andare a capo su schermi piccoli */
    padding: 1rem 0;          /* spazio sopra e sotto tutto il blocco */
}

/* Logo */

.bj-logo {
    height: 80px;     /* altezza base */
    width: auto;      /* mantiene proporzioni originali */
    margin: 0.5rem 0; /* spazio sopra e sotto */
    max-width: 100%;  /* non supera mai la larghezza del container */
    object-fit: contain; /* assicura proporzioni corrette */
}

/* Titolo */

.bj-title h1 {
    margin: 0;
}


.bj-header input[type="text"] {
    display: inline;
    }

.bj-header h1 {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 500;
    font-size: 2.375rem;
    line-height: 30px;
    color: var(--title);
    margin: 10px 0px 10px 0px;
    /*display: block;*/
    }

.bj-header h1 .bj-light {
    font-weight: 200;
    }


.bj-header h2 {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 24px;
    text-transform: none;
    color: var(--subtitle);
    margin: 0;
    display: inline-block;
    }

.bj-header h3 {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 18px;
    color: var(--subtitle);
    margin: 0px 0px 0px 10px;
    display: none;
    }
