/* css/G2ukPublic.css */

/* Hero (Homepage) */
.hero {
	background-color: #001f3f; /* blu scuro */
	color: white;
	height: 100vh;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
}

/* Titoli sezione */
h2 {
	font-weight: 600;
	margin-bottom: 1rem;
}

/* Sezioni a tutta altezza */
.section-fullscreen {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;   /* Allineamento verticale in alto */
	align-items: center;           /* Centrato orizzontalmente */
	padding: 60px 20px;
	text-align: center;
	position: relative;
}

/* Sezioni con immagine di sfondo */
.section-fullscreen.bg-image {
	background-size: cover;
	background-position: center;
	color: white;
}

/* Overlay semi-trasparente */
.section-fullscreen .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

/* Contenuto delle sezioni */
.section-fullscreen .container {
	position: relative;
	z-index: 1;
}

/* Ombra leggera su testi sopra immagini */
.section-fullscreen h2,
.section-fullscreen p {
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Logo grande nella Hero */
.section-logo-large {
	width: 400px;
	object-fit: contain;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
}

/* Logo piccolo nelle altre sezioni */
.section-logo-small {
	width: 100px;
	object-fit: contain;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
}

/* Logo piccolo nella Navbar */
.navbar-brand img {
	width: 18px;
	height: 18px;
	margin-right: 8px;
	object-fit: contain;
}

/* Navbar brand con logo + testo orizzontale */
.navbar-brand {
	display: flex;
	align-items: start; /* Nessuna centratura verticale */
}

/* Rimuovere ombre in Contact */
#contact h2,
#contact p,
#contact strong,
#contact a {
	text-shadow: none;
}

#contact * {
	text-shadow: none !important;
}
