/*
Theme Name:   NextAwards Child
Theme URI:    https://it.wordpress.org/themes/nextawards/
Description:  Child theme per NextAwards
Author:       Ivano Perini
Author URI:   https://www.iperini.com
Template:     nextawards
Version:      1.0.0
Text Domain:  nextawards
*/



body, 
.site, .site-content, .page-wrapper {
    background-color: #000000 !important;
	color: #E0E0E0 !important;
}


h1, h2, h3, h4, h5, h6, h7 {
    color: lightblue !important;   
    font-weight: 600;
	
}

h2 {
	margin-top:50px !important;
}

p{
	text-align: justify !important;  
	line-height: 1,6  !important;  
	font-size: 1.025rem !important; 
}


/* Menu principale */
.icon-hamburger span {
    background-color: var(--link-color) !important;	 
}

.menu li a {
	color: var(--link-color)  !important;	 
	background-color: transparent !important;
}

.menu li a:hover {
	color: var(--link-color-hover) !important;	 
	background-color: transparent !important;
}




/*
  Gestione del pulsante 'back_to_top'
*/
a[href="#back_to_top"] {
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease;
    background: #444;
    color: #fff;
    padding: 10px 15px;
    border-radius: 25px;
}

a[href="#back_to_top"].is-visible {
    opacity: 0.5 !important;
    visibility: visible !important;
}








/*
  Limito la larghezza del form dei contatti
*/
.formContatti {
    max-width: 800px; /* Imposta la larghezza massima desiderata per il contenuto */
    margin: 0 auto;   /* Centra il contenitore nella pagina */
    padding: 0 10px;  /* Aggiunge un po' di respiro sui lati in mobile */
}