:root {
	--bg-color: #0f111a;
	--card-bg: #1a1d29;
	--accent: #7c4dff;
	--text: #e0e0e0;
	--radius: 16px;
}

body {
	background-color: var(--bg-color);
	color: var(--text);
	font-family: system-ui, sans-serif;
	margin: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.marquee-container {
	background: rgba(124,77,255,0.1);
	overflow: hidden;
	padding: 10px 0;
}

.marquee {
	display: flex;
	overflow: hidden;
	white-space: nowrap;
}

.marquee-track {
	display: flex;
	gap: 2rem;
	animation: scroll 12s linear infinite;
	width: max-content;
}

.marquee-track span {
	font-weight: 500;
	white-space: nowrap;
}

.dot {
	opacity: 0.6;
}

@keyframes scroll {
	from { transform: translateX(0%); }
	to   { transform: translateX(-50%); }
}

header {
	text-align: center;
	padding: 3rem 1rem;
}

header h1 {
	font-size: 2.5rem;
	margin: 0;
}

.gallery {
	columns: 4 280px;
	column-gap: 2rem;
	padding: 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.card {
	background: var(--card-bg);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 2rem;
	break-inside: avoid;
	transition: transform 0.3s ease;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.card:hover {
	transform: translateY(-8px);
}

.card img {
	width: 100%;
	height: auto;
	display: block;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.card-footer {
	padding: 1rem;
	color: #aaa;
	font-size: 0.95rem;
	line-height: 1.45;
	flex-shrink: 0;
}

.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.96);
	z-index: 10000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.lightbox.active {
	display: flex;
}

.lightbox-content {
	position: relative;
	max-width: 95%;
	max-height: 95vh;
}

.lightbox img {
	max-width: 100%;
	max-height: 92vh;
	border-radius: 12px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.8);
	display: block;
}

.lightbox-close {
	position: absolute;
	top: -60px;
	right: 10px;
	background: rgba(255,255,255,0.25);
	color: white;
	border: none;
	width: 55px;
	height: 55px;
	font-size: 38px;
	line-height: 50px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10001;
	transition: background 0.2s;
}

.lightbox-close:hover {
	background: rgba(255,255,255,0.4);
}

.lightbox-buttons {
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10001;
}

.lightbox-btn {
	background: rgba(255,255,255,0.15);
	color: white;
	border: none;
	padding: 10px 22px;
	border-radius: 8px;
	font-size: 1rem;
	cursor: pointer;
}

.lightbox-btn:hover {
	background: var(--accent);
}

footer {
	text-align: center;
	padding: 2rem;
	opacity: 0.6;
	font-size: 0.8rem;
	margin-top: auto;
}

.highlight {
	background-color: #330000;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid #ff4444;
	margin: 25px 0;
}

@media (max-width: 1100px) {
	.gallery {
		columns: 3 260px;
	}
}

@media (max-width: 700px) {
	.gallery {
		columns: 2 240px;
		column-gap: 1.5rem;
		padding: 1.5rem;
	}

	.card {
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 480px) {
	.gallery {
		columns: 1 280px;
	}
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

header h1 {
	font-size: 2.5rem;
	margin: 0;
	text-align: center;
	flex: 1;
}

.profile-pic {
	position: absolute;
	right: 20px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--accent);
	box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.profile-pic:hover {
	transform: scale(1.08);
}

.profile-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

header {
	padding: 2.5rem 1rem 2rem;
}

/* Home Page styles*/
.home-card {
	background: var(--card-bg);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.5rem 1rem;
	text-align: center;
}

.home-card:hover {
	transform: translateY(-8px);
}

.home-card-pic {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid var(--accent);
	margin-bottom: 1rem;
	box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
}

.home-card-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-card-content h3 {
	margin: 0.5rem 0 0.3rem 0;
	font-size: 1.4rem;
}

.home-card-content p {
	color: #aaa;
	font-size: 0.95rem;
	line-height: 1.4;
}

.profile-pic {
	position: absolute;
	right: 20px;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--accent);
	box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
	transition: transform 0.3s ease;
}

.profile-pic:hover {
	transform: scale(1.08);
}

.profile-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dropdown-container {
	text-align: center;
	margin: 2rem 0;
}

.dropdown-container select {
	padding: 12px 20px;
	font-size: 1.1rem;
	background: var(--card-bg);
	color: var(--text);
	border: 2px solid var(--accent);
	border-radius: 12px;
	cursor: pointer;
	min-width: 260px;
}

.dropdown-container select:focus {
	outline: none;
	border-color: #a78bfa;
}
