@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400..700;1,400..700&family=Jost:wght@200..600&family=Great+Vibes&display=swap');

:root {
	--ivory: #fdfbf7;
	--cream: #f6efe6;
	--gold: #c9a86a;
	--gold-soft: rgba(201, 168, 106, 0.16);
	--ink: #4a3f35;
	--ink-soft: #7a6f63;
}

body {
	-webkit-tap-highlight-color: transparent;
}

/* ---- Scroll animations ---- */
.animate-item {
	opacity: 0;
}

/* ---- Ivory lines & decorative elements ---- */
.ivory-line {
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---- Music Button ---- */
@keyframes spinSlow {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.animate-spin-slow {
	animation: spinSlow 6s linear infinite;
}

.music-paused {
	animation-play-state: paused;
}

/* ---- Reveal cover helper ---- */
.hidden {
	display: none !important;
}

/* ---- Galeri slider ---- */
.gallery-slide {
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-thumb {
	transition: opacity 0.3s ease, border-color 0.3s ease;
}

/* ---- Countdown boxes ---- */
.countdown-box {
	background: rgba(253, 251, 247, 0.85);
	border: 1px solid var(--gold);
	border-radius: 0.75rem;
	min-width: 4.25rem;
}

/* ---- Hide scrollbar ---- */
.no-scrollbar::-webkit-scrollbar {
	display: none;
}
.no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}
