/* Author - ravzzy */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&display=swap');

@font-face {
	font-family: 'Lucidity Expand';
	/* Define a name for your font */
	src: url('../fonts/lucidity-expand.ttf') format('truetype');
	/* Path to your TTF font */
}

@font-face {
	font-family: 'Capraia SemiBold';
	/* Define a name for your font */
	src: url('../fonts/Capraia-SemiBold.otf') format('truetype');
	/* Path to your TTF font */
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 8px;
	/* Root font size */

}

html,
body {
	margin: 0;
	padding: 0;
	overflow: hidden;
	/* Disable main document scrolling */
	height: 100%;
}

:root {
	--nav-bg-color: black;
	--nav-text-color: black;
	--nav-hover-color: white;
	--footer-text-color: black;
	--primary-background-color: #e61618;
	--secondary-background-color: #f1f1f1;
	--final-background-color: rgb(23, 16, 16);
	--body-text-font: 'Noto Sans JP', sans-serif;
	--header-text-font: "Bebas Neue", sans-serif;
	--header2-text-font: 'Notable', sans-serif;
	--brand-text-font: 'Lucidity Expand', sans-serif;
	--default-text-font: 'Noto Sans KR', sans-serif;
	--header-h1-text-font: 'Capraia SemiBold', sans-serif;
	--section-text-font: 'Schelter Grotesk NF W01 Rg';
	--header-h3-text-font: 'Capraia SemiBold', sans-serif;


	/* Default color */
	/* Default hover effect */
}

body {
	height: 100%;
	overflow-x: hidden !important;
	font-family: var(--default-text-font);
	text-transform: uppercase;
	background-color: #f1f1f1;
}


.Header-swimlane {
	background-color: var(--secondary-background-color);
	padding: 1vh 0;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 9vh;
	z-index: 4;
	/* Keep swimlane above the header */
	transition: transform 0.3s ease-out;
	border: 0.5px solid grey;
}

.Header-swimlane-Text {
	font-family: var(--brand-text-font);
	color: black;
	font-size: 1.7rem;
	width: auto;
	font-weight: 600;
	position: fixed;
	top: 3%;
	left: 8%;
	z-index: 5;
}

.logo-link {
	z-index: 10;
	position: fixed;
}

.topper {
	visibility: hidden;
	min-height: 9vh;
}


#form {
	display: none !important;
	/* Hides the contact us form */
}

h1 {
	text-align: center;
	text-transform: none;
	font-family: var(--body-text-font);
	margin-top: 20px;
	font-size: 3.5rem;
	color: var(--secondary-background-color);
}

.tile-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	max-width: 80vw;
	/* Ensures it doesn’t stretch too much */
	gap: 40px;
	padding: 50px;
}

.tile {
	background-color: #f1c47c;
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transform-style: preserve-3d;
}

.tile img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 12px;
}

.tile h3 {
	font-family: var(--body-text-font);
	text-transform: none;
	font-size: 18px;
	color: #333;
	margin-top: 15px;
}

.tile p {
	font-size: 14px;
	color: #666;
	margin-top: 10px;
	display: -webkit-box;
	--webkit-line-clamp: 2;
	/* Limit to two lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tile a {
	color: var(--primary-background-color);
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	margin-top: 10px;
}

.tile a:hover {
	text-decoration: none;
	/* Ensure no underline on hover */
}

/* Hover effect for tiles */
.tile:hover {
	transform: scale(1.05) rotateY(10deg);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-branding {
	position: relative;
	padding-bottom: 3vh;
	text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {

	html,
	body {
		overflow-x: hidden !important;
		width: 100%;
	}

	body {
		overflow-x: hidden !important;
	}

	.topper {
		min-height: 5vh;
	}

	h1 {
		font-size: 2rem;
	}

	.tile-container {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 20px;
		padding: 20px;
	}

}


p a {
	color: #e61618;
	/* Change text color */
	text-decoration: none;
	/* Remove underline */
	font-weight: bold;
}

p a:hover {
	text-decoration: underline;
	/* Add underline on hover */
}


.Header-ticker {
	position: fixed;
	left: 0.1%;
	top: 0;
	/*width: 3.5vw;*/
	width: 10vh;
	height: 100%;
	border-right: 0.01vw solid #c2c2c2;
	background-color: #f1f1f1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 3;
}

/* Ticker Container */
.ticker-container {
	position: relative;
	height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-transform: none;
}

.ticker-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ticker-text {
	will-change: transform;
	font-size: 1.8rem;
	font-weight: 600;
	color: black;
	transform: rotate(-90deg);
	white-space: nowrap;
	align-items: center;
	justify-content: center;
}



.logo-wrapper {
	position: fixed;
	/*width: 3.65vw;*/
	width: 10.4vh;
	height: 9vh;
	z-index: 10;
}

.logo-image {
	background-image: url('../images/rooting_research_transparent.webp');
	background-size: cover;
	/* Ensures the image covers the entire div */
	background-repeat: no-repeat;
	/* Ensures no repetition of the image */
	background-position: center;
	/* Centers the image within the div */
	position: absolute;
	width: 100%;
	/* Ensures the image takes up the full width of the wrapper */
	height: 100%;
	/* Ensures the image takes up the full height of the wrapper */
	transform: scale(1);
	opacity: 1;
}


/*Navbar code starts here */
/* Transparent Navbar */
/* Navbar container */

nav {
	padding: 1em;
	display: flex;
	justify-content: space-between;
}

nav div {
	font-size: 1.5rem;
	font-weight: 300;
}


nav a {
	/* Navbar links */
	/*background-color: var(--nav-bg-color);*/
	color: var(--footer-text-color);
	background-color: transparent;
	/*padding: 0.25em 0.75em;*/
	/*border-radius: 5em;*/
	/*color: #f1f1f1;*/
	text-decoration: none;
	margin-inline-start: 0.5em;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	/*background: rgba(255, 255, 255, 0.1); */
	/* Transparent */
	/* backdrop-filter: blur(10px); */
	/* Glass effect */
	padding: 1.2vw 1.2vw;
	display: flex;
	justify-content: flex-end;
	/* Moves everything to the right */
	align-items: center;
	opacity: 0;
	z-index: 10;
}

/* Navigation Menu */
.nav-menu {
	list-style: none;
	padding: 0;
	margin-right: 4rem;
	display: flex;
	gap: 0.1vw;
}

.nav-menu li {
	position: relative;
}

.nav-menu li:hover>a {
	color: #e61618 !important;
	/* Change this to any color you like */
}

/* Menu Items */
.nav-menu a {
	text-decoration: none;
	/*background-color: var(--nav-bg-color);*/
	background-color: transparent;
	/* Removes background */
	color: var(--nav-text-color) !important;
	/* Ensure text color updates */
	/*color: white;*/
	font-size: 1.5rem;
	font-weight: 500;
	/*padding: 0.7vw 1vw;
	transition: background 0.3s, color 0.3s;*/
	padding: 0.5rem;
	/* Removes padding */
	transition: color 0.3s;
	/* Just transition the color */
}

/* Hover Effect */
.nav-menu a:hover {
	/*background: var(--nav-hover-color);*/
	/* Adjust hover background */
	color: var(--nav-bg-color);
	/* Use dynamic color */
	/*background: rgba(0, 0, 0, 0.06);
	color: black;*/
	border-radius: 5em;
}

/* Dropdown Menu */

/* Show Dropdown on Hover */

/* Dropdown Items */

/* Change color on hover */

.shuffle-text span {
	display: inline-block;
	position: relative;
}

.designer-footer {

	position: fixed;
	bottom: 1vh;
	/* Adjust spacing from bottom */
	right: 0%;
	/* Adjust spacing from right */
	transform: scale(0.7);
	opacity: 0;
	z-index: 20;
	color: black
		/* Apply the dynamic text color */

}


.page {
	padding-inline: 2em;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.loader {
	z-index: 9999;
	/* Ensure it's on top */
}

body.loading .loader {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background-color: #f1f1f1;
}

.loader img {
	width: 15rem;
}


section>.title {
	color: rgb(255, 255, 255);
	text-align: center;
	padding: 4em 2em;
}

.final>.title {
	padding-block-end: 0;
}

.final {
	position: relative;
	bottom: 0;
	margin-left: 4.5vw;
	width: 100%;
	color: black;
	z-index: 10;
	/*background-color: rgb(23, 16, 16); */
}

@keyframes marquee {
	from {
		translate: 0% 0;
	}

	to {
		translate: -100% 0;
	}
}


@media (orientation: landscape) {
	/* Desktop */

	body {
		overflow-x: hidden !important;
	}

	html,
	body {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
	}

	.right {
		translate: 0 50%;
	}

	.right {
		text-align: right;
	}

	.page>.right {
		width: 40%;
	}

	section>.title {
		padding-block: 5em;
	}



}

.Header-ticker {
	z-index: 5 !important;
	/* Ensure ticker is above folder-tabs*/
}

.folder-tabs {
	position: fixed;
	top: 9vh;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	background: var(--secondary-background-color);
	padding: 10px 0;
	z-index: 4;
	/* Fixed to keep it above section1 */
}

.tab {
	padding: 10px 20px;
	margin: 0 5px;
	background: var(--file-color);
	color: white;
	font-family: var(--body-text-font);
	font-size: 1.3rem;
	font-weight: 500;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	transition: all 0.3s ease;
	position: relative;
	top: 0;
	border: 2px solid transparent;
	border-bottom: none;
	text-align: center;
}

.tab.active {
	top: -10px;
	/* Pulls the active tab up */
	background-color: var(--primary-background-color);
	color: #f1f1f1;
}

.tab:not(.active):hover {
	background: var(--file-color);
	opacity: 0.8;
}

.section {
	position: absolute;
	max-height: 300vh !important;
	display: none;
	align-items: center;
	justify-content: center;
	color: white;
	background-color: var(--secondary-background-color);
	text-align: center;
	background-size: cover;
	background-position: center;
	top: 18.5vh;
	left: 4.6vw;
	z-index: 1;
	width: 100%;
	opacity: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
	transform: translateY(20px);
}

.section.active {
	display: block;
	overflow-y: auto;
	z-index: 10;
	opacity: 1;
	transform: translateY(0);
}

/*
.content {
	background: rgba(0, 0, 0, 0.6);
	padding: 20px;
	border-radius: 10px;
	max-width: 600px;
	border: 2px solid var(--file-color);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}*/

#section2 {
	position: absolute;
	display: grid !important;
	/* Use grid layout - overwite js */
	grid-template-columns: repeat(3, 1fr);
	/* 3 columns */
	grid-template-rows: repeat(4, auto);
	/* 4 rows */
	gap: 20px;
	/* Space between grid items */
	justify-content: center;
	justify-items: center;
	align-items: start;
	max-width: 90vw;
	/* Adjust width to fit content */
	margin: auto;
	top: 22vh;
	left: 7vw;
	z-index: 1;
	padding-bottom: 15vh;
}

.image-box {
	
	max-width: 256px;
	display: flex;
	flex-direction: column;
	/* Stack image and description vertically */
	/*align-items: center;*/
	/* Center content horizontally */
	text-align: left;
	/* Center text */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	/* Smooth transitions */
	transform-style: preserve-3d;
	/* Enable 3D transformations */

}


.image-box img {
	text-align: center;
	width: 100%;
	/* Ensure images take full width of their container */
	/*filter: grayscale(100%);*/
	/* Make the image black and white by default */
	max-width: 256px;
	/* Limit image size */
	max-height: 256px;
	background: radial-gradient(circle at center, #333 0%, #000 100%);
	border-radius: 10px;
	/* Optional: Add rounded corners */
	/*transition: filter 0.5s ease;*/
	/* Smooth transition for the filter */

}

.image-box img:hover {
	transform: scale(1.05);
	/* Slightly enlarge on hover */
	/*filter: grayscale(0%);*/
	/* Restore original colors on hover */
}

.image-box h1 {
	font-family: var(--body-text-font);
	margin-top: 15px;
	text-align: left;
	/* Space between image and description */
	font-size: 2rem;
	/* Adjust font size as needed */
	/*color: #333;*/
	color: var(--primary-background-color);
	/* Text color */
}

.image-box h2 {
	font-family: var(--body-text-font);
	/* Space between image and description */
	font-size: 1.3rem;
	line-height: 1.8;
	text-align: left !important;
	/* Adjust font size as needed */
	color: #333;
	/* Text color */
}

.image-box p {
	width: 100%;
	font-family: var(--body-text-font);
	text-transform: none;
	text-align: left;
	margin-top: 4px;
	/* Space between image and description */
	font-size: 1.3rem;
	/* Adjust font size as needed */
	color: #333;
	/* Text color */
}

/* Section 1 */

#section1 {
	--primary-accent: #ce1316;
	--secondary-accent: #fc4145;
	--dark-bg: #e61618;
	--light-text: #F8F9FA;
	--shadow-depth: 0 10px 30px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
	padding: 0;
	top: 10vh;
	left: 7vw;
	width: 90%;
	/*background: #111; Dark background to match Ravzzy */
	color: #fff;
	padding-bottom: 40px;
}

.modern-about-container {
	position: relative;
	justify-items: center;
	width: 100%;
	margin: 0 auto;
}

/* Split Hero Section (unchanged) */
.split-hero {
	display: flex;
	min-height: 60vh;
	position: relative;
	margin-bottom: 80px;
}

.image-half,
.content-half {
	flex: 1;
}

.image-container {
	position: relative;
	top: 7vh;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.content-half {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.quote-container {
	max-width: 500px;
	position: relative;
}

.quote-icon {
	width: 40px;
	height: 40px;
	/*fill: #fff;*/
	fill: var(--primary-background-color);
	margin-bottom: 20px;
}

.impact-statement {
	font-size: 3.5rem;
	line-height: 1.4;
	font-weight: 500;
	/*color: #fff;*/
	color: #111;
	position: relative;
	text-transform: none;
	font-family: var(--header-h3-text-font);
}

.cards-wrapper {
	margin-top: 30vh; /* Pushes cards to 2nd viewport */
}

.card-list {
	margin-top: 0 !important; /* Prevent double spacing from existing responsive margin-top */
	position: relative;
	width: 90vw;
	display: flex;
	padding: 1.5rem;
	overflow-x: scroll;
	flex-direction: row-reverse;
}

.card {
	height: 55vh;
	width: 20vw;
	min-width: 12vw;
	padding: 1.5rem;
	border-radius: 16px;
	/*background: #17141d;*/
	background: #f1f1f1;
	/*box-shadow: -1rem 0 3rem #000;*/
	box-shadow: -1rem 0 3rem rgba(230, 22, 24, 0.5);
	display: flex;
	flex-direction: column;
	transition: .2s;
	margin: 0;
	scroll-snap-align: start;
	clear: both;
	position: relative;
}

.card-list::-webkit-scrollbar {
	width: 0px;
	height: 0px;
}

.card-list::-webkit-scrollbar-thumb {
	background: #201c29;
	border-radius: 10px;
	box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, .25), inset -2px -2px 2px rgba(0, 0, 0, .25);
}

.card-list::-webkit-scrollbar-track {
	background: linear-gradient(90deg, #201c29, #201c29 1px, #17141d 0, #17141d);
}

.card:hover {
	transform: translateY(-1rem);
}

.card:focus-within~.card,
.card:hover~.card {
	transform: translateX(-130px);
}

.card:not(:first-child) {
	margin-right: -130px;
}

.card-header {
	margin-bottom: auto;
}

.card-header p {
	font-size: 13px;
	margin: 0;
	/*color: #7a7a8c;*/
	color: #111;
	text-transform: none;
}

.card-header h2 {
	font-size: 20px;
	margin: .25rem 0 auto;
	text-decoration: none;
	/*color: inherit;*/
	color: #e61618;
	border: 0;
	display: inline-block;
	cursor: pointer;
	font-family: var(--header-h3-text-font);
	text-transform: none;

}

.card-header h2:hover {
	background: linear-gradient(90deg, #ff8a00, #e52e71);
	text-shadow: none;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}

.card-author {
	margin: 3rem 0 0;
	display: grid;
	grid-template-columns: 75px 1fr;
	align-items: center;
	position: relative;
}


/* Responsive Adjustments */
@media (max-width: 768px) {

	#section1 {
		width: calc(100% - 11vw);
		left: 11vw;
	}

	.split-hero {
		flex-direction: column;
		min-height: auto;
	}

	.image-container {
		top: 5vh;
		left: 0;
		width: 90%;
		margin: 0 auto;
	}

	.quote-container {
		left: 0;
		margin: 0 auto;
		width: 90%;

	}

	.impact-statement {
		font-size: 2.7rem;
		padding: 0%;

	}

	.card-list {
		margin-top: 2vh;
		flex-direction: column-reverse;
		align-items: center;
		padding: 1rem;
	}

	.card {
		width: 70vw;
		height: 35vh;
		margin: 0 0 2rem;
	}


	.card:hover {
		transform: translateY(0);
	}

	.card:focus-within~.card,
	.card:hover~.card {
		transform: translateX(0);
	}

	.card:not(:first-child) {
		margin-right: 0;
	}

}

/* Section 3 */

#section3 {
	position: absolute;
	width: calc(100% - 4.6vw);
	padding: 40px;
	line-height: 1.6;
	z-index: 1;
	justify-items: center;
	text-transform: none;
	padding: 60px 20px;
	display: flex;
}

.content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2rem;
	text-align: left;
}

.founder-info {
	display: flow-root;
	/* Modern clearfix */
}

.founder-image {
	width: 320px;
	float: left;
	top: -2vh;
	left: -2vw;
	shape-outside: margin-box;
	margin: 0 2rem 1rem 0;
	position: relative;
	z-index: 1;
	/* Add border-radius here to maintain shape during zoom */
	border-radius: 8px;
	/* Temporary overflow visible during zoom */
	overflow: visible;
  }
  
  .founder-image-inner {
	border-radius: inherit; /* Inherit from parent */
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	/* Ensure this container maintains the rounded shape */
	transform: translateZ(0); /* GPU acceleration */
	height: 100%; /* Maintain aspect ratio */
  }
  
  .founder-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
	border-radius: inherit; /* Match parent rounding */
  }
  
  .founder-image:hover img {
	transform: scale(1.05);
  }

.founder-text {
	position: relative;
	font-family: var(--section-text-font);
	font-size: 2.2rem;
}

/* Typography styling */
.founder-text h1 {
	font-weight: 700;
	color: black;
	margin-top: -40px;
	margin-bottom: 20px;
	font-size: 6rem;
	font-family: var(--header-h3-text-font);
}

.founder-text h2 {
	font-weight: 700;
	color: black;
	margin-bottom: 20px;
	font-size: 4rem;
	font-family: var(--header-h3-text-font);
}



.founder-text p {
	text-align: justify;
	color: #333;
	margin-bottom: 25px;
	font-weight: 600;

}


/* Force content to start below image after certain point */
.founder-text h1:nth-of-type(2),
.founder-text h1:nth-of-type(3) {
	clear: both;
	padding-top: 1.5rem;
}

/* Publications list should always be full-width */
.founder-text ul {
	clear: both;
}

.founder-text ul {
	list-style-type: none;
	padding-left: 0;
	margin: 40px 0;
}

.founder-text li {
	font-family: var(--section-text-font);
	font-size: 1.8rem;
	font-weight: 600;
	color: #333;
	text-align: left;
	text-transform: none;
	margin-bottom: 15px;
	padding: 10px;
	background: #ffffff;
	border-radius: 8px;
	transition: all 0.3s ease;
	border-left: 4px solid #803d2c;
	box-shadow: 0 6px 20px rgba(0, 9, 180, 0.08);
}

.founder-text ul li a {
	text-decoration: none;
	color: inherit;
  }

.founder-text ul li::before {
	color: #803d2c;
	position: absolute;
	left: 10px;
}

.founder-text ul li:hover {
	transform: translateX(8px);
	border-left: 4px solid #e61618;
	box-shadow: 0 4px 15px rgb(243, 96, 96);

}

/* Link styling (optional) */
.founder-text a {
	color: #702f1e;
	text-decoration: underline;
}

#section3 strong {
	font-family: var(--header-h1-text-font);
	display: block;
	text-transform: none;
	text-align: left;
	font-size: 3rem;
	color: #333333;
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
	#section3 {
		position: relative;
		width: 100%;
		top: 12vh !important;
		padding: 30px 15px;
		display: block;
	}

	.content {
		padding: 0;
	}

	.founder-image {
		width: 100%;
		max-width: 280px;
		float: none;
		margin: 0 auto 30px;
		top: -3vh;
		left: 0;
		display: block;
	}

	.founder-text {
		padding: 15px;
	}

	.founder-text h1 {
		font-size: 3.5rem;
		margin-bottom: 15px;
		line-height: 1.2;
	}

	.founder-text h2 {
		font-size: 2.5rem;
		margin-bottom: 15px;
		text-align: center;

	}

	.founder-text p {
		font-size: 1.6rem;
		margin-bottom: 20px;
		text-align: justify;
		padding: 15px;
	}

	.founder-text li {
		font-size: 1.5rem;
		padding: 15px;
		margin-bottom: 12px;
	}

	#section3 strong {
		font-size: 2rem;
		padding-left: 10px;

	}

	/* Reset clearing for mobile */
	.founder-text h1:nth-of-type(2),
	.founder-text h1:nth-of-type(3) {
		clear: none;
		padding-top: 0;
	}
}


@media (orientation: portrait) {
	/* Mobile */


	body {
		overflow-x: hidden;
		/* Prevents horizontal scrolling */
		touch-action: pan-y;
		/* Ensures smooth vertical scrolling */
	}

	.Header-swimlane {
		height: 5vh;
	}

	.Header-swimlane-Text {
		font-size: 1.2rem;
		font-weight: 600;
		top: 1.5%;
		left: 15%;

	}

	/* hide the cross button */

	.change .line-1,
	.change .line-2,
	.change .line-3 {
		transform: none !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	.logo-wrapper {
		width: 5.05vh;
		height: 5vh;
	}

	.navbar {
		display: none;
		/* Completely hides the navbar on mobile */
	}

	.Header-ticker {
		width: 5vh;

	}


	/* footer-message text */

	.page .right {
		/* Correct way to target <div class="right"> inside .page */
		margin-top: 5em;
	}

	.designer-footer {
		bottom: 5px;
		/* Adjust spacing from bottom */
		right: 0%;
		/* Adjust spacing from right */
		opacity: 0;
		transform: scale(0.5);
		color: black;
		z-index: 20;
	}

	#form {
		display: none !important;
		/* Hides the contact us form */
	}

	.folder-tabs {
		position: absolute;
		width: 70%;
		left: 18vw;
		padding: 0;

	}

	.tab {
		padding: 10px;
		margin: 0 2px;

	}


	#section2 {
		grid-template-columns: 1fr;
		/* 1 column layout */
		grid-template-rows: auto;
		/* Automatically adjust rows */
		gap: 30px;
		left: 10vw;
		top: 18vh;
		/* Reduce spacing for better mobile layout */
	}

	.image-box {
		width: 100%;
		/* Make items take full width */
		text-align: center;
		/* Ensure text is centered */
	}


}