/* ── FloatingPathsBackground ──────────────────────────
   Component-scoped styles.
   Bulma provides base resets and typography utilities
   via the .fpb-demo-* classes below.
   Layout/positioning that Bulma doesn't cover directly
   is handled here.
─────────────────────────────────────────────────────── */

/* Outer wrapper — full width, establishes stacking context */
.fpb-wrap {
	position: relative;
	width: 100%;
}

/* Absolute SVG layer — fills the wrapper, no pointer events */
.fpb-svg-layer {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

/* SVG fills its container */
.fpb-svg {
	width: 100%;
	height: 100%;
	/* Inherit the current text colour so the stroke adapts to dark/light contexts */
	color: #0f172a;
}

/* ── Demo / example styles ────────────────────────────
   Used by FloatingPathsBackgroundExample only.
   Bulma classes handle typography & spacing;
   these rules handle what Bulma doesn't provide.
─────────────────────────────────────────────────────── */

/* 16:9 demo container */
.fpb-demo {
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0a0a0a;
	border-radius: 12px;
	overflow: hidden;
}

/* Centred content card inside the demo */
.fpb-demo-content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 2rem 3rem;
}

/* Headline inside demo */
.fpb-demo-title {
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.04em;
	line-height: 1;
	margin-bottom: 0.5rem;
}

/* Sub-label inside demo */
.fpb-demo-sub {
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(237, 237, 237, 0.4);
}
