body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: Arial, sans-serif;
	scroll-behavior: smooth;
	background-color: #000000;
	color: #e0e0e0;
	font-size: 16pt;
}

footer{
	min-height: 50vh;
	background-color: #000000;
	color: #e0e0e0;
}

h1{
	font-size: 26pt;
}
h2{
	font-size: 24pt;
}
h3{
	font-size: 22pt;
}
h3{
	font-size: 20pt;
}


.navbar-home{
	align-items: center;
	text-align: center;
	margin: auto auto;
}

.navbar-home > a{
	color: #e0e0e0;
}

.navbar-home > a:visited{
	color: #e0e0e0;
}

.container-home {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

header {
	background: linear-gradient(135deg, #000000, #000000);
	color: #e0e0e0;
	padding: 1rem 0;
	transition: background-color 0.3s ease;
	position: relative;
	z-index: 1000;
	border-bottom: 1px solid var(--sh-green);
}

header h1 {
	margin-bottom: 1rem;
	transition: color 0.3s ease;
}



header nav ul {
	list-style: none;
	padding: 0;
}

header nav ul li {
	display: inline;
	margin: 0 1rem;
}

header nav ul li a {
	color: #e0e0e0;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
	border-bottom: 2px solid transparent;
}

header nav ul li a:hover {
	color: var(--sh-green);
	border-bottom: 2px solid var(--sh-darkgreen);
}

main {
	margin-top: 0; 
}

.pgup{
	position: fixed;
	top: 80vh;
	left: 90vw;
	z-index: 99;
}

.pgup > img{
	opacity: 0.75;
	transition: opacity 250ms;
}

.pgup:hover > img{
	opacity: 1;
}

.section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem 0;
	color: #e0e0e0;
	background-color: #1e1e1e; 
	min-height: 80vh; 
	transition: background 0.5s ease;
	border-top: 2px solid var(--sh-green);
}

.section .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.section .content, .section .image {
	flex: 1;
	padding: 0 1rem;
}

.section .content {
	text-align: left;
	z-index: 2;
}

.feature{
	background-color: black;
	position: relative;
	padding: 20px;
	width: 20vw;
	z-index: 2;
	border: 2px solid var(--sh-green);
	transition: transform 250ms ease;
}

.feature:hover{
	z-index: 6;
	border: 2px solid var(--sh-magenta);
	transform: scale(1.15);
}


.feature > img{
	max-height: 82px;
}

.section .image img {
	max-width: 100%;
	height: auto;
	transition: transform 0.4s ease;
}

.section .image img:hover {
	transform: scale(1.05);
}

.right-aligned .content {
	order: 2;
}

.right-aligned .image {
	order: 1;
}

.left-aligned .content {
	order: 1;
}

.left-aligned .image {
	order: 2;
}

.gallery-grid {
	--delay: 0;
	display: grid;
	grid-template-columns: repeat(3, 3fr);
	grid-gap: 1rem;
	margin: auto auto;
	text-align: center;
}

.gallery-grid img {
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease;
}

a {
	color: var(--sh-green);
}

a:visited {
	color: var(--sh-magenta);
}

a:hover {
	color: var(--sh-magenta);
}

a:active {
	color: var(--sh-green);
}

li{
	margin-top: 20px;
}

.box{
	padding: 40px;
	outline: 2px solid var(--sh-green);
	min-height: 64px;
}

.box > img{
	height: 64px;
}

.gallery-grid img.fade-in {
	opacity: 1;
}

#express-yourself .content-container {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
}

#express-yourself .content {
	text-align: center;
}

.panel1 {
	margin-top: -325px;
}

.go-deeper-content {
	text-align: center;
	margin-top: 2rem;
}

.fade-out {
	opacity: 0;
	transition: opacity 0.5s ease;
}

.go-deeper-content h3 {
	margin-bottom: 0.5rem;
}

#title{
	display: inline-block;
	float: left;
	padding-right: 40px;
	vertical-align: middle;
}

footer {
	color: white;
	text-align: left;
	padding: 1rem;
	margin-top: 2rem;
	transition: background-color 0.3s ease;
	border-top: 1px solid var(--sh-green);
}

button {
	color: white;
	border: none;
	border-radius: 5px;
	padding: 10px;
	cursor: pointer;
	font-size: 16px;
	box-sizing: border-box;
	transition: background-color 0.3s ease;
	font-weight: bold;
}

.accent {
	color: var(--sh-green);
}

.accent-bg {
	background-color: var(--sh-green);
}

@keyframes slideInFromTop {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.slide-in {
	animation: slideInFromTop 1s ease-in-out forwards;
}

.fade-in {
	animation: fadeIn 0.5s ease-in-out forwards;
}


.mobile{
	display: none;
}

.desktop{
	display: block;
}

.arrow{
	font-size: 26pt;
	float: right;
	vertical-align: top;
	margin-right: 26px;
	cursor: pointer;
}


.gallery-grid img {
	animation: fadeIn 1s ease forwards;
	animation-delay: calc(var(--delay) * 1s);
}

.faq-list {
	display: flex;
	flex-direction: column;
	cursor: pointer;
}

.faq-item {
	margin-bottom: 3.2vh;
	position: relative;
	cursor: pointer;
	padding-top: 20px;
	padding-left: 6px;
	outline: 2px solid var(--sh-green);
	transition: opacity 400ms 200ms, max-height 400ms 200ms;
}

.faq-item:hover .answer{
	opacity: 1;
	cursor: pointer;
	pointer-events: auto;
	max-height: 200px;
	transition: opacity 400ms, max-height 400ms;
}

.faq-item .answer p{
	padding-left: 20px;
}

.answer{
	font-size: 16pt;
	opacity: 0;
	pointer-events: none;
	cursor: pointer;
	max-height: 0px;
	transition: opacity 400ms 200ms, max-height 400ms 200ms;
	cursor: text;
}

.toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.question {
	font-size: 20pt;
	font-weight: bold;
	cursor: pointer;
	background-color: black;
	transition: background-color 0.3s ease;

}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

@media (max-width: 1599px) {
	.desktop{
		display: none;
	}

	.mobile{
		display: block;
	}
	.content {
		margin-top: 0px;
	}
	header h1 {
		font-size: 1.5rem;
	}

	header nav ul li {
		margin: 0 0.5rem;
	}

	.section h2 {
		font-size: 1.5rem;
	}

	.section p {
		font-size: 1rem;
	}

	footer p {
		font-size: 1rem;
	}

	.section .container {
		flex-direction: column;
		align-items: center;
	}

	.section .content, .section .image {
		width: 100%;
		text-align: center;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.topbg{
	margin-top: -20vh;
}

@media (max-width: 800px) {
	.section .container {
		flex-direction: column;
		align-items: center;
	}

	.section .content, .section .image {
		width: 100%;
		text-align: center;
	}
	img{
		height: 20vw;
	}
	header h1 {
		font-size: 1.2rem;
	}

	header nav ul li {
		margin: 0 0.3rem;
	}

	.section h2 {
		font-size: 1.2rem;
	}

	.section p {
		font-size: 0.9rem;
	}

	footer p {
		font-size: 0.9rem;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
	}
}