/* Project Styles */

article {
	display: block;
	gap: 0px;
	position: fixed;
	top: 0px;
	left: 36px;
	right: 36px;
	bottom: 0px;
	z-index: 150;
	align-items: center;
	overflow: hidden;
	background: none;
}

.project-bg-image {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: -1; /* Place behind all other content */
	overflow-y: hidden;
}

.project-banner {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(10, 10, 10, 0.4);
	width: fit-content;
	z-index: 300;
	animation: fadeOut 1s ease-in-out 1s forwards;
}

.project-banner h1 {
	font-family: 'Tourney', sans-serif;
	font-weight: 300;
	color: rgb(255, 247, 227);
	text-align: center;
	position: relative;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.project-container {
	display: block;
	position: absolute;
	z-index: 400;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	opacity: 0;
	animation: fadeIn 2s ease-in-out 2s forwards;
	overflow-x: hidden;
	overflow-y: scroll;
	scroll-behavior: smooth;
	scroll-snap-type: y mandatory;
	-ms-overflow-style: none; 
	scrollbar-width: none;
}

.project-container::-webkit-scrollbar {
	display: none;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    /* transform: translateY(20px); */
  }
  to {
    opacity: 1;
    /* transform: translateY(0); */
  }
}

.project-container-contents {
	display: block;
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.project-container-contents div {
	
}

.project-container-contents div div {
	
}

.project-info-content {
	position: relative;
	z-index: 450;
	padding-bottom: 36px;
	overflow-x: hidden;
	overflow-y: scroll;
	scroll-behavior: smooth;
	scroll-snap-type: y mandatory;
	-ms-overflow-style: none; 
	scrollbar-width: none;  
}

.project-info-content::-webkit-scrollbar {
	display: none;*/
}

.project-info-content div {
	user-drag: none; 
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.project-info-content div {
	font-family: 'Cabin', sans-serif;
	text-align: left;
	background-color: rgba(20, 20, 20, 0.5);
	color: rgb(255, 247, 227);
	height: auto;
	padding: 20px;
}

.project-info-content div h2 {
	font-family: 'Tourney', sans-serif;
	font-size: 26px;
	font-weight: 300;
	margin-bottom: 20px;
	display: inline-block;
	*display: inline;
}

.project-info-content div h3 {
	font-size: 16px;
	font-weight: bolder;
	margin-bottom: 4px;
}

.project-info-content div p {
	font-size: 14px;
	font-weight: 100;
	margin-bottom: 8px;
}

.project-info-content div h4 {
	font-size: 14px;
	font-weight: 200;
	margin-top: 20px;
	margin-bottom: 4px;
}

.project-info-content div h5 {
	font-size: 14px;
	margin-top: auto;
	padding-top: 20px;
}

.project-imgs-content {
	position: relative;
	z-index: 450;
	height: 100vh;
	padding-bottom: 36px;
	opacity: 0.9;
	overflow-x: hidden;
	overflow-y: scroll;
	scroll-behavior: smooth;
	scroll-snap-type: y mandatory;
	-ms-overflow-style: none; 
	scrollbar-width: none;
}

.project-imgs-content::-webkit-scrollbar {
	display: none;
}

.project-imgs-content div {
	height: auto;
}

.project-imgs-content div figure {
	user-drag: none; 
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

#project-text-up-arrow {
	position: absolute;
	z-index: 9995;
	height: auto;
	visibility: hidden;
	top: 0px;
	right: 0px;
}

#project-text-down-arrow {
	position: absolute;
	z-index: 9995;
	height: auto;
	visibility: visible;
	bottom: 0px;
	right: 0px;
}

#project-img-up-arrow {
	position: absolute;
	z-index: 9905;
	height: auto;
	visibility: hidden;
	right: 0px;
}

#project-img-down-arrow {
	position: absolute;
	z-index: 9905;
	height: auto;
	visibility: visible;
	bottom: 70px;
	right: 0px;
}