/* GT Apparelss — essential custom styles (Tailwind handles layout) */

:root {
	--brand-900: #0f172a;
	--brand-800: #1e293b;
	--brand-accent: #c9a227;
}

::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
	background: var(--brand-800);
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--brand-900);
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-text {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: bold;
	color: var(--brand-900);
	position: relative;
	overflow: hidden;
}

.loader-text::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--brand-accent);
	transform: translateX(-100%);
	animation: loadLine 1.5s ease-in-out forwards;
}

@keyframes loadLine {
	100% {
		transform: translateX(0);
	}
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
	opacity: 1;
	transform: translateY(0);
}
.reveal-delay-100 {
	transition-delay: 0.1s;
}
.reveal-delay-200 {
	transition-delay: 0.2s;
}
.reveal-delay-300 {
	transition-delay: 0.3s;
}
.reveal-delay-400 {
	transition-delay: 0.4s;
}

.slide-active .slide-bg {
	animation: zoomIn 20s linear infinite;
}
.slide-content-enter {
	animation: fadeInUp 1s ease-out forwards;
}
.modal-enter {
	animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

@keyframes zoomIn {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}

@keyframes modalPop {
	0% {
		opacity: 0;
		transform: scale(0.95);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.hover-lift {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Legal / inner pages */
.legal-content h2 {
	margin-top: 2.5rem;
	margin-bottom: 1rem;
}
.legal-content ul {
	list-style: disc;
	padding-left: 1.25rem;
	margin-bottom: 1.25rem;
}
.legal-content li {
	margin-bottom: 0.5rem;
}
.legal-content a {
	color: #2563eb;
	text-decoration: underline;
}
.legal-content a:hover {
	color: var(--brand-accent);
}
