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

body {
	font-family: sans-serif;
	line-height: 1.6;
	color: #222;
	background: #fff;
	padding: 0 1rem;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

h1,
h2,
h3 {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

section {
	margin: 4rem 0;
}

.section-header {
	text-align: center;
}

/* HERO */
.hero {
	text-align: center;
	padding: 4rem 0;
}

.hero-icon {
	width: 32px;
	height: 32px;
	margin-right: 0.5rem;
}

.site-title {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.tagline {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: #555;
}

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: #222;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s ease;
}

.btn:hover {
	background: #444;
}

/* HIGHLIGHTS */
.highlighted-projects .container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	gap: 2rem;
	text-align: center;
}

.highlighted-content {
	color: #555;
}

.highlighted-card {
	display: block;
	padding: 2rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	text-decoration: none;
	color: inherit;
	transition:
		box-shadow 0.2s ease,
		transform 0.2s ease;
}
.highlighted-card:hover {
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
	transform: translateY(-4px);
	cursor: pointer;
}

/* FEATURED */
/* .featured-projects {
    
} */

.featured-content {
	display: flex;
	gap: 2rem;
	align-items: center;
	flex-wrap: wrap;
	margin: 1rem;
}

.featured-image {
	flex: 1;
}

.featured-text {
	flex: 1;
}

.featured-text .btn {
	margin-top: 1rem;
}

.image-placeholder {
	width: 100%;
	height: 250px;
	background: #ddd;
	border-radius: 6px;
}

/* CURRENT PROJECT */
.project-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}
.project-card {
	border: 1px solid #ddd;
	padding: 1.5rem;
	border-radius: 6px;
}
.project-card p {
	color: #555;
	margin-bottom: 1rem;
}
.project-link {
	color: #222;
	text-decoration: underline;
}

/* FOOTER */
.footer {
	text-align: center;
	padding: 2rem 0;
	color: #555;
}

.footer-nav a {
	color: #222;
	text-decoration: none;
	margin: 0 0.5rem;
}

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

/* RESPONSIVE */
@media (max-width: 800px) {
	.highlights {
		grid-template-columns: 1fr;
	}
	.featured-content {
		flex-direction: column;
	}
	.site-title {
		font-size: 2.25rem;
	}
}

/* Project Page */
.project-hero {
	text-align: center;
	margin-bottom: 3rem;
}

.project-links {
	margin: 1.5rem 0;
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.btn-outline {
	padding: 0.75rem 1.5rem;
	border: 1px solid #222;
	color: #222;
	background: none;
	border-radius: 4px;
	text-decoration: none;
}

.btn-outline:hover {
	background: #ddd;
	transition: background 0.2s ease;
}

.project-media img,
.project-media video {
	width: 100%;
	border-radius: 6px;
	margin-top: 2rem;
}

.project-details h2 {
	margin-top: 2rem;
}

.project-gallery {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Project List Page */
.projects-list-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.projects-list-card {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 1.5rem;
	background: #fff;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.projects-list-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.projects-list-thumb {
	width: 100%;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.projects-list-card-links {
	margin-top: 1rem;
	display: flex;
	justify-content: space-between;
}

.primary-link {
	font-weight: bold;
	text-decoration: none;
	color: #222;
}

.secondary-link {
	color: #555;
	text-decoration: underline;
}

/* Navigation */
.navbar {
	background: #fff;
	border-bottom: 1px solid #eee;
	padding: 1rem 0;
	position: sticky; /* optional */
	top: 0; /* optional */
	z-index: 1000; /* optional */
}

.nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	font-weight: 600;
	font-size: 1.25rem;
	color: #222;
	text-decoration: none;
}

.nav-links a {
	margin-left: 1.5rem;
	color: #222;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.nav-links a:hover {
	color: #555;
}

/* Art Page */

.art-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: flex-start;
}

.art-item {
	position: relative;
	cursor: pointer;
}

.art-item img {
	height: 400px;
	width: auto;
	object-fit: contain;
	background: #f8f8f8;
	border-radius: 4px;
	transition: transform 0.25s ease;
}


.art-overlay {
	height: 400px;
	width: auto;
	border-radius: 4px;
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition:
		background 0.2s ease,
		opacity 0.2s ease;
	pointer-events: none;
}

.art-item:hover .art-overlay {
	background: rgba(0, 0, 0, 0.6);
	opacity: 1;
}

.art-overlay span {
	font-size: 1.1rem;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	opacity: 0;
	transform: translateY(5px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.art-item:hover .art-overlay span {
	opacity: 1;
	transform: translateY(0);
}

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	z-index: 2000;

	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.lightbox.show {
	opacity: 1;
	pointer-events: auto;
}

.lightbox-content img {
	max-width: 90vw;
	max-height: 90vh;
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	transform: scale(0.95);
	transition: transform 0.25s ease;
}

.lightbox.show .lightbox-content img {
	transform: scale(1);
}
