@charset "utf-8";

html, body {
	margin: 0;
	padding: 0;
	background-color:#252525;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.navbar {
	width: 100%;
	top: 0px;
	left: 0px;
	min-height: 60px;
	background-color: #1E1E1E;
	max-height: 60px;
	position: fixed;
	
	display: flex;
	z-index: 10;
	
	align-items: center;
	justify-content: center;
}
.nav-button {
	width: 80px;
	height: 33px;
	
	display: flex;
	align-items: center;
	justify-content: center;
	
	color: #707070;
	font-family: Montserrat;
	font-weight: bold;
	text-decoration: none;
	
	transition: color 0.3s ease, color 0.3s ease;
}
.nav-button:hover {
	color: white;
	font-weight: bolder;
}
.home-button {
	width: 200px;
	height: 35px;
	
	display: flex;
	position: fixed;
	
	background-image: url("Images/logo1.png");
	
	left:  10%;
	top: 17px;
	
	background-repeat: no-repeat;
	background-size: 80% 80%;
	
	justify-content: center;
	align-items: center;
}

.main-content {
	padding-left: 10%;
	padding-right: 10%;
	padding-top: 75px;
	padding-bottom: 15px;
	
	flex: 1;
	
	color:#B8B8B8;
	font-family: Montserrat
}

.hp-main {
	width: 100%;
	display: flex;
	
	flex-direction: row;
	align-items: center;
	justify-content: center;
	
	gap: 20px;
}

.hp-showcase {
	width: 70%;
	aspect-ratio: 16/9;
	border-radius: 20px;
	overflow: hidden;
}
.hp-reviews-container {
	width: 30%;
	height: 100%;
	display: flex;
	
	flex-direction: column;
	justify-content: flex-start;
	align-content: flex-start;
	gap: 10px;
	
}
.hp-review {
	background-color: #1E1E1E;
	padding-left: 15px;
	padding-right: 15px;
	border-radius: 15px;
	position: relative;
}

.hp-review-img {
	position: absolute;
	left: 18px;
	top: 12px;
	width: 45px;
	aspect-ratio:1;
	border-radius: 100%;
}

.hp-review-name {
	position: absolute;
	left: 73px;
	top: -9px;
	font-size: 20px;
	font-weight: bolder;
	color: #FFFFFF
}
.hp-review-desc {
	position: absolute;
	left: 73px;
	top: 27px;
	font-size: 11px;
	font-weight: bold;
	color:#5CA4C4;

}
.hp-review-text {
	padding-top: 47px;
	padding-left: 5px;
	font-size: 15px;
	font-style: italic;
	color: #AAAAAA;
}

.carousel {
	width: 100%;
	height: auto;
	padding-top: 25px;
	overflow: hidden;
	
	mask-image: linear-gradient(
        to right,
        transparent,
        white 30%,
        white 70%,
        transparent
    );
}
.carousel-track {
	display: flex;

    width: max-content;
    flex-wrap: nowrap;

    animation: scroll  45s linear infinite;
}
.carousel-thumbnail {
	aspect-ratio: 16/9;
	height: 170px;
	border-radius: 10px;
	transition: transform 0.15s ease, transform 0.15s ease;
	margin-right: 20px
}
.carousel-thumbnail:hover {
	transform: scale(1.025)
}
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.action-buttons {
	width: auto;
	height: auto;
	margin-top: 20px;
	margin-bottom: 10px;

	gap: 20px;
	
	display: flex;
	align-items: center;
	justify-content: center;
}
.redirect-hyperlink {	
	color: #dddddd;
	font-family: Montserrat;
	font-weight: bold;
	text-decoration: none;
	font-size: 20px;
	
	background-color: #414141;
	padding: 10px 25px;
	border-radius: 20px;
	
	transition: color 0.3s ease, color 0.3s ease;
}
.redirect-hyperlink:hover {
	color: white;
}

.status-open {
	color: #5cc49c;
	font-weight: bold;
	font-size: 18px;
}
.status-closed {
	color: #C45C5C;
	font-weight: bold;
	font-size: 18px;
}
.status-pending {
	color: #c4b45c;
	font-weight: bold;
	font-size: 18px;
}

.work-highlight-container {
	width: 100%;
	display: flex;
	flex-direction: row;
	column-gap: 20px;
}
.work-highlight {
	width: 50%;
	border-radius: 20px;
}


.footer {
	width: 100%;
	height: auto;

	display: flex;
	position: relative;
	
	padding-left: 10%;
	padding-right: 10%;
	padding-top: 25px;
	padding-bottom: 25px;
	
	background-color: #1E1E1E;
	
	font-family: Montserrat;
	font-weight: bold;
	color :#7A7A7A;
	
	box-sizing: border-box;
}

.f-twitter {
	width: 20px;
	height: 20px;
	aspect-ratio: 1;
	
	left: 90%;
	
	position: absolute;
	display: flex;
	
	justify-content: center;
	align-items: center;
	
	background-image: url("/Images/twitter-logo.png");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	
	filter: brightness(0.5);
	transition: filter 0.3s ease, color 0.3s ease;
}
.f-twitter:hover {
	filter: brightness(1);
}
.f-discord {
	width: 20px;
	height: 20px;
	aspect-ratio: 1;
	
	left: 87.5%;
	
	position: absolute;
	display: flex;
	
	justify-content: center;
	align-items: center;
	
	background-image: url("/Images/discord-logo.png");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	
	filter: brightness(0.5);
	transition: filter 0.3s ease, color 0.3s ease;
}
.f-discord:hover {
	filter: brightness(1);
}