/* HERO */
.home-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 500px;
	max-height: 900px;
	overflow: hidden;
	background: #131b23;
}

.home-hero-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	background: linear-gradient(0deg, rgba(19,27,35,0.55), rgba(19,27,35,0.15));
	padding: 20px;
}

.home-hero-titlu {
	font-family: "Playfair Display", serif;
	font-size: clamp(28px, 5vw, 46px);
	margin: 0 0 16px;
}

.home-hero-text {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	max-width: 500px;
	margin: 0 0 24px;
}

/* SECTIUNI GENERALE */
.home-section {
	padding: 70px 20px;
}

.home-section--light {
	background: #ebe7e1;
}

.home-section--dark {
	background: #131b23;
}

.home-section-titlu {
	font-family: "Playfair Display", serif;
	font-weight: 400;
	font-size: clamp(28px, 4vw, 38px);
	text-align: center;
	max-width: 1200px;
	margin: 0 auto 40px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(19,27,35,0.25);
}

.home-section--dark .home-section-titlu {
	color: #fff;
	border-bottom-color: rgba(255,255,255,0.25);
}

/* CE NE RECOMANDA - overlay stil consistent cu restul site-ului */
.home-recomanda-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.home-recomanda-card {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #d8d3ca;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.home-recomanda-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}

.home-recomanda-img,
.home-recomanda-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-recomanda-img img {
	transition: transform 0.6s ease;
}

.home-recomanda-card:hover .home-recomanda-img img {
	transform: scale(1.06);
}

.home-recomanda-overlay {
	position: absolute;
	left: 20px;
	bottom: 20px;
	padding: 14px 22px;
	background: rgba(19,27,35,0.55);
	backdrop-filter: blur(4px);
}

.home-recomanda-titlu {
	font-family: "Playfair Display", serif;
	font-size: 20px;
	color: #fff;
}

/* NOUTATI */
.home-noutati-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.home-noutati-card {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #1c2530;
	text-decoration: none;
}

.home-noutati-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.home-noutati-card:hover img {
	transform: scale(1.08);
}

.home-noutati-titlu {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 16px;
	background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
	color: #fff;
	font-family: "Playfair Display", serif;
	font-size: 16px;
}

.home-buton {
	display: inline-block;
	padding: 12px 28px;
	border: 1px solid #fff;
	color: #fff;
	text-decoration: none;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	letter-spacing: 0.5px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.home-buton:hover {
	background: #fff;
	color: #131b23;
}

@media (max-width: 900px) {
	.home-recomanda-grid,
	.home-noutati-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.home-recomanda-grid,
	.home-noutati-grid {
		grid-template-columns: 1fr;
	}

	.home-section {
		padding: 50px 16px;
	}

	.home-hero {
		height: 70vh;
	}
}