@import url("reset.css");
@import url("layout.css");
@import url("variables.css");
@import url("typography.css");
@import url("https://fonts.googleapis.com/css2?family=Cambay:ital,wght@0,400;0,700;1,400;1,700&display=swap");

/* ------------------ Global Styles ----------------- */
body {
	font-family: "Cambay", Arial, Helvetica, sans-serif;
}

/* ------------------ Header Styles ----------------- */
.main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 30px 20px 10px;
	background-color: #1a1a1a;
}

.logo {
	height: 110px;
}

.hamburger {
	width: 80px;
	display: none;
}

.primary-nav {
	display: flex;
	gap: 50px;
}

.primary-nav li {
	list-style-type: none;
	padding: 10px 0;
}

.primary-nav a {
	padding: 10px 20px;
	transition: all 0.3s ease;
	color: white;
	text-decoration: none;
	font-size: 21px;
	display: block;
	font-weight: 400;
}

.primary-nav a:hover {
	color: #1a1a1a;
	background-color: #ffffff;
	border-radius: 5px;
}

.primary-nav a:active {
	color: #ffffff;
	background-color: #1a1a1a;
	transform: scale(0.95);
}

/* ------------------ Main Content Styles ----------------- */
.container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 35px;
}

.work {
	margin: 20px 27px;
}

.background-image {
	position: relative;
	z-index: 1;
	margin: 12px;
	background-image: url(images/star.svg);
	background-size: 1800px;
	height: 164px;
}

/* ------------------ Flex Item Styles ----------------- */
.flex-item {
	position: relative;
	overflow: hidden;
}

.flex-item img {
	transition: transform 0.3s ease, filter 0.3s ease;
}

.hover-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.flex-item:hover .hover-text {
	opacity: 1;
}

.flex-item:hover img {
	transform: scale(1.1);
	filter: brightness(0.7);
}

.flex-item:active img {
	transform: scale(0.95);
}

a.flex-item {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	border: 2px solid #1a1a1a;
	border-radius: 30px;
	position: relative;
	z-index: 2;
}

a.flex-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 27px;
}

.border {
	border-color: #1a1a1a;
	border-radius: 30px;
	border-style: solid;
	border-width: 2px;
}

/* ------------------ Footer Styles ----------------- */
footer {
	padding: 220px 0 45px 0;
	background: white;
	color: #1a1a1a;
	text-align: center;
	position: relative;
}

.footer-logo {
	height: 110px;
	margin: 0 auto 20px;
	display: block;
}

.footer-line {
	width: 20%;
	height: 1px;
	background: #1a1a1a;
	margin: 10px auto;
}

.social-links {
	margin: 10px 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.social-links a img {
	height: 70px;
	margin: 30px 5px;
	border-radius: 13px;
}

/* ------------------ About Section Styles ----------------- */
.about-section {
	padding: 35px 0;
	width: 100%;
}

.about-content {
	margin: 0 auto;
	padding: 120px 25% 120px 25%;
	text-align: left;
	width: auto;
	background-color: white;
}

.about-text {
	font-size: 23px;
	line-height: 1.6;
	text-align: left;
}

.about-text p {
	margin-bottom: 20px;
}

/* ------------------ Project Section Styles ----------------- */
.project-section {
	width: 100%;
}

.project-background {
	background-color: #1a1a1a;
	width: 100%;
	padding: 40px 0;
	position: relative;
	z-index: 1;
	margin: 25px 0;
}

.project-content {
	margin: 0 auto;
	width: auto;
	background-color: white;
}

.project-content-text {
	margin: 0 auto;
	padding: 20px 25% 80px 25%;
	width: auto;
	background-color: white;
}

.project-content h1 {
	font-size: 36px;
	margin-bottom: 20px;
}

.project-text {
	font-size: 20px;
	line-height: 1.6;
	text-align: center;
}

.project-text p {
	margin-bottom: 20px;
}

.project-image-main {
	max-width: 864px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.project-imag-main img {
	width: 100%;
	height: auto;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-images-detail {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 40px;
}

.project-images-detail img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ------------------ Media Queries ----------------- */
@media (max-width: 600px) {
	/* Mobile-specific styles */
}

@media (min-width: 768px) {
	/* Tablet and above styles */
}

@media (max-width: 900px) {
	.primary-nav {
		flex-direction: column;
		align-items: flex-end;
		gap: 0;
	}

	.primary-nav a {
		padding: 5px;
	}

	.hamburger {
		width: 80px;
		display: flex;
		justify-content: flex-end;
		margin-bottom: 20px;
	}

	.menu {
		display: none;
	}

	.main-header {
		align-items: flex-start;
	}
}

@media (min-width: 1080px) {
	/* Large tablet and above styles */
}

@media (min-width: 1300px) {
	/* Desktop and above styles */
}
