:root {
	--primary-background-color: #0f172a;
	--primary-green-color: green;
	--primary-deepsea-blue: #315665;
	--primary-white: #ffffff;
	--primary-offwhite: #f8fafc;
	--primary-black: #000000;
	--content-width: 1200px;
	--content-padding: 5px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 15px;
	color: #2c3e50;
}
.nav {
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: row;
	flex-shrink: 0;
	height: 100px;
	overflow: visible;
}
.nav ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	height: 100px;
    background-color: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	position: fixed;
	top: 0;
	z-index: 9999;
}
.nav a {
	cursor: pointer;
}
.nav img {
	margin-left: 20px;
	margin-right: 40px;
	height: 50px;
	width: auto;
	filter: saturate(150%);
}
.mainList a {
	color: var(--primary-background-color);
	margin-right: 35px;
	text-decoration: none;
	font-weight: 600;
	font-size: 17px;
	letter-spacing: 0.5px;
	transition: color 0.2s ease, transform 0.2s;
}
.mainList > a:hover {
	color: var(--primary-green-color);
	transform: translateY(-1px);
}
.search-bar {
	margin-left: auto;    
	margin-right: 40px;
	display: flex;
	align-items: center;
}
.search-bar input[type="search"] {
	height: 32px;
	width: 190px;
	padding: 0 14px;
	border: 1px solid rgba(152, 25, 255, 0.2);
	border-radius: 20px 0 0 20px;
	background-color: rgba(0, 0, 0, 0.20);
	color: var(--primary-black);
	outline: none;
	font-size: 13px;
	transition: all 0.3s ease;
}
.burger-menu {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 22px;
	cursor: pointer;
	position: fixed;
	top: 16px;
	right: 20px;
	z-index: 10000;
}
.container {
    height: 100vh;
}
.profiles {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, minmax(0, 350px));
    gap: 3rem;
    min-height: 100vh;
    background-color: var(--primary-background-color);
}
.first-profile, 
.second-profile {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    max-height: 450px;           /* Replaces min-height for uniform layout */
    width: 100%;             /* Fills the grid track up to 300px max */
    margin: 1.5rem;
}