/* RESET */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg: #fffbf3;
	--text-main: #1f2933;
	--text-muted: #5b6770;
	--accent-pink: #ff5ea8;
	--accent-purple: #7b2ff7;
	--accent-yellow: #ffd45e;
	--accent-blue: #3bb4ff;
	--card-radius-lg: 20px;
	--card-radius-md: 14px;
	--shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
	--shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.08);
	--transition-fast: 0.18s ease-out;
	--transition-med: 0.28s cubic-bezier(0.19, 1, 0.22, 1);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
	background: radial-gradient(circle at top, #ffe3f0 0, #fffbf3 45%, #fff 100%);
	color: var(--text-main);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Confetti-ish background */
body::before {
	content: "";
	position: fixed;
	inset: -100px;
	pointer-events: none;
	background-image:
		radial-gradient(circle at 10% 20%, rgba(255, 94, 168, 0.25) 0, transparent 50%),
		radial-gradient(circle at 80% 0%, rgba(59, 180, 255, 0.2) 0, transparent 55%),
		radial-gradient(circle at 0% 70%, rgba(255, 212, 94, 0.25) 0, transparent 50%);
	opacity: 0.9;
	z-index: -1;
}

/* HEADER */
.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.9rem 1.6rem;
	background: rgba(255, 251, 243, 0.93);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 212, 94, 0.6);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* LOGO BADGE */
.logo-badge {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	text-decoration: none;
  	color: inherit;
}

.logo-badge:hover {
  text-decoration: none;
}

.logo-main {
  display: none;
}

.logo-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 148, 201, 0.9);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;
  font-family: "Pacifico", "Segoe Script", "Brush Script MT", cursive;
  text-transform: none;
}

/* No subtitle anymore */
.logo-sub {
  display: none;
}

/* NAV */
.nav {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.nav a {
	text-decoration: none;
	color: var(--text-main);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	border: 2px solid transparent;
	transition:
		background var(--transition-fast),
		color var(--transition-fast),
		border-color var(--transition-fast),
		transform var(--transition-fast);
}

.nav a:hover {
	background: #fff;
	border-color: rgba(123, 47, 247, 0.5);
	transform: translateY(-2px);
}

.nav a.active {
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
	color: #fff;
}

/* Mobile menu */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.6rem;
	cursor: pointer;
	color: var(--accent-purple);
}

/* MAIN LAYOUT */
main {
	padding: 2.2rem 1.6rem 3rem;
	max-width: 1120px;
	margin: 0 auto;
}

/* FULL HERO (HOME) */
.hero-full {
	position: relative;
	min-height: 90vh;
	width: 100%;
	border-radius: 24px;
	overflow: hidden;
	margin-top: 1.5rem;
	background-image: url("images/rimisha-hero.jpg"); /* your hero image */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Desktop: show more from centre towards the top */
@media (min-width: 992px) {
	.hero-full {
		min-height: 75vh;          /* a bit shorter so vertical photo fits better */
		background-position: 85% 25%;
	}
}

.hero-full-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(0, 0, 0, 0.75) 0%,
		rgba(0, 0, 0, 0.35) 40%,
		rgba(0, 0, 0, 0.1) 100%
	);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 2rem 2.2rem;
}

.hero-content {
	max-width: 480px;
	color: #f9fafb;
	animation: floatInUp 0.8s ease-out both;
}

.hero-tagline {
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.23em;
	color: #fbbf24;
	margin-bottom: 0.8rem;
}

.hero-title {
	font-size: clamp(2.4rem, 5vw, 3.3rem);
	font-weight: 900;
	line-height: 1.05;
	margin-bottom: 0.6rem;
}

.highlight {
	background: linear-gradient(130deg, #ff5ea8, #ffd45e);
	-webkit-background-clip: text;
	color: transparent;
}

.hero-subtitle {
	color: #e5e7eb;
	font-size: 0.95rem;
	max-width: 26rem;
	margin-bottom: 1.2rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

/* Buttons */
.primary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.85rem 1.7rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	box-shadow: 0 14px 40px rgba(123, 47, 247, 0.5);
	transition:
		transform var(--transition-med),
		box-shadow var(--transition-med),
		filter var(--transition-fast);
}

.primary-btn:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 20px 60px rgba(123, 47, 247, 0.7);
	filter: brightness(1.05);
}

.ghost-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.4rem;
	border-radius: 999px;
	border: 2px solid #fbbf24;
	color: #fefce8;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	background: transparent;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ghost-btn:hover {
	background: #fbbf24;
	color: #111827;
	transform: translateY(-2px);
}

/* Sections */
.section {
	margin-top: 2.4rem;
}

.section-title {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 0.4rem;
}

.section-subtitle {
	color: var(--text-muted);
	margin-top: 0.15rem;
	margin-bottom: 1.4rem;
	font-size: 0.95rem;
}

/* VIDEO SECTION */
.video-section {
	margin-top: 2.2rem;
}

.video-shell {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 22px;
	padding: 1.1rem 1.1rem 1.3rem;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
	border: 2px solid rgba(255, 148, 201, 0.8);
}

.video-shell .birthday-video,
.video-shell .video-wrapper iframe {
	width: 100%;
	border-radius: 16px;
}

/* Special layout for YouTube Short */
.video-shell--short {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  border: 2px solid rgba(255, 148, 201, 0.75);
  display: flex;
  justify-content: center;
}

.short-frame {
  width: min(320px, 100%);
  aspect-ratio: 9 / 16;          /* vertical phone shape */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  background: #000;
}

.short-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ABOUT SECTION (HOME + ABOUT PAGE) */
/* Wrap for about section to make it feel like a dedicated card */
.about-section {
	margin-top: 2.5rem;
	padding: 1.6rem 1.4rem 1.8rem;
	border-radius: 24px;
	background: linear-gradient(
		135deg,
		rgba(255, 243, 219, 0.9),
		rgba(255, 251, 243, 0.95)
	);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
	border: 1px solid rgba(255, 212, 94, 0.8);
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 1.4rem;
	margin-top: 1rem;
}

.about-main-card {
	background: #111827;
	color: #f9fafb;
	border-radius: 22px;
	padding: 1.4rem 1.5rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
	position: relative;
	overflow: hidden;
}

.about-main-card::after {
	content: "";
	position: absolute;
	right: -40px;
	bottom: -40px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: radial-gradient(circle, #ff5ea8, #ffd45e);
	opacity: 0.35;
}

.about-tag {
	display: inline-block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: #fbbf24;
	margin-bottom: 0.6rem;
}

.about-main-card h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.about-main-card p {
	font-size: 0.95rem;
	margin-bottom: 0.7rem;
}

.about-list {
	list-style: none;
	padding-left: 0;
	font-size: 0.9rem;
}

.about-list li {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 0.35rem;
}

.about-list li::before {
	content: "✶";
	position: absolute;
	left: 0;
	top: 0.1rem;
	color: #fbbf24;
	font-size: 0.7rem;
}

/* ABOUT PAGE HERO LAYOUT & IMAGE */
.about-page-hero .section-title {
	font-size: 1.8rem;
}

.about-hero-text {
	z-index: 1;
}

/* 3 small cards, centered on the page */
.about-hero-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	max-width: 720px;       /* keeps the whole row compact */
	margin: 1.4rem auto 0;  /* center horizontally */
	justify-items: center;  /* center each card in its grid cell */
}

.about-hero-card {
	background: linear-gradient(
    135deg,
    rgba(255, 243, 219, 0.9),
    rgba(255, 251, 243, 0.95)
  	);
	border-radius: 16px;
	padding: 0.7rem 0.7rem 0.6rem;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	max-width: 210px;       /* actual card width */
	width: 100%;
	transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.about-hero-card:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 20px 52px rgba(0, 0, 0, 0.45);
}

.about-hero-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.about-hero-card-label {
	margin-top: 0.4rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: #fee2ff;
	text-align: center;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
	padding: 0.22rem 0.7rem;
	border-radius: 999px;
	white-space: nowrap;
}

/* On mobile, stack cards */
@media (max-width: 768px) {
	/* 2 cards in a row on mobile */
	.about-hero-cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-width: 100%;
		gap: 0.7rem;
	}

	.about-hero-card {
		max-width: 120px;   /* smaller for mobile */
		padding: 0.55rem 0.55rem 0.45rem;
		
	}

	.about-hero-card-img {
		border-radius: 10px;
	}
}


/* subtle floating animation */
@keyframes floatSoft {
	0% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(-8px);
	}
}

/* Make about main card also float slightly */
.about-main-card {
	/* keep your existing styles; just add: */
	animation: floatInUp 0.7s ease-out both, floatSoft 5s ease-in-out infinite alternate;
}

/* Responsive: stack image under text on mobile */
@media (max-width: 768px) {
	.about-hero-layout {
		grid-template-columns: 1fr;
		text-align: left;
	}
	.about-hero-image-wrap {
		justify-self: flex-start;
	}
}

/* Right side stack */
.about-side-stack {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.about-card {
	background: #fff;
	border-radius: 18px;
	padding: 0.9rem 1rem;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(255, 212, 94, 0.7);
	font-size: 0.9rem;
}

.about-card.small {
	min-height: 90px;
}

.about-card.long {
	min-height: 110px;
}

.about-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #6b7280;
	margin-bottom: 0.35rem;
}

/* About page small hero */
.about-page-hero .section-title {
	font-size: 1.8rem;
}

/* About page: fun stat chips row */
.about-stats-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.8rem;
}

.about-stat-chip {
	padding: 0.25rem 0.7rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.9);
	border: 1px dashed rgba(123, 47, 247, 0.45);
	color: #4b5563;
}

/* Small mood grid under the main cards */
.about-mood-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.6rem;
	margin-top: 0.4rem;
}

.about-mood-card {
	background: #fff;
	border-radius: 14px;
	padding: 0.55rem 0.65rem;
	font-size: 0.8rem;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* Small “memory tags” row below the grid */
.about-memory-tags {
	margin-top: 1.1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.about-tag-pill {
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	background: rgba(255, 148, 201, 0.12);
	border: 1px solid rgba(255, 148, 201, 0.7);
	font-size: 0.75rem;
	color: #7b2f57;
}

/* Slight hover for side cards */
.about-card,
.about-mood-card {
	transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
.about-card:hover,
.about-mood-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Responsive tweak: stack mood grid nicely on mobile */
@media (max-width: 768px) {
	.about-mood-grid {
		grid-template-columns: 1fr;
	}
}

/* RANDOM MEMORY + WISH */
.memory-wish-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
	gap: 1.3rem;
	margin-top: 1rem;
}

.memory-card,
.wish-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 18px;
	padding: 1.1rem 1.1rem 1.2rem;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(255, 212, 94, 0.8);
}

.memory-card h3,
.wish-card h3 {
	margin-bottom: 0.6rem;
}

.memory-text {
	margin-bottom: 0.8rem;
	font-size: 0.95rem;
	color: #111827;
}

.memory-btn {
	margin-top: 0.2rem;
	font-size: 0.85rem;
}

/* Wish form */
.wish-input,
.wish-textarea {
	width: 100%;
	border-radius: 12px;
	border: 1px solid rgba(209, 213, 219, 0.9);
	padding: 0.55rem 0.7rem;
	font-size: 0.85rem;
	margin-bottom: 0.5rem;
	font-family: inherit;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wish-input:focus,
.wish-textarea:focus {
	border-color: #7b2ff7;
	box-shadow: 0 0 0 1px rgba(123, 47, 247, 0.3);
}

.wish-btn {
	margin-top: 0.1rem;
	font-size: 0.85rem;
}

.wish-hint {
	font-size: 0.8rem;
	color: #6b7280;
	margin-top: 0.4rem;
}

/* TICKER SECTION */
.wish-ticker-section {
	margin-top: 1.8rem;
}

/* Outer bar */
.wish-ticker {
	position: relative;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.95);
	border: 2px solid rgba(255, 212, 94, 0.9);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
	padding: 0.6rem 0;
}

/* Inner scrolling line */
.wish-ticker-inner {
	display: inline-block;
	white-space: nowrap;
	color: #fefce8;
	font-size: 0.95rem;
	font-weight: 600;
	animation: wishScroll 20s linear infinite;
}

/* A single wish pill in the ticker */
.wish-ticker-name {
	margin: 0 1.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.wish-ticker-bullet {
	color: #fbbf24;
}

@keyframes wishScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* COUNTDOWN */
.countdown {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.8rem;
}

.countdown-item {
	min-width: 70px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	padding: 0.5rem 0.6rem;
	text-align: center;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(255, 148, 201, 0.7);
}

.count-value {
	display: block;
	font-size: 1.3rem;
	font-weight: 800;
}

.count-label {
	display: block;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: #6b7280;
}

/* NOTES PAGE (photo hover) */
.notes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.5rem;
	margin-top: 1.7rem;
}

.note-card {
	position: relative;
	border-radius: var(--card-radius-lg);
	overflow: hidden;
	background: #000;
	box-shadow: var(--shadow);
	cursor: pointer;
	transform-origin: center;
	transition:
		transform var(--transition-med),
		box-shadow var(--transition-med),
		filter var(--transition-fast);
}

.note-photo {
	width: 100%;
	aspect-ratio: 1 / 1;   /* keep it square */
	object-fit: cover;
	display: block;
	filter: brightness(0.9) saturate(1.3);
	transition:
		filter var(--transition-fast),
		transform var(--transition-med),
		opacity var(--transition-fast);
}

.note-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 1.4rem;
	/* more transparent so the photo shows through while scrolling */
	background: linear-gradient(
		145deg,
		rgba(123, 47, 247, 0.55),
		rgba(255, 94, 168, 0.55)
	);
	color: #fff;
	opacity: 0;
	transform: translateY(15%);
	transition:
		opacity var(--transition-med),
		transform var(--transition-med);
	overflow-y: auto;
	max-height: 100%;
}

/* optional: softer, minimal scrollbar on desktop */
.note-overlay::-webkit-scrollbar {
	width: 6px;
}
.note-overlay::-webkit-scrollbar-track {
	background: transparent;
}
.note-overlay::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.35);
	border-radius: 999px;
}

.note-from {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #ffe3f0;
	margin-bottom: 0.55rem;
}

.note-text {
	font-size: 0.95rem;
	line-height: 1.6;
	margin-top: 0.2rem;
}

.note-pill {
	position: absolute;
	top: 0.8rem;
	right: 0.9rem;
	padding: 0.2rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--accent-purple);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.note-card::before,
.note-card::after {
	content: "🎈";
	position: absolute;
	font-size: 1.4rem;
	opacity: 0.8;
	transform: translateY(-8px);
}

.note-card::before {
	left: 0.7rem;
	top: 0.6rem;
}

.note-card::after {
	right: 0.7rem;
	bottom: 0.5rem;
}

.note-card:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 26px 65px rgba(0, 0, 0, 0.4);
}

.note-card:hover .note-photo {
	filter: brightness(0.5) blur(2px);
	transform: scale(1.07);
}

.note-card:hover .note-overlay {
	opacity: 1;
	transform: translateY(0);
}

/* GALLERY */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1rem;
	margin-top: 1.6rem;
}

.gallery-item {
	width: 100%;
	height: 190px;
	object-fit: cover;
	border-radius: var(--card-radius-md);
	cursor: pointer;
	transition:
		transform var(--transition-med),
		box-shadow var(--transition-med),
		filter var(--transition-fast);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.gallery-item:hover {
	transform: translateY(-5px) rotate(-1.5deg) scale(1.03);
	filter: brightness(1.08) saturate(1.2);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* LIGHTBOX */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(10px);
	align-items: center;
	justify-content: center;
	z-index: 50;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--card-radius-md);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
}

/* MUSIC TOGGLE */
.music-toggle {
	position: fixed;
	right: 1.2rem;
	bottom: 1.2rem;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: none;
	background: radial-gradient(circle at 30% 30%, #ffd45e, #ff5ea8);
	color: #fff;
	font-size: 1.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.15s ease;
	z-index: 40;
}

.music-toggle:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
	filter: brightness(1.05);
}

.music-toggle.active {
	box-shadow: 0 0 0 4px rgba(255, 148, 201, 0.6);
}

/* BALLOONS */
.balloons-container {
	position: fixed;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.balloon {
	position: absolute;
	bottom: -120px;
	font-size: 2.2rem;
	animation: rise 12s linear infinite;
	opacity: 0.85;
}

@keyframes rise {
	from {
		transform: translateY(0) translateX(0);
	}
	to {
		transform: translateY(-120vh) translateX(-10px);
	}
}

/* FOOTER */
.site-footer {
	text-align: center;
	color: var(--text-muted);
	font-size: 0.85rem;
	padding: 1.6rem 0 1.8rem;
}

.site-footer::before {
	content: "✧ ✺ ✦";
	display: block;
	margin-bottom: 0.5rem;
	color: var(--accent-pink);
}

/* ANIMATIONS */
@keyframes floatInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.hero-full-overlay {
		padding: 1.6rem 1.4rem;
		align-items: flex-end;
	}
	.hero-content {
		max-width: 100%;
	}

	main {
		padding-inline: 1.1rem;
	}

	.nav {
		position: absolute;
		top: 62px;
		right: 1.2rem;
		flex-direction: column;
		background: #fffbf3;
		padding: 0.6rem 0.75rem;
		border-radius: 16px;
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
		border: 2px solid rgba(255, 148, 201, 0.7);
		display: none;
	}

	.nav.open {
		display: flex;
	}

	.menu-toggle {
		display: block;
	}

	.about-grid,
	.memory-wish-layout {
		grid-template-columns: 1fr;
	}
}

/* CANDLES MINI GAME */
.candles-game {
	display: flex;
	gap: 0.8rem;
	margin-top: 0.8rem;
	font-size: 2.2rem;
	cursor: pointer;
}

.candle {
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
	transition: transform 0.15s ease, filter 0.15s ease, opacity 0.15s ease;
}

.candle:hover {
	transform: translateY(-4px) scale(1.1);
}

.candle.extinguished {
	opacity: 0.35;
	filter: grayscale(1);
}

.candles-message {
	margin-top: 0.6rem;
	font-size: 0.9rem;
	color: var(--text-muted);
}


/* STAR BURST ON LOAD */
.star-burst {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	pointer-events: none;
	z-index: 2;
}

.star {
	position: absolute;
	top: -20px;
	font-size: 1.4rem;
	animation: starDrop 1.2s ease-out forwards;
}

@keyframes starDrop {
	0% {
		transform: translateY(0) scale(0.9);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translateY(120px) scale(1.1);
		opacity: 0;
	}
}
