/* Artisans Section */
.home-artisans {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 80px 20px;
}

.home-artisans__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.home-artisans__bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-artisans__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2;
}

.home-artisans__content {
	position: relative;
	z-index: 3;
	max-width: 1200px;
	text-align: center;
	color: #fff;
	padding: 40px;
}

.home-artisans__title {
	font-family: 'Arches';
	font-size: 4rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 0 0 20px 0;
	line-height: 1.2;
	color: #fff;
}

.home-artisans__subtitle {
    font-family: 'Rota';
    font-size: 29px;
    font-weight: 400;
    word-spacing: 6px;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    color: #fff;
    opacity: 1.9;
    font-weight: normal;
    letter-spacing: 16px;
    font-weight: lighter;
}

.home-artisans__description {
	font-family: 'Cormorant Infant', serif;
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1.8;
	margin: 0;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	color: #fff;
	opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.home-artisans {
		min-height: 80vh;
		padding: 60px 20px;
	}

	.home-artisans__title {
		font-size: 3rem;
	}

	.home-artisans__subtitle {
		font-size: 0.9rem;
		letter-spacing: 0.15em;
	}

	.home-artisans__description {
		font-size: 1.3rem;
	}
}

@media (max-width: 768px) {
	.home-artisans {
		min-height: 70vh;
		padding: 40px 20px;
	}

	.home-artisans__content {
		padding: 20px;
	}

	.home-artisans__title {
		font-size: 2.2rem;
		margin-bottom: 15px;
	}

	.home-artisans__subtitle {
		font-size: 0.75rem;
		letter-spacing: 0.1em;
		margin-bottom: 30px;
	}

	.home-artisans__description {
		font-size: 1.1rem;
		line-height: 1.6;
	}
}

@media (max-width: 480px) {
	.home-artisans {
		min-height: 60vh;
		padding: 30px 15px;
	}

	.home-artisans__title {
		font-size: 1.8rem;
	}

	.home-artisans__subtitle {
		font-size: 0.65rem;
	}

	.home-artisans__description {
		font-size: 1rem;
	}
}
