@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,700;1,400');

:root {
	--bg: #222222;
	--primary: #c79e53;
	--text-color: #ffffff;
}

#dou-picnic-countdown { 
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 26px;
	background-color: #7aa3f2;
	background-image: url('i/dou-picnic-bg.png');
	background-size: cover;
	/* background-size: 1400px 150px; */
	background-position-y: -90px;
	color: #fff;
	padding: 10px 40px 10px 25px;
	position: relative;
	overflow: hidden;
	display: flex;
	gap: 30px;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1400px;
	height: 76px;
	box-sizing: border-box;
}

#dou-picnic_info {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.dou-day-highlight {
	background: linear-gradient(135deg, #ff6b4a 0%, #ff5722 100%);
	color: white;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 8px;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(255, 107, 74, 0.3);
}

#dou-picnic_kvytky {
	text-decoration: none;
	color: white;
	font-size: 22px;
	font-style: italic;
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	border: 1px solid #288eed;
	background-color: #288eed66;
	padding: 0 20px 6px 15px;
}
#dou-picnic_kvytky:hover { background-color: #288eed99; }
#picnic_kvytky-folder {
	width: 50px;
	height: 48px;
}
#picnic_kvytky-cta { 
	margin-top: 5px; 
	white-space: nowrap;
}
#picnic_kvytky-cursor {
	width: 60px;
	height: 61px;
	position: absolute;
	top: 5px;
	right: -30px;
	pointer-events: none;
	animation: .9s linear 0s infinite alternate cursor;
}

@keyframes cursor {
	from { right: -36px; top: 2px; transform: rotate(-15deg); }
	to { right: -41px; top: 6px; transform: rotate(-10deg); }
}


@media screen and (max-width: 1200px) {
	#dou-picnic-countdown { 
		font-size: 22px; 
		line-height: 24px;
		background-position-y: -60px;
	}
}

@media screen and (max-width: 740px) {
	#dou-picnic-countdown { height: unset; background-position-y: top; }
	#dou-picnic_info { flex-direction: column; gap: 5px; }

}

@media screen and (max-width: 660px) {
	#dou-picnic-countdown, #dou-picnic_kvytky { 
		font-size: 18px; 
		line-height: 20px;
	}
}

@media screen and (max-width: 560px) {
	#dou-picnic-countdown { 
		flex-direction: column; 
		gap: 10px;
		align-items: flex-start;
	}
	#dou-picnic_kvytky {
		padding: 0 20px 5px 10px;
	}
	#picnic_kvytky-folder {
		width: 30px;
		height: 29px;
	}
	#picnic_kvytky-cursor {
		width: 36px;
		height: 36px;
	}
	@keyframes cursor {
		from { right: -20px; top: 2px; transform: rotate(-15deg); }
		to { right: -23px; top: 6px; transform: rotate(-10deg); }
	}
}