/* style.css */
@font-face {
	font-family: 'Meriva';
	src: url('../fonts/meriva/meriva.otf') format('opentype'),
		url('../fonts/meriva/meriva.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* ==========================
   Variables
========================== */
:root {
	/* DARK */
	--color-black: #000000;
	--color-primary: #0f192f;
	--color-accent: #fca311;
	--color-neutral-300: #e5e5e5;
	--color-neutral-100: #ffffff;

	--color-header-bg: rgba(20, 33, 61, 0.2);
	--shadow-elevated: 0 20px 40px rgba(20, 33, 61, 0.15);

	--font-family-base: 'Inter Tight', sans-serif;
	--font-family-logo: 'Meriva', 'Inter', Tahoma, Geneva, Verdana, sans-serif;

	--navbar-height: 80px;
	--radius-sm: 24px;
	--radius-full: 100px;
	--transition-base: 0.5s ease;
	--gap-md: 1rem;
	--container-max-width: 1240px;
	--backdrop-blur: 6px;
}

/* ==========================
   Global
========================== */
* {
	box-sizing: border-box;
	/* outline: 1px solid red; */
}
html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-family-base);
	background-color: var(--color-primary);
	color: var(--color-neutral-300);
	font-size: 18px;
	padding-top: var(--navbar-height);
	font-weight: 300;
	overflow-x: hidden;
}

h1,
h2,
h3 {
	margin: 0;
	font-weight: 500;
	letter-spacing: -0.5px;
}

h1 {
	font-size: 3.5rem;
}

h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 2rem;
}

a {
	color: var(--color-neutral-300);
	text-decoration: none;
}

strong {
	font-weight: 600;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	filter: blur(0);
	transition: filter 0.4s ease;
}

img[data-loaded='true'] {
	filter: blur(0);
}

section {
	margin-bottom: 6rem;
	scroll-margin-top: var(--navbar-height);
	z-index: 1;
}

a,
button,
img,
.service-item,
.pill,
.hero-img-container img {
	transition: var(--transition-base);
}

/* Ligne décorative */
.projects-underline,
.services-underline,
.process-underline {
	width: 140px;
	height: 2px;
	background: rgba(255, 255, 255, 0.07);
	transition: width 0.4s ease, background 0.4s ease;
	margin-top: 0.2rem;
}

/* GROS NUMÉRO */
.service-number,
.project-number {
	font-size: 2.5rem;
	font-weight: 600;
	opacity: 0.2;
	color: var(--color-neutral-300);
	min-width: 50px;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-item:hover .service-number,
.project-item:hover .project-number {
	opacity: 0.4;
	transform: translateX(4px);
}

/* TITRE */
.service-content h3,
.project-content h3 {
	margin: 0 0 0.6rem 0;
	font-size: 1.6rem;
	font-weight: 500;
}

/* ==========================
   Header / Navbar
========================== */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--navbar-height);
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-header-bg);
	backdrop-filter: blur(var(--backdrop-blur));
	z-index: 100;
}
.navbar {
	width: 100%;
	max-width: var(--container-max-width);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1.5rem;
}

.logo a {
	font-family: var(--font-family-logo);
	font-size: 2rem;
	letter-spacing: 1px;
	letter-spacing: -0.5px;
	color: var(--color-neutral-300);
}

.menu {
	display: flex;
	align-items: center;
	gap: var(--gap-md);
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu li a {
	font-weight: 300;
	position: relative;
}

.menu li a:hover {
	color: var(--color-accent);
}

.menu li a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0%;
	height: 2px;
	background: var(--color-accent);
	transition: width 0.3s ease;
}

.menu li a:hover::after {
	width: 100%;
}

.navbar .menu {
	display: flex;
	align-items: center;
	gap: var(--gap-md);
	margin: 0;
	margin-left: auto;
	padding: 0;
	height: 100%;
}

.navbar .menu li {
	list-style: none;
}

.navbar .menu li a {
	color: #fff;
}

.menu_toggle {
	display: none;
}

/* ==========================
Buttons
========================== */
.button {
	font-size: clamp(0.9rem, 1vw + 0.6rem, 1rem);
	color: var(--color-primary);
	background-color: var(--color-accent);
	padding: 0.8rem 1.5rem;
	border-radius: var(--radius-full);
	border: 2px solid transparent;
	text-align: center;
}

.button:hover {
	color: var(--color-accent);
	background-color: var(--color-primary);
	border-color: var(--color-accent);
}

.menu-buttons {
	margin-left: 3rem;
}

/* ==========================
Mobile menu
========================== */
.menu_toggle {
	display: none;
	width: 28px;
	height: 22px;
	position: relative;
	cursor: pointer;
}

.menu_toggle::before,
.menu_toggle::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 4px;
	background: #fff;
	border-radius: 5px;
	transition: 0.4s;
}

.menu_toggle::before {
	top: 0;
	box-shadow: 0 9px #fff;
}

.menu_toggle::after {
	transform: translateY(-9px);
	bottom: 0;
}

.menu_toggle.active::before {
	transform: rotate(45deg);
	top: 9px;
	box-shadow: none;
}

.menu_toggle.active::after {
	transform: rotate(-45deg);
	bottom: 9px;
}

/* ==========================
   Sections
========================== */
section.full-screen {
	/* height: 100vh; */
	top: 0;
	margin-top: 0;
	z-index: 3;
}
.container {
	width: 100%;
	max-width: var(--container-max-width);
	padding-left: clamp(1rem, 6vw, 3rem);
	padding-right: clamp(1rem, 6vw, 3rem);
	margin: 0 auto;
	z-index: 2;
}

img.background-mesh {
	object-fit: cover;
	object-position: 50% 0%;
	position: absolute;
	inset: 0%;
}

/* ===== Hero ===== */
section.hero {
	min-height: calc(100vh - 100px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 3rem;
	width: 100%;
}

.hero-img-container {
	display: flex;
	flex: 2;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	/* outline: 1px solid var(--color-accent); */
	border-radius: var(--radius-sm);
	box-shadow: 0 0 20px rgba(252, 163, 17, 0.15);
}

.hero-img-container img {
	transition: transform 0.5s ease;
}
.hero-img-container:hover img {
	transform: scale(1.02);
}

.hero-text-container {
	flex: 3;
}

.hero-text-container p {
	color: var(--color-neutral-300);
	max-width: 55ch;
	font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
	line-height: 1.6;
}

.hero-text-container .hero-button {
	margin-top: 3.5rem;
}

/* ===== About ===== */
.about {
	position: relative;
}

.about-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 3.5rem;
}

.about-img-container {
	flex: 1;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	padding-left: 2rem;
}

.about-img-container h2 {
	margin-top: 1rem;
}

.about-text-container {
	flex: 2;
}

.about-text-container p {
	font-size: clamp(0.8rem, 2vw + 0.5rem, 1.2rem);
	line-height: 1.6;
}

.about-button {
	margin-top: 4rem;
}

.about-social-container {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.about-social-container a {
	border: 1px solid var(--color-neutral-300);
	border-radius: var(--radius-full);
	background-color: var(--color-primary);
	padding: 0.5rem;
	transition: border-color var(--transition-base),
		background-color var(--transition-base), color var(--transition-base);
}

.about-social-container a:hover {
	border: 1px solid var(--color-accent);
	background-color: var(--color-accent);
	color: var(--color-primary);
	box-shadow: 0 0 12px var(--color-accent);
	transition: 0.2s ease;
	transform: translateY(-2px);
}

.bg-blur {
	position: absolute;
	top: 20%;
	left: 25%;
	width: 400px;
	height: 300px;
	background: var(--color-accent);
	filter: blur(140px);
	opacity: 0.18;
	border-radius: 50%;
	z-index: -1;
	pointer-events: none;
}

.bg-blur-right {
	left: auto;
	right: 20%;
}

/* ===== Skills ===== */
.skills {
	position: relative;
}

.skills-container {
	display: flex;
	flex-direction: column;
	margin-top: 7rem;
	margin-bottom: 7rem;
}

.skills-header {
	width: 100%;
	margin-bottom: 2.5rem;
}

.skills-subtitle {
	margin-top: 0.75rem;
	color: rgba(229, 229, 229, 0.75);
	max-width: 60ch;
}

.skills-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.skill-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-sm);
	padding: 1.75rem;
	box-shadow: var(--shadow-elevated);
	transition: transform 0.25s ease, box-shadow 0.25s ease,
		border-color 0.25s ease, background 0.25s ease;
	display: flex;
	flex-direction: column;
	min-height: 320px;
}

.skill-card:hover {
	transform: translateY(-4px);
	border-color: rgba(252, 163, 17, 0.45);
	box-shadow: 0 18px 38px rgba(252, 163, 17, 0.12);
	background: rgba(255, 255, 255, 0.05);
}

.skill-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	margin-bottom: 1rem;
	font-size: 1.25rem;
	color: var(--color-primary);
	background: var(--color-accent);
	box-shadow: 0 6px 18px rgba(252, 163, 17, 0.35);
}

.skill-title {
	font-size: 1.5rem;
	color: var(--color-neutral-100);
	margin: 0.25rem 0 0.35rem 0;
	letter-spacing: -0.2px;
}

.skill-desc {
	color: rgba(229, 229, 229, 0.8);
	margin: 0 0 1rem 0;
	line-height: 1.5;
	font-size: 1rem;
}

.skill-list {
	margin: 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.4rem;
}

.skill-list li {
	color: var(--color-neutral-300);
}

/* ===== Projects ===== */
.projects {
	position: relative;
}

.projects-container {
	display: flex;
	flex-direction: column;
	margin-top: 5rem;
	margin-bottom: 5rem;
}

.projects-header {
	margin-bottom: 3rem;
}

.projects-header h2 {
	font-size: 2.6rem;
	font-weight: 500;
	letter-spacing: -1px;
	color: var(--color-neutral-100);
	margin-bottom: 0.7rem;
	position: relative;
	display: inline-block;
}

.projects-header p {
	max-width: 60ch;
	opacity: 0.7;
	line-height: 1.6;
	margin-bottom: 1.2rem;
	color: var(--color-neutral-300);
}

/* Hover micro-motion */
.projects-header:hover .projects-underline {
	width: 220px;
	background: var(--color-accent);
}

.project-item {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 2rem;
	padding: 2.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	transition: 0.3s ease;
}

.project-arrow {
	margin-left: auto;
	font-size: 1.6rem;
	opacity: 0.4;
	transition: 0.3s ease;
}

.project-item:hover {
	color: var(--color-accent);
}

.project-item:hover .project-arrow {
	opacity: 1;
	transform: translateX(6px);
}

/* Container image reveal */
.project-preview {
	position: absolute;
	right: 2rem;
	top: 50%;
	width: auto;
	height: 200px;
	transform: translateY(-50%) scale(0.9);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease, transform 0.4s ease;
	filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.45));
	z-index: -1;
	will-change: transform, opacity;
}

.project-preview img {
	height: 100%;
	border-radius: 14px;
}

/* Reveal au hover */
.project-item:hover .project-preview {
	opacity: 1;
	transform: translateY(-50%) scale(1);
	z-index: 2;
}

/* ===== Ma methode ===== */
.process {
	position: relative;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	/* border-radius: var(--radius-sm); */
	padding: 1.75rem;
}

.process-container {
	margin-top: 7rem;
	margin-bottom: 7rem;
	display: flex;
	flex-direction: column;
}

.process-header {
	margin-bottom: 3rem;
}

/* Hover micro-motion */
.process-header:hover .process-underline {
	width: 220px;
	background: var(--color-accent);
}

.process-header p {
	max-width: 55ch;
	opacity: 0.7;
	line-height: 1.6;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
}

.step {
	padding: 1.5rem 1rem;
	border-left: 1px solid rgba(255, 255, 255, 0.06);
	transition: 0.3s ease;
}

.step:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.step-number {
	font-size: 1.6rem;
	opacity: 0.35;
	display: block;
	margin-bottom: 0.6rem;
	transition: 0.3s ease;
}

.step:hover .step-number {
	opacity: 0.65;
	transform: translateX(3px);
}

/* ===== Expertises/Services ===== */
.services {
	position: relative;
}

.services-container {
	display: flex;
	flex-direction: column;
	margin-top: 7rem;
	margin-bottom: 7rem;
}

.services-header {
	margin-bottom: 3rem;
}

.services-header p {
	max-width: 60ch;
	opacity: 0.8;
	line-height: 1.6;
}

/* Hover micro-motion */
.services-header:hover .services-underline {
	width: 220px;
	background: var(--color-accent);
}

/* ITEM */
.service-item {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 2rem;
	padding: 2.5rem 0;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	transition: color 0.4s ease;
}

.service-item:hover {
	color: var(--color-accent);
}

/* PARAGRAPHE */
.service-content p {
	margin: 0;
	opacity: 0.7;
	max-width: 50ch;
	line-height: 1.5;
}

/* afficher la ligne flottante */
.service-item::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0%;
	height: 2px;
	background: var(--color-accent);
	transition: width 0.4s ease;
}

.service-item:hover::after {
	width: 100%;
}

.service-item:hover .service-number {
	opacity: 0.45;
	transform: translateX(8px);
}

.service-item:hover h3 {
	text-shadow: 0 0 6px rgba(252, 163, 17, 0.3);
}

/* Extra area (icon + tags) */
.service-extra {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	opacity: 0.6;
	transform: translateX(20px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Tags style */
.service-extra .tags {
	font-size: 0.85rem;
	opacity: 0.8;
	letter-spacing: -0.2px;
}

.service-item:hover .tags {
	color: var(--color-accent);
}

.pill {
	cursor: pointer;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.2rem 0.8rem;
	border-radius: 16px;
	font-size: 0.7rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	opacity: 0.85;
	transform: scale(1);
}

.service-item:hover .pill {
	border-color: var(--color-accent);
	color: var(--color-accent);
	opacity: 1;
}

.service-item:hover .service-extra {
	opacity: 1;
	transform: translateX(0);
}

/* ===== Contact ===== */
.contact {
	position: relative;
	margin-bottom: 1.5rem;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 0.75fr;
	gap: 1.5rem;
	align-items: stretch;
	padding: 0;
}

.contact-left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 5rem 5rem;
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-sm);
}

.contact-left h2 {
	font-size: 3.5rem;
	line-height: 1.1;
	margin-bottom: 1.2rem;
}

.contact-left p {
	max-width: 46ch;
	opacity: 0.75;
	line-height: 1.6;
	margin-bottom: 1.8rem;
}

.availability {
	margin-bottom: 1.5rem;
	opacity: 0.85;
	font-size: 0.95rem;
}

.dot {
	width: 8px;
	height: 8px;
	display: inline-block;
	background: #44e07a;
	border-radius: 50%;
	margin-right: 0.35rem;
	position: relative;
	animation: pulse 1.8s ease-in-out infinite;
	animation-delay: 0.2s;
}

/* ===== Aniner le petit point ===== */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(68, 224, 122, 0.6);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(68, 224, 122, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(68, 224, 122, 0);
	}
}

.contact-actions {
	display: flex;
	gap: 1rem;
	justify-content: flex-start;
	margin-top: 2.5rem;
}

.contact-actions .button i {
	margin-right: 0.6rem;
	font-size: 1rem;
	vertical-align: middle;
}

.contact-actions .button:hover i {
	transform: translateX(2px);
	transition: 0.5s ease;
}

.contact-actions .ghost {
	background: transparent;
	color: var(--color-accent);
	border: 2px solid var(--color-accent);
}

.contact-actions .ghost:hover {
	background: var(--color-accent);
	color: var(--color-primary);
}

/* ===== Right block ===== */
.contact-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: left;
	padding: 5rem 4rem;
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-sm);
}

.contact-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-links li {
	margin-bottom: 0.6rem;
}

.contact-links li a {
	font-size: 1.75rem;
	color: rgba(255, 255, 255, 0.85);
	transition: 0.2s ease;
}

.contact-links li a:hover {
	color: var(--color-accent);
}

.socials {
	display: flex;
	justify-content: flex-start;
	gap: 1rem;
	margin-top: 2.3rem;
}

.socials .pill:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
	opacity: 1;
	transform: scale(1.08);
}

/* Blur */
.bg-blur-contact {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 450px;
	height: 350px;
	background: var(--color-accent);
	filter: blur(180px);
	opacity: 0.1;
	border-radius: 50%;
	z-index: -1;
}

/* ==========================
   Footer
========================== */

.footer-container {
	width: 100%;
	max-width: var(--container-max-width);
	margin: 0 auto;
	margin-bottom: 1.5rem;
	padding: 0;
}

.footer-content {
	text-align: center;
	padding: 1.5rem 1.5rem;
	max-width: 100%;
	font-size: 0.9rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-sm);
}

.footer-content p {
	line-height: 1.25rem;
}

/* ==========================
   Responsive 1024px
========================== */
@media (max-width: 1024px) {
	/* ===== Globale ===== */
	h1 {
		font-size: 2.5rem;
		line-height: 3.5rem;
	}

	h2 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.5rem;
	}

	/* Ligne décorative */
	.projects-underline,
	.services-underline,
	.process-underline {
		margin: 0.3rem auto 0.2rem auto;
	}

	.logo {
		z-index: 1001;
	}

	.menu-buttons {
		display: none;
	}

	.menu_toggle {
		display: block;
		z-index: 1001;
		position: relative;
	}

	.menu {
		position: fixed;
		visibility: hidden;
		top: 0;
		left: 0;
		width: 100%;
		background-color: var(--color-primary);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		opacity: 0;
		transition: opacity 0.2s ease;
	}

	.menu.visible {
		opacity: 1;
		height: 100vh;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
		transition: opacity 0.5s ease, transform 0.5s ease;
	}

	.menu li a {
		font-size: 1.8rem;
	}

	body.menu-open {
		overflow: hidden;
	}

	/* ===== Hero ===== */
	.hero-container {
		flex-direction: column-reverse;
		transition: all 0.35s ease;
	}

	.hero-img-container {
		max-width: 80%;
	}

	.hero-text-container {
		text-align: center;
		margin-bottom: 2rem;
		margin-top: 4rem;
	}
	.hero-text-container p {
		margin: 2rem auto;
	}

	/* ===== Button ===== */
	.menu-buttons {
		margin-left: 0rem;
		margin-top: 3rem;
	}

	/* ===== About ===== */
	.about-container {
		flex-direction: column;
		gap: 1rem;
		margin-top: 7rem;
		margin-bottom: 7rem;
	}

	.about-img-container {
		text-align: center;
		align-items: center;
		border-left: none;
		padding-left: 0rem;
		gap: 1.5rem;
	}

	.about-text-container {
		text-align: center;
	}

	.about-social-container {
		justify-content: center;
	}

	/* ===== Skills ===== */
	.skills-container {
		margin-top: 8rem;
		margin-bottom: 8rem;
	}

	.skills-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.skills-header {
		text-align: center;
	}

	/* ===== Projects ===== */
	.project-content p {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.projects-header {
		text-align: center;
	}

	/* ===== Ma methodes/Processes ====== */
	.process-header {
		text-align: center;
	}

	.process-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}

	/* ===== Expertise/Services ===== */
	.services-header {
		text-align: center;
	}

	.service-item {
		flex-direction: column;
		gap: 0.5rem;
	}

	.service-number {
		font-size: 2rem;
		min-width: 0;
	}

	.service-item {
		flex-direction: column;
		gap: 0.8rem;
	}

	.service-extra {
		margin-left: 0;
		margin-top: 1.5rem;
	}

	.service-content {
		text-align: center;
	}

	/* ===== Contact ===== */
	.contact-container {
		grid-template-columns: 1fr;
		padding: 0 1rem;
	}
	.contact-left {
		text-align: center;
	}

	.availability {
		transform: translateX(-15px);
	}

	.contact-actions {
		justify-content: center;
	}

	.contact-right {
		text-align: center;
	}

	.contact-links li a {
		font-size: 1.1rem;
	}

	.contact-links {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 1.75rem;
	}

	.socials {
		justify-content: center;
		flex-wrap: wrap;
	}

	/* ===== Footer ====== */
	.footer-container {
		padding: 0 0.5rem;
	}
}

/* ==========================
   Responsive 520px
========================== */

@media (max-width: 520px) {
	/* ===== Global ===== */
	.bg-blur,
	.bg-blur-contact {
		width: 250px;
		height: 200px;
		filter: blur(90px);
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.contact-container,
	.process-grid,
	.skills-grid {
		grid-template-columns: 1fr;
	}

	/* ===== About ===== */
	.about-container {
		text-align: center;
	}
	.about-img-container {
		flex-direction: column;
	}

	/* ===== Skills ===== */
	.skills-container {
		margin-top: 6rem;
		margin-bottom: 6rem;
	}

	.process-grid {
		gap: 3rem;
	}
	/* ===== Services ===== */
	.service-extra {
		flex-wrap: wrap;
	}

	/* ===== Contacts ===== */
	.contact-container {
		padding: 0 0.5rem;
	}

	.contact-links {
		flex-wrap: wrap;
		gap: 1rem;
	}

	.contact-left,
	.contact-right {
		padding: 3rem 1.5rem;
	}

	.contact-header h2 {
		font-size: 2.5rem;
	}

	.contact-actions {
		flex-direction: column;
	}
}

/* ==========================
   Accessibilite UX 
========================== */
@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
		animation-duration: 0.001ms !important;
	}
}
