/* ================================================================
   VIAGGIA CON AUTAN DEFENSE - Custom CSS
   Landing page minimale: Banner + CTA + Footer legale
   ================================================================ */

:root {
	--ocean-deep: #0a3d62;
	--ocean-mid: #1565a7;
	--ocean-light: #3498db;
	--gold-bright: #f1c40f;
	--gold-deep: #d4930d;
	--white: #ffffff;
	--sand-light: #fef9ef;
	--text-dark: #1a2332;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	font-family: 'Poppins', sans-serif;
	color: var(--text-dark);
	background: var(--sand-light);
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* ==================== SKIP LINK ==================== */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 9999;
	background: var(--ocean-deep);
	color: var(--white);
	padding: 10px 20px;
	font-size: 14px;
	text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ==================== PAGE WRAPPER ==================== */
.page-wrapper {
	position: relative;
	min-height: 60vh;
}

/* ==================== HERO BANNER ==================== */
.hero-section {
	position: relative;
	overflow: hidden;
}
.hero-section img {
	width: 100%;
	height: auto;
	display: block;
}

/* ==================== CTA BUTTON ==================== */
.cta-wrapper {
	text-align: center;
	padding: 2.5rem 1rem;
}

.btn-regolamento {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid));
	color: var(--white) !important;
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 16px 40px;
	border-radius: 60px;
	text-decoration: none !important;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 8px 30px rgba(10, 61, 98, 0.3);
	border: none;
}
.btn-regolamento:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 14px 40px rgba(10, 61, 98, 0.4);
	color: var(--white) !important;
	background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-light));
}
.btn-regolamento i {
	font-size: 1.2rem;
}

/* ==================== FOOTER ==================== */
footer {
	background: var(--ocean-deep);
	color: rgba(255,255,255,0.75);
	padding: 2rem 0 1rem;
	position: relative;
}
footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--gold-bright), var(--ocean-light), var(--gold-bright));
}
footer p {
	font-size: 0.8rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}
footer a {
	color: var(--gold-bright) !important;
	text-decoration: underline;
	transition: color 0.3s;
}
footer a:hover {
	color: var(--white) !important;
}

/* ==================== PRIVACY BAR ==================== */
.privacy-bar {
	background: #061f33;
	color: rgba(255,255,255,0.5);
	text-align: center;
	padding: 1rem;
	font-size: 0.75rem;
}
.privacy-bar a {
	color: var(--gold-bright) !important;
	text-decoration: underline;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
	.btn-regolamento {
		font-size: 0.95rem;
		padding: 14px 32px;
	}
}
