/* =============================== */
/* PROJECTS HOME SECTION */
/* =============================== */
.dr1056projectshome {
	padding: 80px 20px;
	background: #0f0f0f;
	color: #fff;
	text-align: center;
}

.projects-home-container {
	max-width: 1200px;
	margin: auto;
}

.dr1056projectshome h2 {
	font-size: 38px;
	margin-bottom: 10px;
	background: linear-gradient(90deg, #ffffff, #d4af37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.projects-subtitle {
	opacity: 0.7;
	margin-bottom: 40px;
	font-size: 16px;
}

/* =============================== */
/* GRID */
/* =============================== */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

/* =============================== */
/* CARD */
/* =============================== */
.project-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 18px;
	overflow: hidden;
	backdrop-filter: blur(10px);
	transition: 0.4s ease;
	transform: translateY(40px);
	opacity: 0;
}

/* reveal animation */
.project-card.show {
	transform: translateY(0);
	opacity: 1;
}

/* hover */
.project-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

/* =============================== */
/* IMAGE (NO CROP + CLEAN) */
/* =============================== */
.project-card img {
	width: 100%;
	height: auto;
	max-height: 220px;
	object-fit: contain;
	background: #000;
	padding: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* =============================== */
/* CONTENT */
/* =============================== */
.project-content {
	padding: 18px;
	text-align: left;
}

.project-content h3 {
	margin-bottom: 6px;
	font-size: 18px;
	font-weight: 600;
}

.project-location {
	font-size: 13px;
	opacity: 0.7;
	margin-bottom: 10px;
}

.project-price {
	font-weight: bold;
	color: #facc15;
	font-size: 15px;
}

/* =============================== */
/* MORE BUTTON */
/* =============================== */
.projects-more {
	margin-top: 40px;
}

.projects-more-btn {
	display: inline-block;
	padding: 14px 30px;
	background: linear-gradient(90deg, #d4af37, #facc15);
	color: #000;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s ease;
}

.projects-more-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* =============================== */
/* TABLET */
/* =============================== */
@media ( max-width : 992px) {
	.projects-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* =============================== */
/* MOBILE */
/* =============================== */
@media ( max-width : 768px) {
	.dr1056projectshome {
		padding: 60px 15px;
	}
	.dr1056projectshome h2 {
		font-size: 28px;
	}
	.projects-subtitle {
		font-size: 14px;
		margin-bottom: 30px;
	}
	.projects-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.project-card img {
		max-height: 200px;
	}
	.project-content {
		padding: 15px;
	}
}