/* HERO SECTION */
.hero,
.custom-hero {
	position: relative;
	height: 75vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero::after,
.custom-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

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

.hero-text-overlay {
	z-index: 2;
	color: #fff;
	text-align: center;
	max-width: 600px;
}

.hero-btn {
	background: rgb(var(--primary));
	color: #fff;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	transition: 0.3s;
}

.hero-btn:hover {
	background: rgb(var(--accent));
}

/* FEATURED COLLECTIONS */
.featured {
	padding: 4rem 1rem;
	background: rgb(252, 250, 247);
	text-align: center;
}

.featured h2 {
	color: rgb(var(--primary));
	margin-bottom: 2rem;
}

.featured-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto;
}

.featured .card {
	padding: 1rem;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.featured .card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 1rem;
}

/* ABOUT SECTION */
.about {
	padding: 4rem 1rem;
	background: rgba(var(--accent), 0.12);
	text-align: center;
}

.about p {
	max-width: 650px;
	margin: 0 auto 1.5rem;
}

/* TESTIMONIALS */
.testimonials {
	padding: 4rem 1rem;
	text-align: center;
}

blockquote {
	background: rgb(252, 250, 247);
	padding: 1.5rem;
	border-left: 4px solid rgb(var(--accent));
	border-radius: 8px;
	font-style: italic;
	color: rgb(var(--text));
	margin-bottom: 2rem;
}

/* GALLERY */
.gallery {
	padding: 4rem 1rem;
	text-align: center;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.25rem;
	max-width: 1200px;
	margin: 0 auto;
}

.gallery-grid img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
}

/* FOOTER */
.footer {
	background: rgb(var(--primary));
	color: #fff;
	padding: 2rem 1rem;
	text-align: center;
}

.footer-content a {
	color: #f5eadd;
}

.footer-content a:hover {
	color: #fff;
}
