/**
 * HERO MAPCONTROL - Sfondo scuro con particelle rosse
 * Override degli stili della hero-section per sfondo scuro tema MapControl.
 * Includere DOPO hyksos-styles.css in mapcontrol.php:
 * <link rel="stylesheet" href="css/hero-mapcontrol.css">
 *
 * Richiede anche:
 * - Font Inter nel <head>
 * - <canvas id="heroParticleCanvas"> come primo figlio di .hero-section
 * - <script src="js/hero-particles-mapcontrol.js"> prima di </body>
 */

/* ============================================= */
/* HERO SECTION - BASE                            */
/* ============================================= */

.hero-section {
	background: #0e0810;
	position: relative;
	padding: 50px 0 40px 0;
	margin-bottom: 0;
	overflow: hidden;
	animation: none;
}

.hero-section::before,
.hero-section::after {
	display: none;
}

/* ============================================= */
/* CANVAS PARTICELLARE                            */
/* ============================================= */

#heroParticleCanvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: auto;
}

/* ============================================= */
/* CONTENUTO SOPRA IL CANVAS                      */
/* ============================================= */

.hero-section .container {
	position: relative;
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 2;
	pointer-events: auto;
	animation: heroSimpleFade 1s ease-out;
}

@keyframes heroSimpleFade {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

/* ============================================= */
/* TIPOGRAFIA                                     */
/* ============================================= */

.hero-title {
	font-family: 'Inter', 'Open Sans', sans-serif;
	font-size: 52px;
	font-weight: 300;
	letter-spacing: 4px;
	color: #ffffff;
	text-shadow: none;
	margin-bottom: 12px;
	animation: heroSimpleFade 1s ease-out 0.2s both;
}

.hero-title strong {
	font-weight: 300;
}

.hero-subtitle {
	font-family: 'Inter', 'Open Sans', sans-serif;
	font-size: 22px;
	font-weight: 300;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 18px;
	animation: heroSimpleFade 1s ease-out 0.4s both;
}

.hero-description {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.7;
	margin-bottom: 25px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	animation: heroSimpleFade 1s ease-out 0.6s both;
}

.hero-description strong {
	color: rgba(255, 255, 255, 0.80);
}

/* ============================================= */
/* FEATURE CARDS                                  */
/* ============================================= */

.hero-section .feature-card.characteristic-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(220, 100, 100, 0.15) !important;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-section .feature-card.characteristic-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(220, 100, 100, 0.30) !important;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	transform: translateY(-3px);
}

.hero-section .feature-card h3 {
	color: rgba(255, 255, 255, 0.90);
	font-size: 17px;
}

.hero-section .feature-card p {
	color: rgba(255, 255, 255, 0.60);
	font-size: 15px !important;
	line-height: 1.6;
}

.hero-section .feature-card p strong {
	color: rgba(255, 255, 255, 0.80);
}

.hero-section .feature-card i {
	opacity: 0.85;
	animation: none;
}

.hero-section .feature-card:hover i {
	animation: none;
	transform: scale(1.1);
	transition: transform 0.3s ease;
}

/* ============================================= */
/* BOTTONI                                        */
/* ============================================= */

.hero-section .button-container .btn.v-btn.v-third-dark {
	background-color: rgba(255, 255, 255, 0.10) !important;
	color: #ffffff !important;
	border-width: 1px !important;
	transition: all 0.3s ease;
	font-family: 'Inter', 'Open Sans', sans-serif;
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 16px;
}

.hero-section .button-container .btn.v-btn.v-third-dark.red-hover {
	border-color: rgba(220, 80, 80, 0.6) !important;
}

.hero-section .button-container .btn.v-btn.v-third-dark.red-hover:hover {
	background: rgba(220, 80, 80, 0.30) !important;
	border-color: rgba(220, 80, 80, 0.8) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(220, 80, 80, 0.25);
}

.hero-section .button-container .btn.v-btn.v-third-dark.blue-hover {
	border-color: rgba(59, 130, 246, 0.6) !important;
}

.hero-section .button-container .btn.v-btn.v-third-dark.blue-hover:hover {
	background: rgba(59, 130, 246, 0.30) !important;
	border-color: rgba(59, 130, 246, 0.8) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

/* ============================================= */
/* TRANSIZIONI HEADER                             */
/* ============================================= */

.header-transition {
	display: none;
}

.header-transition-2 {
	display: none;
}

/* ============================================= */
/* RESPONSIVE                                     */
/* ============================================= */

@media (max-width: 768px) {
	.hero-title {
		font-size: 36px;
		letter-spacing: 2px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.hero-section {
		padding: 35px 0 30px 0;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 28px;
		letter-spacing: 1px;
	}

	.hero-subtitle {
		font-size: 15px;
	}
}
