body,
html {
	margin: 0;
	padding: 0;
	height: 100%;
	background-color: black;
	color: white;
	font-family: "Montserrat", sans-serif;
}

.container {
	position: relative;
	font-family: "Montserrat", sans-serif;
}

.container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 70vh;
	background: url("../home_img/smoke_background.jpg") center/cover no-repeat;
	;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	z-index: 1;
	transition: opacity 1.5s ease-in-out;
}

.container.reveal::before {
	opacity: 0.2;
}

.header-text {
	position: relative;
	z-index: 2;
	color: white;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70vh;
	/* match background height */
}

.header-text h1 {
	font-weight: 600;
	font-size: 5vw;
}

.about-me {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	padding: 60px 40px;
	gap: 40px;
	font-family: "Montserrat", sans-serif;
}

.left-column {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.left-column img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.left-column,
.right-column {
	opacity: 0;
	transform: translateY(50px);
	/*start slightly down*/
	transition: all 0.8s ease-out;
}

.left-column.slide-in,
.right-column.slide-in {
	opacity: 1;
	transform: translateY(0);
	/* back to original position */
}

.projects {
	width: 100%;
}

.project-row {
	display: flex;
	margin: 0;
	padding: 0;
}

.project-img {
	position: relative;
	flex: 1;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}

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

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

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.project-img:hover .overlay {
	opacity: 1;
	pointer-events: auto;
}

.overlay span {
	color: white;
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	padding: 10px;
}

.left-slide {
	opacity: 0;
	transform: translateX(-100px);
	transition: all 0.8s ease-out;
}

.right-slide {
	opacity: 0;
	transform: translateX(100px);
	transition: all 0.8s ease-out;
}

.left-slide.slide-in,
.right-slide.slide-in {
	opacity: 1;
	transform: translateX(0);
}

.site-footer {
	background-color: #222;
	color: #ccc;
	text-align: center;
	padding: 20px 0;
	font-size: 0.9em;
	margin-top: 60px;
}

.site-footer a {
	color: #1e90ff;
	text-decoration: none;
}

.site-footer a:hover {
	text-decoration: underline;
}
