/* =====================================================================
   FHC Summer Camp – stilius (viskas po .fhc, kad nesusikirstų su tema)
   Estetika: tamsus „grunge", atletiškas, raudonas akcentas, condensed šriftai
   ===================================================================== */

.fhc {
	--fhc-bg:       #0c0c0e;
	--fhc-bg-2:     #131316;
	--fhc-panel:    #17171b;
	--fhc-line:     #2a2a30;
	--fhc-text:     #ece9e3;
	--fhc-muted:    #9a978f;
	--fhc-red:      #d11f26;
	--fhc-red-2:    #e23c42;
	--fhc-display:  "Anton", "Barlow Condensed", Impact, sans-serif;
	--fhc-cond:     "Barlow Condensed", "Oswald", sans-serif;
	--fhc-body:     "Barlow", "Helvetica Neue", Arial, sans-serif;

	margin: 0;
	background: var(--fhc-bg);
	color: var(--fhc-text);
	font-family: var(--fhc-body);
	font-size: 17px;
	line-height: 1.65;
	overflow-x: clip;
}

.fhc *,
.fhc *::before,
.fhc *::after { box-sizing: border-box; }

.fhc .fhc-wrap {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 24px;
}

.fhc .fhc-red { color: var(--fhc-red); }

/* ---------- LANGUAGE BLOCKS ---------- */
.fhc .fhc-lang { display: none; }
.fhc .fhc-lang.is-active { display: block; }

/* ---------- HERO ---------- */
.fhc .fhc-hero {
	position: relative;
	min-height: clamp(440px, 78vh, 760px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
.fhc .fhc-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 28%;
	filter: saturate(0.92) contrast(1.05);
}
.fhc .fhc-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 90% at 50% 0%, rgba(0,0,0,0.15), rgba(0,0,0,0.55) 70%),
		linear-gradient(to bottom, rgba(12,12,14,0) 35%, rgba(12,12,14,0.92) 92%, var(--fhc-bg) 100%);
}
.fhc .fhc-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding: 0 24px 56px;
}
.fhc .fhc-hero__kicker {
	font-family: var(--fhc-cond);
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 0.86rem;
	color: var(--fhc-muted);
	margin: 0 0 6px;
}
.fhc .fhc-hero__title {
	font-family: var(--fhc-display);
	font-weight: 400;
	text-transform: uppercase;
	font-size: clamp(2rem, 7vw, 7.5rem);
	line-height: 0.86;
	letter-spacing: 0.01em;
	margin: 0;
	text-shadow: 0 6px 30px rgba(0,0,0,0.6);
	color: #fff;
}

@media (min-width: 1600px) {
	.fhc .fhc-hero__title {
		font-size: 6.5vw;
	}
}

.fhc .fhc-hero__dates {
	font-family: var(--fhc-cond);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.12em;
	font-size: clamp(1.1rem, 3vw, 1.7rem);
	color: var(--fhc-red);
	margin: 10px 0 26px;
}
.fhc .fhc-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* ---------- LANGUAGE SWITCH ---------- */
.fhc .fhc-langswitch {
	position: absolute;
	top: 22px;
	right: 24px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0,0,0,0.5);
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 999px;
	padding: 6px 14px;
	backdrop-filter: blur(6px);
}
.fhc .fhc-langswitch__btn {
	font-family: var(--fhc-cond);
	font-weight: 700;
	letter-spacing: 0.08em;
	font-size: 0.95rem;
	background: none;
	border: 0;
	color: var(--fhc-muted);
	cursor: pointer;
	padding: 0;
	transition: color 0.18s;
}
.fhc .fhc-langswitch__btn.is-active { color: var(--fhc-text); }
.fhc .fhc-langswitch__btn:hover { color: var(--fhc-red-2); }
.fhc .fhc-langswitch__sep { color: rgba(255,255,255,0.25); }

/* ---------- BUTTONS ---------- */
.fhc .fhc-btn {
	display: inline-block;
	font-family: var(--fhc-cond);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.1em;
	font-size: 1rem;
	padding: 14px 30px;
	border-radius: 2px;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.12s, background 0.2s, color 0.2s, border-color 0.2s;
	border: 2px solid transparent;
}
.fhc .fhc-btn:active { transform: translateY(1px); }
.fhc .fhc-btn--solid {
	background: var(--fhc-red);
	color: #fff;
	border-color: var(--fhc-red);
}
.fhc .fhc-btn--solid:hover { background: var(--fhc-red-2); border-color: var(--fhc-red-2); }
.fhc .fhc-btn--ghost {
	background: var(--fhc-red);
	color: #fff;
	border-color: var(--fhc-red);
}
.fhc .fhc-btn--ghost:hover { background: var(--fhc-red-2); }
.fhc .fhc-btn--outline {
	background: transparent;
	color: var(--fhc-text);
	border-color: rgba(255,255,255,0.45);
}
.fhc .fhc-btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ---------- CONTENT ---------- */
.fhc .fhc-content { padding: 64px 0 24px; }
.fhc .fhc-lead {
	font-size: clamp(1.15rem, 2.4vw, 1.5rem);
	line-height: 1.5;
	color: #fff;
	margin: 0 0 28px;
}
.fhc .fhc-content p { margin: 0 0 18px; color: #d4d1ca; }
.fhc .fhc-content strong { color: #fff; }
.fhc .fhc-content code {
	background: var(--fhc-red);
	color: #fff;
	padding: 1px 8px;
	border-radius: 3px;
	font-family: var(--fhc-cond);
	letter-spacing: 0.06em;
}
.fhc .fhc-content a { color: var(--fhc-red-2); }

.fhc .fhc-h2 {
	font-family: var(--fhc-display);
	text-transform: uppercase;
	font-weight: 400;
	font-size: clamp(1.7rem, 4.5vw, 2.6rem);
	letter-spacing: 0.02em;
	margin: 48px 0 18px;
	padding-bottom: 8px;
	border-bottom: 3px solid var(--fhc-red);
	display: inline-block;
	color: #fff;
}
.fhc .fhc-list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}
.fhc .fhc-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 8px;
	color: #d4d1ca;
}
.fhc .fhc-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 9px;
	height: 9px;
	background: var(--fhc-red);
	transform: rotate(45deg);
}

/* ---------- PRICING ---------- */
.fhc .fhc-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 8px 0 12px;
}
.fhc .fhc-tier {
	background: var(--fhc-panel);
	border: 1px solid var(--fhc-line);
	border-top: 3px solid var(--fhc-red);
	padding: 22px 20px;
}
.fhc .fhc-tier h3 {
	font-family: var(--fhc-cond);
	text-transform: uppercase;
	font-size: 1.25rem;
	letter-spacing: 0.05em;
	margin: 0 0 14px;
	color: #fff;
}
.fhc .fhc-tier h3 span {
	display: block;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	color: var(--fhc-muted);
	font-weight: 600;
}
.fhc .fhc-tier p {
	margin: 0 0 6px !important;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed var(--fhc-line);
	padding-bottom: 6px;
	font-size: 0.97rem;
}
.fhc .fhc-tier p b { color: var(--fhc-red-2); }

.fhc .fhc-note {
	margin-top: 36px !important;
	background: rgba(209,31,38,0.08);
	border-left: 4px solid var(--fhc-red);
	padding: 16px 20px;
	color: #fff !important;
}

/* ---------- FORM ---------- */
.fhc .fhc-formwrap {
	background:
		linear-gradient(180deg, var(--fhc-bg) 0%, var(--fhc-bg-2) 100%);
	border-top: 1px solid var(--fhc-line);
	padding: 70px 0 90px;
	margin-top: 50px;
}
.fhc .fhc-formtitle {
	font-family: var(--fhc-display);
	text-transform: uppercase;
	font-weight: 400;
	font-size: clamp(2.2rem, 6vw, 3.6rem);
	letter-spacing: 0.02em;
	margin: 0 0 28px;
	text-align: center;
	color: #fff;
}
.fhc .fhc-formgrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	max-width: 760px;
	margin: 0 auto;
}
.fhc .fhc-field { display: flex; flex-direction: column; }
.fhc .fhc-field--full { grid-column: 1 / -1; }
.fhc .fhc-field label,
.fhc .fhc-radioset legend {
	font-family: var(--fhc-cond);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--fhc-muted);
	margin-bottom: 8px;
}
.fhc .fhc-field input[type="text"],
.fhc .fhc-field input[type="tel"],
.fhc .fhc-field input[type="email"] {
	background: var(--fhc-panel);
	border: 1px solid var(--fhc-line);
	border-radius: 2px;
	color: var(--fhc-text);
	font-family: var(--fhc-body);
	font-size: 1rem;
	padding: 13px 14px;
	transition: border-color 0.18s, box-shadow 0.18s;
}
.fhc .fhc-field input:focus {
	outline: none;
	border-color: var(--fhc-red);
	box-shadow: 0 0 0 3px rgba(209,31,38,0.2);
}
.fhc .fhc-field--error input,
.fhc .fhc-radioset.fhc-field--error {
	border-color: var(--fhc-red) !important;
	box-shadow: 0 0 0 3px rgba(209,31,38,0.18);
}

/* radio paslaugos */
.fhc .fhc-radioset {
	border: 1px solid var(--fhc-line);
	border-radius: 2px;
	padding: 18px;
	margin: 0;
}
.fhc .fhc-radioset legend { padding: 0 6px; }
.fhc .fhc-radio { display: block; cursor: pointer; margin-bottom: 12px; }
.fhc .fhc-radio:last-child { margin-bottom: 0; }
.fhc .fhc-radio input { position: absolute; opacity: 0; pointer-events: none; }
.fhc .fhc-radio__box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: var(--fhc-panel);
	border: 1px solid var(--fhc-line);
	border-radius: 2px;
	padding: 14px 18px;
	transition: border-color 0.18s, background 0.18s;
}
.fhc .fhc-radio__box::before {
	content: "";
	order: -1;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border: 2px solid var(--fhc-muted);
	border-radius: 50%;
	margin-right: 4px;
	transition: border-color 0.18s, box-shadow 0.18s;
}
.fhc .fhc-radio__name {
	flex: 1;
	font-family: var(--fhc-cond);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 1.05rem;
	font-weight: 600;
}
.fhc .fhc-radio__price {
	font-family: var(--fhc-display);
	font-size: 1.3rem;
	color: var(--fhc-red-2);
}
.fhc .fhc-radio:hover .fhc-radio__box { border-color: rgba(255,255,255,0.35); }
.fhc .fhc-radio input:checked + .fhc-radio__box {
	border-color: var(--fhc-red);
	background: rgba(209,31,38,0.1);
}
.fhc .fhc-radio input:checked + .fhc-radio__box::before {
	border-color: var(--fhc-red);
	box-shadow: inset 0 0 0 4px var(--fhc-red);
}
.fhc .fhc-radio input:focus-visible + .fhc-radio__box {
	box-shadow: 0 0 0 3px rgba(209,31,38,0.3);
}

.fhc .fhc-finehint {
	font-size: 0.82rem;
	color: var(--fhc-muted);
	margin: 12px 0 0;
}
.fhc .fhc-field--full .fhc-btn--solid { width: 100%; }

.fhc .fhc-alert {
	max-width: 760px;
	margin: 0 auto 22px;
	background: rgba(209,31,38,0.12);
	border: 1px solid var(--fhc-red);
	color: #fff;
	padding: 14px 18px;
	border-radius: 2px;
	font-weight: 600;
}

/* ---------- LIGHTBOX ---------- */
.fhc .fhc-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(5,5,7,0.92);
	padding: 28px;
	backdrop-filter: blur(3px);
}
.fhc .fhc-lightbox.is-open { display: flex; }
.fhc .fhc-lightbox__img {
	max-width: min(92vw, 800px);
	max-height: 92vh;
	width: auto;
	height: auto;
	box-shadow: 0 20px 60px rgba(0,0,0,0.6);
	border: 1px solid rgba(255,255,255,0.1);
}
.fhc .fhc-lightbox__close {
	position: absolute;
	top: 18px;
	right: 24px;
	background: none;
	border: 0;
	color: #fff;
	font-size: 2.6rem;
	line-height: 1;
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.18s, transform 0.18s;
}
.fhc .fhc-lightbox__close:hover { opacity: 1; transform: scale(1.1); }
body.fhc-noscroll { overflow: hidden; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
	.fhc .fhc-pricing { grid-template-columns: 1fr; }
	.fhc .fhc-formgrid { grid-template-columns: 1fr; }
	.fhc .fhc-hero__inner { padding-bottom: 40px; }
	.fhc .fhc-langswitch { top: -50px; right: 16px; }
}

/* ---------- LOAD ANIMACIJA ---------- */
@media (prefers-reduced-motion: no-preference) {
	.fhc .fhc-hero__inner > * {
		animation: fhc-rise 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
	}
	.fhc .fhc-hero__kicker { animation-delay: 0.05s; }
	.fhc .fhc-hero__title  { animation-delay: 0.12s; }
	.fhc .fhc-hero__dates  { animation-delay: 0.2s; }
	.fhc .fhc-hero__cta    { animation-delay: 0.28s; }
	@keyframes fhc-rise {
		from { opacity: 0; transform: translateY(22px); }
		to   { opacity: 1; transform: translateY(0); }
	}
}
