::-webkit-scrollbar {
	display: none;
}

html{
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	background-color: #F1F1F1;
}

h1 {
	color: #0011FF;
	text-decoration: none;
	font-size: 16px;
	font-family: "MonumentExtended";
	font-weight: bold;
	font-size: 9.5vh;
	margin: 0;
	padding: 0;
}

.hamburgermenu {
	display: none;
}


.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	color: #0011FF;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	backdrop-filter: blur(30px);
	background-color: #F1F1F180;
}

.navbar-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0.4vw 2.8vw;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.nav-links li {
	display: inline;
	margin-left: 3.2vw;
}

.nav-links a {
	color: #0011FF;
	text-decoration: none;
	font-size: 1.2vw;
	font-family: "Neue Haas Grotesk Display Pro";
	font-weight: 600;
}

.nav-links a:hover {
	text-decoration: underline;
}

.logo img {
	width: 3.5vw;
	height: auto;
}


/* CSS Grid Styles */
.container {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: repeat(20, 20vh);
	gap: 20px;
	/* Gutter between columns and rows */
	row-gap: 20px;
	/* Specifically for rows */
	margin: 0 3vw;
	/* 60px margin on the left and right */
}

.introText {
	grid-column: 2/9;
	grid-row: 4/5;
	margin-left: -4vw;
	margin-top: 4vh;
	line-height: 0.9;
}

.selfImage {
	grid-column: 2/4;
	grid-row: 7/9;
	text-align: center;
}


.selfImage img {
	width: 100%;
	height: auto;
	object-fit: contain;
	margin-left: 5vw;
}

.ljImage {
    transition: transform 0.3s ease; /* Smooth transition only for transform */
    display: inline-block;
}

.ljImage.hovered {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.aboutText {
	grid-column: 4/8;
	grid-row: 8/10;
	padding-left: 10vw;
}

.aboutText p {
	font-family: "Neue Haas Grotesk Display Pro";
	font-weight: 600;
	font-size: 1.2vw;
	color: #0011FF;
	margin-top: -5vh;
}

.videoContainer {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.videoContainer video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hover-text {
	position: absolute;
	color: white;
	font-family: "MonumentExtended";
	font-weight: bold;
	font-size: 16px;
	background: rgba(0, 0, 0, 0.7);
	padding: 10px 20px;
	border-radius: 5px;
	display: block;
}

.videoContainer:hover .hover-text {
	display: none;
}

.videoInteractiveProjection {
	grid-column: 1 / 5;
	grid-row: 11 / 13;
}

.videoAIGeneration {
	grid-column: 5/9;
	grid-row: 11 / 13;
}

.videoTextInteractiveProjection {
	grid-column: 1 / 5;
	grid-row: 13;
	z-index: 1;
}

.videoTextAIGeneration {
	grid-column: 5 / 9;
	grid-row: 13;
	z-index: 1;
}

.videoDataVisualisation {
	grid-column: 1 / 5;
	grid-row: 14/16;
}

.videoReactiveVisuals {
	grid-column: 5/9;
	grid-row: 14/16;
}

.videoTextDataVisualisation {
	grid-column: 1 / 5;
	grid-row: 16;
	z-index: 1;
}

.videoTextReactiveVisuals {
	grid-column: 5/9;
	grid-row: 16;
	z-index: 1;
}

.videoTextInteractiveProjection h1,
.videoTextAIGeneration h1,
.videoTextDataVisualisation h1,
.videoTextReactiveVisuals h1 {
	font-size: 2vw;
	margin-top: -1vh;
}

.gumtastic {
	grid-column: 1/5;
	grid-row: 17/20;
}

.gumtastic img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.gumtastic h1 {
	font-size: 2vw;
}

.expo24 {
	grid-column: 5/9;
	grid-row: 17/20;
}

.expo24 img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.expo24 h1 {
	font-size: 2vw;
}

/* Source: https://www.codeblocq.com/2016/08/Turn-an-image-to-Black-and-White-on-hover-with-CSS/ */
.gumtastic img,
.expo24 img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: filter .2s ease-in-out;
}

.gumtastic img:hover,
.expo24 img:hover {
	transition: filter .2s ease-in-out;
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

footer {
	height: fit-content;
	width: auto;
	background-color: #0011FF;

	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: repeat(10, 10vh);
	gap: 20px;
	row-gap: 20px;
	padding: 0 60px;

	font-family: "MonumentExtended";
	font-weight: normal;
}

.footerLinks {
	grid-row: 6;
	margin-left: 2.5vw;
	margin-top: 3vh;
}

.footerLinks a {
	text-decoration: none;
	color: white;
	font-size: 1.15vw;
}

.displayFlex {
	grid-row: 7;
	grid-column: 1/9;
	display: flex;
	justify-content: space-between;
	margin-top: 10vh;
	font-size: 1.3vw;
	color: white;
}

.email {
	margin-left: 2.5vw;
}

.email p {
	margin: 0;
	padding: 0;
}

.backToTop {
	text-align: end;
	margin-right: 2.5vw;
}

.backToTop a {
	color: white;
	text-decoration: none;
	margin: 0;
	padding: 0;
}



.bottomText {
	grid-row: 8;
	grid-column: 1/9;
	margin-top: 3vh;
	text-align: center;
}

.bottomText h1 {
	color: white;
	margin: 0;
	padding: 0;
	font-size: 10vw;
}

@media screen and (max-width: 1900px) {

	.bottomText h1 {
		font-size: 10vw;
	}
}

@media screen and (max-width: 1400px) {

	footer {
		grid-template-rows: repeat(9, 10vh);
	}

	.bottomText h1 {
		font-size: 9vw;
	}
}

@media screen and (max-width: 1250px) {
	.introText h1 {
		font-size: 7vh;
	}

	footer {
		grid-template-rows: repeat(7, 10vh);
	}
}

@media screen and (max-width: 1000px) {

	.introText h1 {
		font-size: 6vh;
	}

	footer {
		grid-template-rows: repeat(6, 10vh);
	}
}

@media screen and (max-width: 768px) {

	.container {
		grid-template-rows: repeat(15, 20vh);
	}

	.logo img {
		width: 6vw;
		height: auto;
	}

	.nav-links a {
		font-size: 2vw;
	}

	.selfImage {
		grid-column: 1/4;

	}

	.aboutText {
		grid-column: 4/9;
	}

	.aboutText p {
		font-size: 2vw;
		margin-top: -10vh;
	}

	.hover-text{
		display: none;
	}


	.videoContainer video {
		object-fit: contain;
	}

	.videoInteractiveProjection,
	.videoAIGeneration {
		grid-row: 9 / 12;
	}

	.videoTextInteractiveProjection,
	.videoTextAIGeneration {
		grid-row: 11;
		margin-top: 10px;
	}

	.videoDataVisualisation,
	.videoReactiveVisuals {
		grid-row: 11 / 14;
	}

	.videoTextDataVisualisation,
	.videoTextReactiveVisuals {
		grid-row: 13;
		margin-top: 10px;
	}

	.gumtastic,
	.expo24 {
		grid-row: 14/17;
	}

	.footerLinks a {
		font-size: 2.5vw;
	}

	.email p {
		font-size: 2vw;
	}

	.backToTop {
		grid-column: 5 / 9;
	}
}

@media screen and (max-width: 680px) {

	.bottomText h1 {
		font-size: 8.5vw;
	}
}


@media screen and (max-width: 550px) {

	.introText h1 {
		font-size: 4vh;
	}

	.videoTextInteractiveProjection h1,
	.videoTextAIGeneration h1,
	.videoTextDataVisualisation h1,
	.videoTextReactiveVisuals h1 {
		margin-top: -5vh;
	}

	.bottomText h1 {
		font-size: 8vw;
	}

}


/* Hamburger Menu styles */
.hamburgermenu {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	width: 30px;
	/* Adjust width for better alignment */
	height: 30px;
	/* Adjust height for better alignment */
}

.bar {
	width: 28px;
	height: 3px;
	margin: 0 0 5px 0;
	background: #0011FF;
	transition: all 0.5s ease-out;
}

/* When the hamburger menu is active (opened), transform it to an X */
.hamburgermenu.active .bar:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
	/* Rotate first bar and move */
}

.hamburgermenu.active .bar:nth-child(2) {
	opacity: 0;
	/* Hide the middle bar */
}

.hamburgermenu.active .bar:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
	/* Rotate third bar and move */
}


@media screen and (max-width: 425px) {

	.navbar {
		padding: 10px 0;
	}

	.nav-links {
		display: none;
		/* Hide nav links by default */
	}

	.nav-links.active {
		display: flex;
		flex-direction: column;
		color: white;
		align-items: center;
		gap: 20px;
		padding: 10px;
		z-index: 1000;
		position: absolute;
		top: 60px;
		/* Adjust this based on navbar height */
		right: 0;
		width: 100%;

	}

	.nav-links.active a {
		color: white;
		font-size: 5vw;
	}

	/* Show hamburger menu on smaller screens */
	.hamburgermenu {
		display: block;
		align-content: center;
	}

	/* When hamburger menu is active, change bar color to white */
	.hamburgermenu.active .bar {
		background-color: white;
	}

	/* Screen cover overlay */
	.screenCover {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #0011FF;
		z-index: 500;
		display: none;
	}

	.screenCover.active {
		display: block;
	}

	/* END NAVBAR */

	.navbar-content{
		padding: 0.4vw 4vw;
	}

	.container{
		padding: 0.4vw 4vw;
		margin: 0;
		grid-template-rows: repeat(19, 20vh);
		margin-bottom: 5vh;
	}

	.logo img {
		width: 8vw;
		height: auto;
	}

	.introText {
		grid-column: 1 / 9;
		grid-row: 2;
		margin: 0;
		padding: 0;
		margin-top: 0;
		line-height: 0.9;
	}

	.selfImage{
		grid-column:2/8;
    	grid-row: 3/5;
		margin-top: 5vh;
	}

	.selfImage img{
		margin: 0;
	}

	.aboutText{
		grid-column: 1 / 9;
		grid-row: 5/6;
		padding: 0;
		margin-top: 10vh;
	}

	.aboutText p{
		font-size: 4.5vw;
		margin: 0;
	}

	.videoTextInteractiveProjection, .videoTextAIGeneration, .videoTextDataVisualisation, .videoTextReactiveVisuals {
		grid-column: 1/9;
		text-align: center;
	}

	.videoTextInteractiveProjection h1, .videoTextAIGeneration h1, .videoTextDataVisualisation h1, .videoTextReactiveVisuals h1 {
		font-size: 6.5vw;
	}

	.videoInteractiveProjection, .videoAIGeneration, .videoReactiveVisuals {
		grid-column: 1/9;
		margin-top: -30vh;
	}

	.videoDataVisualisation{
		grid-column: 1/9;
		margin-top: -35vh;
	}

	.videoTextInteractiveProjection{
		grid-row: 8/9;
	}

	.videoInteractiveProjection{
		grid-row: 9/10;
	}

	.videoTextAIGeneration{
		grid-row: 10/11;
	}

	.videoAIGeneration{
		grid-row: 11/12;
	}

	.videoTextDataVisualisation{
		grid-row: 12/13;
	}

	.videoDataVisualisation{
		grid-row: 13/14;
	}

	.videoTextReactiveVisuals{
		grid-row: 14/15;
	}

	.videoReactiveVisuals{
		grid-row: 15/16;
	}

	.gumtastic{
		grid-column: 1/9;
		grid-row: 16/17;
		text-align: center;
	}

	.expo24{
		grid-column: 1/9;
		grid-row: 18/19;
		text-align: center;
		margin-top: -3vh;
	}

	.gumtastic h1, .expo24 h1 {
		font-size: 6.5vw;
		margin-top: -68%;
	}

	footer {
		grid-template-columns: repeat(8, 1fr);
		grid-template-rows: repeat(14, 5vh);
		padding: 0.4vw 4vw;

	}

	.footerLinks {
		grid-row: 2/3;
		margin-left: 0;
		margin-top: 3vh;
	}

	.footerLinks a{
		font-size: 4vw;
	}

	.displayFlex {
		grid-row: 4/11;
		margin-top: 0vh;
		color: white;
		flex-direction: column;
	}

	.email{
		margin: 0;
	}

	.email p{
		font-size: 4vw;
	}

	.backToTop{
		text-align: left;
		margin: 0;
	}

	.backToTop a{
		font-size: 4vw;
	}

	.bottomText {
		grid-row: 11/12;
		grid-column: 1 / 9;
		margin: 0;
	}

	.bottomText h1{
		font-size: 19vw;
	}

	@media screen and (max-width: 375px) {
		.introText h1 {
			font-size: 3vh;
		}

		.videoInteractiveProjection, .videoAIGeneration, .videoReactiveVisuals {
			margin-top: -35vh;
		}
	
		.videoDataVisualisation{
			margin-top: -40vh;
		}
	}

	@media screen and (max-width: 320px) {

		.videoInteractiveProjection, .videoAIGeneration, .videoReactiveVisuals {
			margin-top: -40vh;
		}
	
		.videoDataVisualisation{
			margin-top: -45vh;
		}
	}


}