/**
 * FILEPATH: /c:/Development/stavit_site/style/projects.css
 * 
 * This file contains the CSS styles for the projects section of a website.
 * It includes styles for the container, inner container, project images, project list, and project content.
 * The styles define the layout, positioning, background colors, and transitions for the projects section.
 */

.projects_container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 96px 0;
	position: relative;
}

.projects_container::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-image: url("../assets/pixel_bg.png");
	background-repeat: repeat-x;
	background-size: 32%;
	opacity: 0.25;
}

.projects_inner_container {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 66.66%;
	max-width: 1280px;
	min-width: 744px;
	z-index: 3;
}

.project_image {
	position: fixed;
	width: 25vw;
	height: 25vw;
	/* max-width: 480px; */

	background-color: #555555;
	transform: translateY(-50%);
	top: 50%;
	right: 16.66%;

	display: none;
	background-size: cover;
	background-position: 50% 50%;

	z-index: 4;
	transition: opacity 0.2s ease-in;
}

.number_title {
	width: 60px;
	transition: 0.2s;
}


.project_list {
	width: 100%;
	overflow: hidden;
}

.project {
	display: flex;
	align-items: center;
	height: auto;
	gap: 40px;
	padding: 24px 0;
	width: 50%;
}

.project:first-child {
	padding: 24px 0 24px 0;
}

.project.disabled {
	pointer-events: none;
}


.project_content {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-start;
}

.project_description {
	font-size: 18px;
	font-weight: 300;
	z-index: -2;
}

.soon_text {
	font-style: italic;
	padding-right: 4px;
}


.project_title {
	position: relative;
	font-size: 30px;
    transition: 0.2s;
}

.project_title_line {
	position: absolute;
	bottom: 0;
	z-index: -1;
	width: 100%;
	height: 20px;
	transform: scale3d(0, 1, 1);
	transform-origin: 0% 50%;
	transition: transform 0.5s;
}

.plus-line {
	display: block;
	content: "";
	/* Removes default content */
	font-family: "Pixelify Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	position: relative;
	width: 100%;
	height: 0;
	opacity: 0.3;
	z-index: -1;
}

.plus-line::before {
	content: "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
	/* Repeat "+" character */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/* Stretch to fit container */
}

.disabled_color {
	opacity: 0.3;
}

.pink_bg {
	background-color: var(--pink_opacity);
}

.orange_bg {
	background-color: var(--orange_opacity);
}

.yellow_bg {
	background-color: var(--yellow_opacity);
}

.green_bg {
	background-color: var(--green_opacity);
}

.light_blue_bg {
	background-color: var(--light_blue_opacity);
}

.blue_bg {
	background-color: var(--blue_opacity);
}

.purple_bg {
	background-color: var(--purple_opacity);
}