/* Стили главной landing-страницы (front-page.php). Mobile-first. */

.landing-page {
	min-height: 100vh;
}

/* ---------- Hero (первый экран, 100vh) ---------- */

.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: #111111;
	background-image: url('../images/hero-yuna.JPG');
	background-size: cover;
	background-position: center;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0.1) 35%,
		rgba(0, 0, 0, 0.35) 65%,
		rgba(0, 0, 0, 0.85) 100%
	);
}

/* ---------- Hero content: единая fullscreen-композиция ---------- */

.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	padding: 4.5rem 1.25rem 1.5rem;
	gap: 1rem;
}

.hero-top {
	flex: 0 0 auto;
}

.hero-logo {
	margin: 0;
	font-size: clamp(2rem, 10vw, 5rem);
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}

.hero-logo-symbols {
	display: inline-block;
	margin-left: 0.15em;
	font-size: 0.4em;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-transform: none;
	vertical-align: middle;
	opacity: 0.85;
}

/* ---------- Links (внутри hero, без отдельной секции/скролла) ---------- */

.hero-links {
	flex: 0 0 auto;
	width: 100%;
}

.links-title {
	margin: 0 0 0.9rem;
	font-size: clamp(0.65rem, 2vw, 0.85rem);
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #d8d8d8;
}

.links-list {
	display: flex;
	flex-direction: column;
	gap: clamp(0.15rem, 1vh, 0.5rem);
	max-width: 30rem;
	margin: 0 auto;
}

.link-button {
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	border-radius: 0;
	background: none;
	font-size: clamp(1.4rem, 7.5vw, 2.5rem);
	font-weight: 800;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #ffffff;
	cursor: pointer;
	transition: color 0.2s ease;
}

.link-button:hover,
.link-button:focus-visible {
	color: #ff1a1a;
}

.link-button:active {
	color: #ff1a1a;
}

.link-button--exclusive,
.link-button--exclusive:hover,
.link-button--exclusive:focus-visible,
.link-button--exclusive:active {
	color: #ff1a1a;
	font-weight: 800;
	font-size: clamp(1.3rem, 6.5vw, 2.3rem);
	white-space: nowrap;
}

.link-button--private,
.link-button--private:hover,
.link-button--private:focus-visible,
.link-button--private:active {
	color: #ff4fa0;
	font-weight: 800;
}

/* ---------- Desktop ---------- */

@media (min-width: 768px) {
	.hero-content {
		padding: 6rem 1.5rem 3rem;
		gap: 1.5rem;
	}

	.links-list {
		max-width: 26rem;
	}

	.hero-logo {
		letter-spacing: 0.3em;
	}
}

@media (min-width: 1024px) {
	.hero-content {
		padding: 6.5rem 2rem 4rem;
	}
}

/* ---------- Age-gate: подтверждение 18+ для Exclusive Content ---------- */

.age-gate-inner {
	max-width: 24rem;
	padding: 2.25rem 1.75rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(11, 11, 11, 0.6);
	text-align: center;
}

.age-gate-inner .age-gate-badge {
	margin: 0 0 0.9rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.35em;
	color: #ff1a1a;
}

.age-gate-title {
	margin: 0 0 1rem;
	font-size: clamp(1.1rem, 4.5vw, 1.5rem);
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.35;
	color: #ffffff;
}

.age-gate-inner .age-gate-text {
	margin: 0 0 1.5rem;
	font-size: 0.85rem;
	line-height: 1.6;
	color: #a8a8a8;
}

.age-gate-continue {
	display: block;
	width: 100%;
	padding: 1rem 1rem;
	background: #ff1a1a;
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	transition: background-color 0.2s ease;
}

.age-gate-continue:hover,
.age-gate-continue:focus-visible {
	background: #d61414;
}

.age-gate-back {
	display: block;
	margin: 1.5rem auto 0;
	padding: 0.5rem;
	background: none;
	border: none;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #999999;
	cursor: pointer;
	transition: color 0.2s ease;
}

.age-gate-back:hover,
.age-gate-back:focus-visible {
	color: #cccccc;
}
