/* ==========================================================================
   Cosmetology Page Stylesheet (Specific Styles)
   ========================================================================== */

/* --- Hero Section --- */
.cosmetology-hero-section {
	position: relative;
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: var(--color-black);
}

.cosmetology-hero-section .about-hero-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.cosmetology-hero-section .about-hero-grid {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cosmetology-hero-section .about-hero-content {
	max-width: 768px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.cosmetology-hero-section .about-hero-title {
	font-family: var(--font-heading);
	font-size: 64px;
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -1.92px;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

.cosmetology-hero-section .about-hero-title span {
	color: var(--color-red);
}

.cosmetology-hero-section .about-hero-subtitle {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-white);
	margin: 0;
}

/* --- Social Sidebar --- */
.cosmetology-hero-section .hero-socials {
	position: absolute;
	right: 80px;
	top: calc(50% - 100px);
	display: flex;
	flex-direction: column;
	gap: 7px;
	z-index: 10;
}

.cosmetology-hero-section .hero-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background-color: var(--color-red);
	transition: var(--transition);
	text-decoration: none;
}

.cosmetology-hero-section .hero-social-btn:hover {
	background-color: #a00000;
}

.cosmetology-hero-section .hero-social-btn i {
	font-size: 24px;
	color: var(--color-white);
}

.cosmetology-hero-section .hero-social-btn img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

/* Align socials with container right border at wider screens */
@media (min-width: 1440px) {
	.cosmetology-hero-section .hero-socials {
		right: calc(50% - 640px);
	}
}

/* Mobile responsive */
@media (max-width: 768px) {
	.cosmetology-hero-section {
		height: auto;
		min-height: auto;
		padding-top: 240px;
		padding-bottom: 240px;
	}

	.cosmetology-hero-section .about-hero-content {
		padding: 0 16px;
	}

	.cosmetology-hero-section .about-hero-title {
		font-size: 48px;
		letter-spacing: -1.44px;
	}

	.cosmetology-hero-section .about-hero-subtitle {
		font-size: 16px;
	}

	.cosmetology-hero-section .hero-socials {
		display: none;
	}
}