.logofont {
	font-family: "Lobster", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.cinzel-700 {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.pizza-rotator {
	animation: rotatePizza 25s linear infinite;
	transform-origin: center;
	transition: animation-play-state 0.3s ease;
}
@keyframes rotatePizza {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.pizzeria-bg {
	position: relative;
	width: 100%;
	min-height: 550px;

	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;

	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Nakładka Liquid Glass (Efekt oszronionego/płynnego szkła) */
.glass-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	/* Delikatne rozjaśnienie i rozmycie obiektów w tle */
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px); /* Wsparcie dla Safari */

	/* Subtelny połysk szkła */
	box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.2);
	z-index: 1;
}

/* Kontener na treść (musi być nad warstwą szkła) */
.hero-content-layer {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.glass-card {
	background: rgba(255, 255, 255, 0.65);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 1rem;
	padding: 2.5rem;
}
