/* SuperJeux FR - Custom Styles */

:root {
	--sj-primary-blue: #1e40af;
	--sj-secondary-blue: #3b82f6;
	--sj-accent-amber: #f59e0b;
	--sj-dark-navy: #0f172a;
	--sj-light-blue: #60a5fa;
	--sj-gradient-start: #1e3a8a;
	--sj-gradient-end: #3b82f6;
}

/* Typography */
.superjeux-heading {
	font-family: 'Inter', sans-serif;
	font-weight: 800;
}

.superjeux-body {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}

/* Background Components */
.blue-gradient-main {
	background: linear-gradient(135deg, var(--sj-gradient-start) 0%, var(--sj-gradient-end) 100%);
}

.amber-gradient-accent {
	background: linear-gradient(135deg, var(--sj-accent-amber) 0%, #f97316 100%);
}

.hero-section-overlay {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 0.90) 100%);
}

/* Text Effects */
.blue-text-gradient {
	background: linear-gradient(135deg, var(--sj-primary-blue) 0%, var(--sj-secondary-blue) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Interactive Components */
.hoverable-card {
	transition: all 0.3s ease-in-out;
}

.hoverable-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* Visual Effects */
.shadow-glow-blue {
	box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
}

/* Utility Classes */
.border-radius-modern {
	border-radius: 16px;
}

.border-radius-large {
	border-radius: 24px;
}

/* New Visual Systems */
.glass-surface {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.gradient-border {
	position: relative;
	border-radius: 20px;
}
.gradient-border::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: 22px;
	padding: 1px;
	background: linear-gradient(135deg, #60a5fa, #f59e0b, #8b5cf6);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.soft-shadow {
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
}

.angled-section {
	position: relative;
}
.angled-section::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -60px;
	height: 120px;
	background: inherit;
	transform: skewY(-5deg);
	transform-origin: 100% 0;
}

.blob-layer {
	position: absolute;
	filter: blur(50px);
	opacity: 0.35;
}

.pill-button {
	border-radius: 9999px;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 0.9rem;
	padding-bottom: 0.9rem;
	font-weight: 800;
}

.icon-ring {
	position: relative;
}
.icon-ring::after {
	content: "";
	position: absolute;
	width: 54px;
	height: 54px;
	border-radius: 9999px;
	border: 2px dashed rgba(255, 255, 255, 0.4);
	left: -6px;
	top: -6px;
}

.pattern-dots {
	background-image: radial-gradient(currentColor 1px, transparent 1px);
	background-size: 16px 16px;
	opacity: 0.12;
}

.split-card {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}
.split-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.0) 40% 60%, rgba(0,0,0,0.08) 100%);
}

/* Radical New Styles */
.diagonal-section {
	position: relative;
	overflow: hidden;
}
.diagonal-section::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 120px;
	background: inherit;
	top: -60px;
	left: 0;
	transform: skewY(-3deg);
	z-index: 0;
}
.diagonal-section::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 120px;
	background: inherit;
	bottom: -60px;
	left: 0;
	transform: skewY(3deg);
	z-index: 0;
}

.timeline-item {
	position: relative;
	padding-left: 3rem;
}
.timeline-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6, #f59e0b);
	border: 4px solid white;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}
.timeline-item::after {
	content: "";
	position: absolute;
	left: 9px;
	top: 20px;
	width: 2px;
	height: calc(100% + 1rem);
	background: linear-gradient(180deg, #3b82f6, transparent);
}
.timeline-item:last-child::after {
	display: none;
}

.testimonial-card {
	position: relative;
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.testimonial-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.testimonial-card::before {
	content: """;
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 80px;
	color: rgba(59, 130, 246, 0.1);
	font-family: Georgia, serif;
}

.card-rotate-left {
	transform: rotate(-2deg);
	transition: transform 0.3s;
}
.card-rotate-left:hover {
	transform: rotate(0deg) scale(1.05);
}

.card-rotate-right {
	transform: rotate(2deg);
	transition: transform 0.3s;
}
.card-rotate-right:hover {
	transform: rotate(0deg) scale(1.05);
}

.scroll-x-container {
	scroll-snap-type: x mandatory;
	overflow-x: auto;
	scrollbar-width: thin;
}
.scroll-x-item {
	scroll-snap-align: start;
	flex-shrink: 0;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.3s; }

@media (prefers-reduced-motion: no-preference) {
	.stagger-animation > * {
		animation: fadeInUp 0.6s ease-out forwards;
		opacity: 0;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

