/* ============================================================
   NAUTICA — Banner Home
   Banner largo quanto lo slider (max 1300px), alto 350px,
   interamente cliccabile.
   ============================================================ */

/* ── Sezione contenitore ───────────────────────────────────── */
.nws-banner-section {
	width: 100%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* ── Banner (link o div) ───────────────────────────────────── */
.nws-banner {
	display: block;
	position: relative;
	width: 100%;
	height: 350px;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
	outline: none;
}

/* ── Background (immagine / colore) ────────────────────────── */
.nws-banner__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.45s cubic-bezier(.25,.46,.45,.94);
}
.nws-banner:hover .nws-banner__bg {
	transform: scale(1.03);
}

/* ── Contenuto ─────────────────────────────────────────────── */
.nws-banner__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 40px 60px;
	max-width: 620px;
	gap: 10px;
}

/* Allineamento centrato */
.nws-banner--align-center .nws-banner__content {
	align-items: center;
	text-align: center;
	max-width: 100%;
	padding: 40px;
}

/* ── Tipografia ─────────────────────────────────────────────── */
.nws-banner__subtitle {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255,255,255,.75);
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	padding: 4px 12px;
	border-radius: 20px;
	margin: 0;
	width: fit-content;
}

.nws-banner__title {
	font-size: clamp(22px, 3vw, 38px);
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
	margin: 0;
	text-shadow: 0 2px 8px rgba(0,0,0,.25);
	letter-spacing: -0.02em;
}

.nws-banner__desc {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255,255,255,.85);
	margin: 0;
	max-width: 480px;
}
.nws-banner--align-center .nws-banner__desc {
	max-width: 100%;
}

/* ── Pulsante CTA ───────────────────────────────────────────── */
.nws-banner__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #0a2540;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	padding: 12px 24px;
	border-radius: 8px;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
	width: fit-content;
	margin-top: 4px;
	transition: background 0.18s, transform 0.15s;
	box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.nws-banner:hover .nws-banner__btn {
	background: rgba(255,255,255,.92);
	transform: translateX(3px);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
	.nws-banner-section {
		padding: 0 16px;
	}
	.nws-banner {
		height: 280px;
	}
	.nws-banner__content {
		padding: 28px 28px;
		max-width: 100%;
	}
	.nws-banner__title {
		font-size: 22px;
	}
	.nws-banner__desc {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.nws-banner {
		height: 240px;
	}
	.nws-banner__content {
		padding: 20px 18px;
		gap: 7px;
	}
	.nws-banner__title {
		font-size: 18px;
	}
	.nws-banner__btn {
		font-size: 12px;
		padding: 10px 18px;
	}
}
