body {
    text-align: justify;
}

h3 {
    font-size: 1.5rem;
}

/*------------------------------------------------------------------------------*/
/*                                   HEADER                                     */
/*------------------------------------------------------------------------------*/

/* Definizione sfondo Header */
.main-header{
    background-color: #787878;
    
}

/* Definizione font dell'Header */
.pkp_structure_head a{
    font-size: 18px;
    
}

/* definizione stile verde caratteristico della rivista Arte Marchigiana*/
.pkp_structure_head,   /* Verde per Header */
.pkp_site_nav_menu     /* Verde per Navigation Menù */
{
    background-color: #a0b092;
    text-align: center;  /* Eventuale allineamento del menù al centro */
    
}

/* Definizioni margine verdi superiore ed inferiore dell'header*/
.pkp_structure_head {
    /* border-top: 10px solid #DAEBD1; */
    border-bottom: 10px solid #DAEBD1;

}


/* PROVA DI CENTRATURA IMMAGINE HEADER E INGRANDIMENTO */
.pkp_site_name{
    display: flex;
    justify-content: center; /* Centra gli elementi sull'asse orizzontale */
    align-items: center;    /* Centra gli elementi sull'asse verticale */
    height: 200px; /* Assicurati che il contenitore abbia un'altezza */
}

.btn {
    background: #a6a6a6;
    color: #fff;
    border-radius: 5px;
    margin-top: 10px;
}

.navbar-logo img {
    max-height: 150px;
}

#userNav .nav-link, .language-toggle .dropdown-toggle {
    color: #fff;
    font-size: 18px;
    font-weight: 1;
}

#primaryNav .nav-link {
    color: #fff;
	font-size: 18px;
}

.dropdown-menu {
    background: #a1a1a1;
}

.pkp_navigation_primary_wrapper {
  padding-top: 20px;
}


/*------------------------------------------------------------------------------*/
/*                                   FOOTER                                     */
/*------------------------------------------------------------------------------*/

.pkp_structure_footer_wrapper {
    background-color: #b6c9a5;
    border-top: 12px solid #DAEBD1;
}

.pkp_brand_footer a {
  float: right;
  display: block;
  max-width: 100px;
}


/* ------------------------------------------------------------- */
/* -------         RESPONSIVITA' MIGLIORATA              ------- */
/* ------------------------------------------------------------- */

/* LOGO - DEFINIZIONE DIMENSIONE IMMAGINE */
@media (max-width: 992px) {
    .navbar-brand .img-fluid {
        width: 150px;
        max-height: 100%
    }  
}

@media (min-width: 992px) {
  .pkp_site_name .is_img img {
    max-height: 210px;
  }
}


.site-journal {
  gap: 15px; /* Spazio tra immagine e testo */
} 



/* immagine sopra il testo */
@media (max-width: 768px) {
  .site-journal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-journal-img img {
    max-width: 100%; /* ingrandisci l’immagine in versione mobile */
    margin-bottom: 10px;
  }

  .site-journal-body {
    text-align: justify;
  }
}

