@import url('https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


:root{
	--font1: 'Poppins';
	--font2: 'Rubik';
	--font3: 'Ubuntu';
	--font4: 'Lexend Giga';

	--color1: #111;
	--color2: #eee;
	--color3: #3c82d7;
	--color4: #86b4ed;
}


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	outline: none;
}

html{
	font-size: 62.5%;
	scroll-behavior: smooth;
	/* border: 1px solid red; */
}

body {
    font-family: var(--font1), Arial, Helvetica, sans-serif;
    color: var(--color2);
    margin: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed; /* Fixes to viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(imgs/me.jpg) no-repeat, #333;
    background-size: cover;
    background-position: right;
    background-blend-mode: multiply; /* Keeps your color blend */
    /* THE FIX: Scale up and Blur */
    filter: blur(5px);
    transform: scale(1.1); /* Scales the image 10% larger to hide blurred edges */
    z-index: -1; /* Places it behind content */
}


h1{
	font-family: var(--font1), Arial, Helvetica, sans-serif;
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 1.5px;
	margin-bottom: 1rem;
}

h2{
	font-family: var(--font1), Arial, Helvetica, sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	opacity: .8;
	margin-bottom: 1.5rem;
}


/* HEADER INFO */
header{
	position: relative;
	width: 100%;
	display: inline-block;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 5rem 1.5rem 2.5rem;
}

.header img{
	background: #333;
	width: 500px;
	height: 500px;
	margin-bottom: 2.5rem;
	border-radius: 20px;
}


.header p{
	max-width: 600px;
	font-size: 1.5rem;
	opacity: .9;
	margin: 0 auto;
}


/* NAV LINKS */
nav{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	padding: 2.5rem 1.5rem 2.5rem;
}

.links .link{
	max-width: 600px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	margin: 0 auto;
	background: #eee;
	border: 1.5px solid var(--color2);
	border-radius: 5px;
	transition: .3s ease-in-out;
}
.links .link:hover{
	color: var(--color4);
	background: transparent;
	border-color: var(--color4);
	box-shadow: 0 0 10px var(--color4);
}

.links a{
	color: var(--color1);
}

.links p, .links i{
	font-size: 1.5rem;
	font-weight: 500;
	padding: 0;
}

/* MAIN */
main{
	width: 100%;
	padding: 2.5rem 1.5rem 5rem;
}

.project-section{
	text-align: center;
}

.project-section h3{
	font-size: 2.3rem;
	color: var(--color2);
	margin-bottom: 1.5rem;
}

.project-section p{
	max-width: 600px;
	font-size: 1.5rem;
	opacity: .9;
	margin: 0 auto;
}

/* SOCIALS */
.socials{
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 3rem;
	padding: 2.5rem 0;
}

.socials i{
	font-size: 2rem;
	color: #ddd;
	border-radius: 50%;
	padding: 1rem;
	transition: all .3s ease-in-out;
}


.socials .yt:hover{
	color: red;
	box-shadow: 0 0 10px red;
}

.socials .fb:hover{
	color: var(--color3);
	box-shadow: 0 0 10px var(--color3);
}

.socials .ig:hover{
	color: #d62976;
	box-shadow: 0 0 10px #d62976;
}

.socials .x:hover{
	color: #fff;
	box-shadow: 0 0 15px var(--color2);
}

.socials .tk:hover{
	color: #2af0ea;
	box-shadow: 0 0 10px #de8c9d;
}


footer{
	width: 100%;
	background: #111;
	padding: 3rem 1rem;
	margin-top: 5rem;
	text-align: center;
}

footer p{
	font-size: 1.2rem;
}