/* Custom theme CSS - port <style> z references/index.html. */

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

.glass {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.4);
}

#topbar {
	max-height: 3rem;
	overflow: hidden;
	transition: max-height 0.3s ease-out, opacity 0.25s ease-out;
}
#topbar.is-hidden {
	max-height: 0;
	opacity: 0;
	pointer-events: none;
}

@media (orientation: landscape) and (max-height: 600px) {
	#hero-section {
		padding-top: 5rem;
		padding-bottom: 2rem;
	}
	#hero-bg-blobs {
		height: max(120vh, 900px);
	}
}

/* Drobne dopasowanie nav-walkera (WP menu) - upewnij sie ze elementy ul/li sa odpowiednio
   ustawione, gdyby admin skonfigurowal menu primary. */
#navbar ul {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Ukryj liste komentarzy gdyby cokolwiek probowalo ja wyrenderowac. */
.comments-area, #comments, .comment-respond {
	display: none !important;
}
