@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
	margin: 0px;
	padding: 0px;
	font-family: "Poppins", sans-serif;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

.gradient-text {
	background-image: linear-gradient(-225deg, #ff8c8c, #ff5f6d, #ff8c8c);
	background-size: 200% auto;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textclip 3s linear infinite;
}

/* Buttons */
.btn {
	font-size: 24px;
	font-weight: bold;
	padding: 12px 24px;
	border-radius: 50px;
	cursor: pointer;
	transition: 0.3s;
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.yes-btn {
	background: linear-gradient(45deg, #ff5f6d, #ffc371);
	color: white;
	border: none;
}

.yes-btn:hover {
	transform: scale(1.1);
	box-shadow: 0px 5px 25px rgba(255, 95, 109, 0.8);
}

.no-btn {
	background: linear-gradient(45deg, #b92b27, #1565c0);
	color: white;
	border: none;
}

.no-btn:hover {
	transform: scale(1.1);
	box-shadow: 0px 5px 25px rgba(185, 43, 39, 0.8);
}

/* Heart Cursor Effect */
.heart-trail {
	position: absolute;
	color: red;
	font-size: 16px;
	pointer-events: none;
	animation: fadeHeart 1s linear forwards;
}

@keyframes fadeHeart {
	0% {
		opacity: 1;
		transform: translateY(0px);
	}
	100% {
		opacity: 0;
		transform: translateY(-20px);
	}
}

@keyframes sparkle {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(2);
		opacity: 0;
	}
}

.sparkle {
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: gold;
	border-radius: 50%;
	pointer-events: none;
	animation: sparkle 0.5s linear forwards;
}

.falling-heart {
	position: fixed;
	top: 0;
	font-size: 24px;
	animation: fall 3s linear forwards;
}

@keyframes fall {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(100vh);
		opacity: 0;
	}
}

/* Container for raining flowers */
.flower-rain {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
}

/* Individual falling flowers */
.flower {
	position: absolute;
	font-size: 15px;
	opacity: 0.8;
	animation: fall linear infinite;
}

/* Falling animation */
@keyframes fall {
	0% {
		transform: translateY(-10vh) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translateY(100vh) rotate(360deg);
		opacity: 0;
	}
}
