/* Parizium - Premium Dark Theme with Gold Accents */

:root {
	--prz-dark: #0a0e1a;
	--prz-darker: #050810;
	--prz-gold: #d4af37;
	--prz-light-gold: #f4e4a6;
	--prz-amber: #ffb800;
	--prz-slate: #1e293b;
	--prz-blue-gray: #334155;
}

/* Typography */
.parizium-heading {
	font-family: 'Inter', sans-serif;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.parizium-body {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	background: var(--prz-dark);
}

/* 18+ Warning Banner */
.age-warning-banner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
	color: white;
	padding: 0.75rem 0;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
	border-bottom: 3px solid var(--prz-gold);
}

.age-warning-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.age-warning-icon {
	width: 48px;
	height: 48px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	color: #dc2626;
	font-size: 1.25rem;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.age-warning-text {
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
}

body.has-warning-banner {
	padding-top: 80px;
}

/* Premium Gold Gradient */
.gold-gradient {
	background: linear-gradient(135deg, var(--prz-gold) 0%, var(--prz-amber) 100%);
}

.dark-card {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(212, 175, 55, 0.2);
	padding: 2rem;
	border-radius: 20px;
	transition: all 0.3s;
}

.dark-card:hover {
	border-color: var(--prz-gold);
	box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

/* Shine Effect */
.shine-effect {
	position: relative;
	overflow: hidden;
}

.shine-effect::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.1) 50%,
		transparent 70%
	);
	animation: shine 3s infinite;
}

@keyframes shine {
	0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
	100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Diamond Icon Shape */
.diamond-icon {
	position: relative;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--prz-gold), var(--prz-amber));
	transform: rotate(45deg);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.diamond-icon i {
	transform: rotate(-45deg);
	color: var(--prz-dark);
	font-size: 2rem;
}

/* Premium Card */
.premium-card {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
	border-radius: 24px;
	padding: 2.5rem;
	border: 1px solid rgba(212, 175, 55, 0.3);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.premium-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--prz-gold), var(--prz-amber), var(--prz-gold));
	transform: scaleX(0);
	transition: transform 0.4s;
}

.premium-card:hover::after {
	transform: scaleX(1);
}

.premium-card:hover {
	transform: translateY(-8px);
	border-color: var(--prz-gold);
	box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

/* Stats Card */
.stats-card {
	background: rgba(212, 175, 55, 0.1);
	border: 2px solid rgba(212, 175, 55, 0.3);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s;
}

.stats-card:hover {
	background: rgba(212, 175, 55, 0.15);
	border-color: var(--prz-gold);
	transform: scale(1.05);
}

/* Testimonial Card with Gold Accent */
.testimonial-premium {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
	border-radius: 24px;
	padding: 2rem;
	border-left: 4px solid var(--prz-gold);
	position: relative;
	transition: all 0.3s;
}

.testimonial-premium:hover {
	border-left-width: 8px;
	box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.testimonial-premium::before {
	content: '❝';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 80px;
	color: var(--prz-gold);
	opacity: 0.2;
	font-family: Georgia, serif;
}

/* Premium Button */
.btn-premium {
	background: linear-gradient(135deg, var(--prz-gold) 0%, var(--prz-amber) 100%);
	color: var(--prz-dark);
	font-weight: 800;
	padding: 1.25rem 3rem;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
	transition: all 0.3s;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.btn-premium:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
	border-color: var(--prz-light-gold);
}

/* Step Timeline */
.timeline-step {
	position: relative;
	padding-left: 5rem;
	padding-bottom: 3rem;
}

.timeline-step::before {
	content: '';
	position: absolute;
	left: 2rem;
	top: 3rem;
	bottom: -1rem;
	width: 2px;
	background: linear-gradient(180deg, var(--prz-gold), transparent);
}

.timeline-step:last-child::before {
	display: none;
}

.timeline-step-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 4rem;
	height: 4rem;
	background: linear-gradient(135deg, var(--prz-gold), var(--prz-amber));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--prz-dark);
	box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
	z-index: 1;
}

/* FAQ Accordion Premium */
.accordion-premium {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
	border-radius: 16px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(212, 175, 55, 0.2);
	transition: all 0.3s;
}

.accordion-premium:hover {
	border-color: var(--prz-gold);
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 1) 100%);
}

/* Grid Pattern Overlay */
.premium-grid-overlay {
	background-image: 
		linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
}

/* Glow Effect */
.glow-gold {
	box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Contact Icon Premium */
.contact-icon-premium {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--prz-gold), var(--prz-amber));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: all 0.3s;
	position: relative;
}

.contact-icon-premium:hover {
	transform: rotate(5deg) scale(1.1);
	box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
}

.contact-icon-premium i {
	font-size: 2rem;
	color: var(--prz-dark);
}

/* Animated Background Particles */
.particles-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--prz-gold);
	border-radius: 50%;
	opacity: 0.3;
	animation: float 20s infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) translateX(0);
		opacity: 0;
	}
	10%, 90% {
		opacity: 0.3;
	}
	50% {
		transform: translateY(-100vh) translateX(50px);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.diamond-icon {
		width: 60px;
		height: 60px;
	}
	
	.timeline-step {
		padding-left: 4rem;
	}
	
	.timeline-step-number {
		width: 3rem;
		height: 3rem;
		font-size: 1.25rem;
	}

	.age-warning-text {
		font-size: 0.85rem;
	}

	.age-warning-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	body.has-warning-banner {
		padding-top: 70px;
	}
}

/* Text Shadows for Dark Theme */
.text-gold-glow {
	text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Premium Section Divider */
.section-divider {
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--prz-gold), transparent);
	margin: 4rem 0;
}

