/* --- valentine colour theme --- */

:root {
	--accent: #ff6fa5;
	--bg: #ffd6e8;
	--gradientTop: #fff0f6;
	--gradientBottom: #ffd9ec;
	--border: lightgrey
}

@font-face {
    font-family: "MyCuteFont";
    src: url("fonts/LovelySonia.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* banner tint */
header {
		background: linear-gradient(#ffd6ea, #fff0f6);
}

/* heading styling */
.valentine h1 {
	font-family: "Comic Sans MS", cursive;
	color: #d63384;
	text-shadow: 1px 1px white, 2px 2px #ff9ecb;
}

.subtitle {
	text-align: center;
	font-size: 0.9rem;
	opacity: 0.8;
}

/* --- cat grid --- */

.cat-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	margin-top: 20px;
	flex-wrap: wrap; /* allows wrapping on small screens */
}

.cat {
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cat:hover {
	transform: scale(1.05);
	box-shadow: 0 0 10px rgba(255,105,180,.6);
}

.cat img {
	width: 250px;          /* base size of cats */
	height: auto;
	display: block;
	transition: transform .25s ease;
	pointer-events: none;  /* prevents weird hover flicker */
	filter: drop-shadow(0 8px 12px rgba(0,0,0,0.2));
}

.cat:hover img {
	transform: scale(1.25);
}


.bumper-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
	padding: 4px 0;
}

.bumper-row img {
	width: 88px;
	height: 31px;
	image-rendering: pixelated;
}

body {
	background-color: #fff0f6;
	background-image:
	linear-gradient(30deg, #ffd6e8 12%, transparent 12.5%, transparent 87%, #ffd6e8 87.5%, #ffd6e8),
	linear-gradient(150deg, #ffd6e8 12%, transparent 12.5%, transparent 87%, #ffd6e8 87.5%, #ffd6e8);
	background-size: 20px 35px;
}

/* stop page from scrolling too tall */
.valentine {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.floating-gif {
    position: absolute;
    pointer-events: none; /* so they don’t block clicks */
    width: 120px;          /* bigger size */
    height: auto;
    z-index: 0;            /* behind everything else */
}

