/*--------------------------------------------------------------
# landing Section
--------------------------------------------------------------*/

#landing {
	height: 100vh;
	background: url('../images/landing_background.png') top right no-repeat;
	background-size: cover;
	position: relative;
	justify-content: center !important;
	flex-direction: column !important;
	display: flex !important;
}

#landing h1 {
	margin: 0;
	font-size: 64px;
	font-weight: 700;
	line-height: 56px;
	color: #edeff1;
}

#landing p {
	color: #edeff1;
	margin: 15px 0 0 0;
	font-size: 26px;
	font-family: 'Poppins', sans-serif;
}

#landing p span {
	color: #69b7ff;
	letter-spacing: 1px;
}

#landing #about {
	max-width: 30%;
	font-size: 20px;
}

#landing .social-links {
	margin-top: 30px;
}

#landing .social-links a {
	font-size: 24px;
	display: inline-block;
	color: #edeff1;
	line-height: 1;
	margin-right: 20px;
	transition: 0.2s;
}

#landing .social-links a:hover {
	color: #69b7ff;
}

.scroll-down {
	position: absolute;
	bottom: 70px;
	left: 50%;
	transform: translateX(-50%);
}

@media (min-width: 992px) {
	#landing {
		padding-left: 160px;
	}
}

@media (max-width: 992px) {
	#landing {
		text-align: center;
	}

	#landing h1 {
		font-size: 42px;
		line-height: 36px;
	}

	#landing p {
		margin-top: 10px;
		font-size: 24px;
		line-height: 24px;
	}

	#about {
		max-width: unset !important;
	}
}

/*--------------------------------------------------------------
# Recent-Projects Section
--------------------------------------------------------------*/
#recent-projects {
	text-align: center;
}

#recent-projects a {
	text-decoration: none;
	color: black;
}

#recent-projects h2 {
	font-size: 36px;
	margin-bottom: 30px;
}

.projects-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.project {
	position: relative;
	overflow: hidden;
	width: 500px;
	height: 500px;
}

.project img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: 0.3s ease;
}

.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	opacity: 0;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: 0.3s ease;
}

.project-overlay h3 {
	font-size: 24px;
	color: #fff;
	margin-bottom: 10px;
}

.project-overlay p {
	font-size: 16px;
	color: #fff;
	margin-bottom: 20px;
}

.project-link {
	color: #69b7ff;
	font-weight: bold;
	background: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	transition: 0.3s ease;
}

.project-link:hover {
	color: #fff;
	background: #69b7ff;
}

.project:hover img {
	transform: scale(1.1);
}

.project:hover .project-overlay {
	opacity: 1;
}

#all-projects-div {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	text-decoration: none;
}

#all-projects-div:hover {
	text-decoration: underline;
}

#all-projects {
	padding: 5px;
}
