/* ============================================
   CreativeMC — Section Layouts
   ============================================ */

/* ---- Hero ---- */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: var(--header-height);
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.hero::before {
	content: "";
	position: absolute;
	z-index: 1;
	background-image: url(/assets/images/dr.png);
	opacity: 0.3;
	filter: blur(3px);
	background-size: cover;
	background-position: center;
	inset: 0;
}

.hero__mesh {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 80% 60% at 20% 40%, rgba(232, 168, 73, 0.08) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232, 168, 73, 0.05) 0%, transparent 50%),
		radial-gradient(ellipse 50% 40% at 60% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

.hero__content-cont {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 4.5rem;
	align-items: center;
	justify-content: center;
	width: 100%;
	translate: 0 -30px;
	padding: 0 var(--space-md);
}

.hero__content {
	position: relative;
	max-width: 650px;
}

.hero__label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--text-muted);
	padding: 0.375rem 0.875rem;
	background: var(--bg-glass);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-full);
	margin-bottom: var(--space-md);
}

.hero__label-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.4;
	}
}

.hero__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
	margin-bottom: var(--space-md);
}

.hero__title-accent {
	color: var(--accent);
}

.hero__bio {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: var(--space-lg);
	max-width: 560px;
}

.hero__thumbnail {
	width: 700px;
	height: auto;
	box-shadow: var(--shadow-card);
	border-radius: var(--radius-md);
}

/* ---- Work Section ---- */
.work {
	background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-elevated) 50%, var(--bg-primary) 100%);
}

/* ---- About / Credibility ---- */
.about {
	text-align: center;
}

.about__text {
	font-size: 1.05rem;
	color: var(--text-muted);
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ---- Contact ---- */
.contact {
	text-align: center;
	padding-bottom: var(--space-lg);
}

.contact__title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	font-weight: 700;
	margin-bottom: var(--space-sm);
}

.contact__subtitle {
	color: var(--text-muted);
	font-size: 1rem;
}

/* ---- Section dividers ---- */
.section-divider {
	width: 48px;
	height: 2px;
	background: var(--accent);
	margin: 0 auto var(--space-md);
	border-radius: 2px;
	opacity: 0.6;
}

.about .section-divider {
	margin-bottom: var(--space-md);
}

/* ---- Responsive tweaks ---- */
@media (max-width: 768px) {
	.hero {
		min-height: auto;
		padding-top: calc(var(--header-height) + var(--space-xl));
		padding-bottom: var(--space-xl);
	}

	.hero__content-cont {
		translate: 0 0;
	}

	.section {
		padding: var(--space-xl) 0;
	}

	.modal__close {
		top: -48px;
		right: 50%;
		transform: translateX(50%);
	}

	.modal__content {
		max-width: 100%;
	}

	.footer__inner {
		flex-direction: column;
		text-align: center;
	}
}