/* Berlin Time Display */
.berlin-time {
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 10000;
	color: white;
	font-family: 'ABCMonumentGrotesk', 'Arial', sans-serif;
	font-size: 14px;
	font-weight: normal;
	display: flex;
	align-items: center;
	gap: 8px;
}

.time-label {
	font-weight: bold;
	opacity: 0.7;
}

.time-value {
	font-weight: normal;
}

/* Custom Font */
@font-face {
	font-family: 'ABCMonumentGrotesk';
	src: url('../font/ABCMonumentGrotesk-Bold.woff2') format('woff2');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'ABCMonumentGrotesk', 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
	background: rgb(0, 0, 0);
	font-weight: bold;
}

/* Content Section - Removed */

/* Custom Scrollbar */
.content::-webkit-scrollbar {
	width: 6px;
}

.content::-webkit-scrollbar-track {
	background: transparent;
}

.content::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 3px;
}

.content::-webkit-scrollbar-thumb:hover {
	background: #666;
}

/* Firefox scrollbar */
.content {
	scrollbar-width: thin;
	scrollbar-color: #888 transparent;
}

.image-container {
	width: 100%;
	height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10rem;
	box-sizing: border-box;
	scroll-snap-align: start;
}

.image-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	filter: blur(10px);
	transform: scale(0.9);
	transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}

.image-container img.visible {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
}

/* Typography */
h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	font-weight: 300;
}

p {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Responsive design */
@media (max-width: 768px) {
	.image-container {
		padding: 1rem;
	}

	h1 {
		font-size: 2rem;
	}

	p {
		font-size: 1rem;
		padding: 0 1rem;
	}
}
