/**
 * Front Page Styles
 * Template: template-front-page.php
 *
 * @package unique
 */

/*--------------------------------------------------------------
# Hero Carousel Section: data-node-id="355:8389"
--------------------------------------------------------------*/
.front-page-main {
	overflow-x: clip;
	position: relative;
}

.hero-section {
	padding-top: 20px;
	padding-bottom: 20px;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}

.hero-card {
	background-color: var(--white, #FFFFFF);
	border-radius: 32px;
	padding: 40px;
	width: 100%;
	max-width: 1360px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.hero-slider {
	width: 100%;
	position: relative;
}

.hero-slide {
	width: 100%;
	box-sizing: border-box;
	display: block;
}

.hero-slide-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* Left Content Column: Fluid flex (slightly wider than right) */
.hero-content-col {
	flex: 1.45 1 0%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 36px;
	align-items: flex-start;
	position: relative;
	z-index: 2;
}

.hero-title {
	font-family: var(--font-heading, 'Comfortaa', cursive, sans-serif);
	font-weight: 700;
	font-size: 44px;
	line-height: 1.4;
	color: var(--black, #1F1F1F);
	text-transform: uppercase;
	margin: 0;
	letter-spacing: 0;
}

/* Styled Tags / Badges in Title (static, without hover animation) */
.hero-title span,
.hero-title .tag-yellow {
	display: inline-block;
	background-color: #FDB913;
	color: #8F1575;
	border-radius: 40px;
	padding: 2px 14px 4px;
	margin: 2px 6px;
	transform: rotate(-3.06deg);
	line-height: 1.2;
	font-size: 42px;
	white-space: nowrap;
	vertical-align: middle;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.hero-title .tag-purple {
	background-color: #8F1575;
	color: #FFFFFF;
	transform: rotate(-4deg);
}

.hero-desc {
	font-family: var(--font-primary, 'Century Gothic', sans-serif);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
	color: var(--black, #1F1F1F);
	max-width: 380px;
	margin: 0;
}

.hero-btn-wrap {
	display: inline-block;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 24px;
	border: 1.5px solid var(--purple, #8F1575);
	border-radius: 40px;
	background: transparent;
	color: var(--purple, #8F1575);
	font-family: var(--font-primary, 'Century Gothic', sans-serif);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	min-width: 180px;
	box-sizing: border-box;
}

.hero-btn:hover,
.hero-btn:focus {
	background: var(--purple, #8F1575);
	color: var(--white, #FFFFFF);
}

.hero-btn .hero-btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

/* Right Image Column: Fluid flex */
.hero-image-col {
	position: relative;
	flex: 1 1 0%;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.hero-photo-wrapper {
	position: relative;
	width: 100%;
	max-width: 527px;
	aspect-ratio: 527 / 510;
	height: auto;
	margin-left: auto;
	z-index: 2;
}

.hero-photo-shaped {
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-mask-image: url('../assets/img/hero-mask.png');
	mask-image: url('../assets/img/hero-mask.png');
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	clip-path: url(#hero-bubble-clip);
	overflow: hidden;
}

.hero-photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Side Decorations */
.hero-decor-donut {
	position: absolute;
	left: 0;
	bottom: 40px;
	width: 120px;
	height: 120px;
	z-index: 3;
	pointer-events: none;
	line-height: 0;
}

.hero-decor-donut svg {
	width: 100%;
	height: 100%;
	display: block;
}

.hero-decor-color-yellow {
	color: #FDB913;
}

.hero-decor-color-purple {
	color: #8F1575;
}

.hero-decor-wavy {
	position: absolute;
	top: 0;
	right: -15px;
	width: 180px;
	height: 174px;
	z-index: 3;
	pointer-events: none;
	line-height: 0;
}

.hero-wavy-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Flickity Page Dots */
.hero-slider .flickity-page-dots {
	position: static;
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 0;
	list-style: none;
}

.hero-slider .flickity-page-dots .dot {
	width: 8px;
	height: 8px;
	margin: 0;
	border-radius: 40px;
	background: #FDB913;
	opacity: 0.3;
	border: none;
	outline: none;
	transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, background-color 0.3s ease;
	cursor: pointer;
}

.hero-slider .flickity-page-dots .dot.is-selected {
	width: 51px;
	opacity: 1;
	background: #FDB913;
}

/*--------------------------------------------------------------
# About Section: data-node-id="355:8393"
--------------------------------------------------------------*/
.about-section {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	width: 100%;
	box-sizing: border-box;
	z-index: 1;
}

/* Decorative Background Blob (data-node-id="355:8377") */
.about-decor-blob {
	position: absolute;
	left: calc(50% - 814px);
	top: -34px;
	width: 412px;
	height: 120px;
	background: rgba(219, 208, 235, 0.4);
	border-radius: 425px;
	transform: rotate(30.36deg);
	transform-origin: center center;
	pointer-events: none;
	z-index: 0;
}

.about-container {
	position: relative;
	z-index: 1;
}

.about-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

/* Left Column: Image */
.about-image-col {
	flex: 0 0 628px;
	max-width: 628px;
	width: 100%;
}

.about-image-wrapper {
	width: 100%;
	height: 426px;
	border-radius: 16px;
	overflow: hidden;
	background-color: #EFEFEF;
}

.about-team-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 16px;
}

/* Right Column: Content */
.about-content-col {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
}

.about-title-wrap {
	width: 100%;
}

.about-title {
	font-family: var(--font-heading, 'Comfortaa', cursive, sans-serif);
	font-weight: 700;
	font-size: 40px;
	line-height: 1.25;
	color: var(--black, #1F1F1F);
	text-transform: uppercase;
	margin: 0;
	letter-spacing: 0;
}

/* Styled Tag in Title (static, without hover animation) */
.about-title .tag-yellow,
.about-title span {
	display: inline-block;
	background-color: #FDB913;
	color: #8F1575;
	border-radius: 40px;
	padding: 4px 16px 6px;
	margin-left: 0px;
	margin-top: -6px;
	transform: rotate(-3.85deg);
	line-height: 1.2;
	font-size: 40px;
	white-space: nowrap;
	vertical-align: middle;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.about-desc-wrap {
	width: 100%;
	max-width: 554px;
}

.about-desc {
	font-family: var(--font-primary, 'Century Gothic', Arial, sans-serif);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.45;
	color: var(--black, #1F1F1F);
	margin: 0;
}

.about-btn-wrap {
	margin-top: 16px;
}

.about-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1.5px solid var(--purple, #8F1575);
	background: transparent;
	color: var(--purple, #8F1575);
	border-radius: 40px;
	padding: 15px 24px;
	font-family: var(--font-primary, 'Century Gothic', Arial, sans-serif);
	font-size: 16px;
	line-height: 1.2;
	font-weight: 400;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.about-btn:hover,
.about-btn:focus-visible {
	background-color: var(--purple, #8F1575);
	color: var(--white, #FFFFFF);
	border-color: var(--purple, #8F1575);
}

.about-btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.about-btn:hover .about-btn-icon {
	transform: translate(2px, -2px);
}

/*--------------------------------------------------------------
# Video Section: data-node-id="355:8407"
--------------------------------------------------------------*/
.video-section {
	position: relative;
	padding-top: 40px;
	padding-bottom: 80px;
	width: 100%;
	box-sizing: border-box;
	z-index: 1;
}

/* Decorative Background Element (data-node-id="355:8381") */
.video-decor-ellipse {
	position: absolute;
	left: calc(50% + 350px);
	top: -60px;
	width: 452px;
	height: 240px;
	pointer-events: none;
	z-index: 0;
}

.video-decor-ellipse svg {
	display: block;
	width: 100%;
	height: 100%;
}

.video-container {
	position: relative;
	z-index: 1;
}

.video-player-wrap {
	position: relative;
	width: 100%;
	height: 577px;
	border-radius: 24px;
	overflow: hidden;
	background-color: #1F1F1F;
	box-sizing: border-box;
}

.video-poster-layer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 1;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-poster-layer.is-placeholder {
	background: radial-gradient(circle at center, #2E1528 0%, #1A1A1A 70%, #111111 100%);
}

.video-poster-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 24px;
}

.video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 118px;
	height: 118px;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	z-index: 2;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease, opacity 0.35s ease;
}

.video-play-btn .play-btn-svg {
	display: block;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 8px 24px rgba(143, 21, 117, 0.3));
	transition: filter 0.3s ease;
}

.video-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.08);
}

.video-play-btn:hover .play-btn-svg {
	filter: drop-shadow(0 12px 32px rgba(143, 21, 117, 0.5));
}

.video-embed-container {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.video-media-element {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: none;
	border-radius: 24px;
	display: block;
}

/* State when video is playing */
.video-player-wrap.is-playing .video-poster-layer,
.video-player-wrap.is-playing .video-play-btn {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.video-player-wrap.is-playing .video-embed-container {
	z-index: 3;
}

/*--------------------------------------------------------------
# How to Choose Section (Steps): data-node-id="355:8412"
--------------------------------------------------------------*/
.how-to-choose-section {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	width: 100%;
	box-sizing: border-box;
	z-index: 1;
}

.how-to-choose-decor {
	position: absolute;
	right: calc(50% - 680px);
	bottom: -40px;
	width: 414px;
	height: 414px;
	pointer-events: none;
	z-index: 0;
}

.how-to-choose-decor svg {
	display: block;
	width: 100%;
	height: 100%;
}

.how-to-choose-container {
	position: relative;
	z-index: 1;
}

.how-to-choose-title-wrap {
	margin-bottom: 38px;
}

.how-to-choose-title {
	font-family: var(--font-heading, 'Comfortaa', cursive);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--black, #1F1F1F);
	text-transform: uppercase;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.how-to-choose-title .tag-yellow {
	background-color: var(--yellow, #FDB913);
	color: var(--purple, #8F1575);
	font-family: var(--font-heading, 'Comfortaa', cursive);
	font-size: 40px;
	font-weight: 700;
	padding: 4px 18px;
	border-radius: 40px;
	display: inline-block;
	transform: rotate(-3.14deg);
	transform-origin: center center;
}

.how-to-choose-cards {
	display: flex;
	gap: 20px;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.how-to-choose-card {
	flex: 1 1 0%;
	background-color: #FFFFFF;
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	box-sizing: border-box;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.how-to-choose-card-badge {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(253, 185, 19, 0.15);
	border: 1px solid #FDB913;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.how-to-choose-card-badge span {
	font-family: var(--font-primary, 'Century Gothic', sans-serif);
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	color: var(--purple, #8F1575);
}

.how-to-choose-card-title {
	font-family: var(--font-heading, 'Comfortaa', cursive);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--purple, #8F1575);
	text-transform: uppercase;
	margin: 0;
}

.how-to-choose-card-desc {
	font-family: var(--font-primary, 'Century Gothic', sans-serif);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
	color: var(--black, #1F1F1F);
	margin: 0;
}

/*--------------------------------------------------------------
# Media Queries: Front Page
--------------------------------------------------------------*/
@media screen and (max-width: 1024px) {

	/* Hero Tablet */
	.hero-card {
		padding: 32px 24px;
	}

	.hero-slide-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 32px;
	}

	.hero-content-col {
		flex: none;
		width: 100%;
		height: auto;
		align-items: center;
		text-align: center;
		gap: 24px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-title span,
	.hero-title .tag-yellow,
	.hero-title .tag-purple {
		font-size: 34px;
		padding: 2px 10px;
	}

	.hero-desc {
		max-width: 480px;
	}

	.hero-image-col {
		flex: none;
		width: 100%;
		max-width: 440px;
		height: auto;
		margin: 0 auto;
		justify-content: center;
	}

	.hero-photo-wrapper {
		width: 100%;
		max-width: 420px;
		aspect-ratio: 527 / 510;
		height: auto;
		margin: 0 auto;
	}

	.hero-decor-donut {
		width: 96px;
		height: 96px;
		bottom: 24px;
	}

	.hero-decor-wavy {
		width: 140px;
		height: 135px;
	}

	/* About Section Tablet */
	.about-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.about-decor-blob {
		left: -140px;
		top: -40px;
		width: 380px;
		height: 110px;
		transform: rotate(30.36deg);
	}

	.about-row {
		gap: 36px;
	}

	.about-image-col {
		flex: 0 0 450px;
		max-width: 450px;
	}

	.about-image-wrapper {
		height: 320px;
	}

	.about-title {
		font-size: 32px;
	}

	.about-title .tag-yellow,
	.about-title span {
		font-size: 30px;
		padding: 3px 12px;
	}

	/* Video Section Tablet */
	.video-section {
		padding-top: 30px;
		padding-bottom: 50px;
	}

	.video-player-wrap {
		height: 450px;
	}

	.video-play-btn {
		width: 96px;
		height: 96px;
	}

	.video-decor-ellipse {
		width: 360px;
		height: 310px;
		left: auto;
		right: -60px;
		top: -40px;
	}

	/* How to Choose Section Tablet */
	.how-to-choose-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.how-to-choose-title {
		font-size: 32px;
	}

	.how-to-choose-title .tag-yellow {
		font-size: 32px;
		padding: 3px 14px;
	}

	.how-to-choose-cards {
		gap: 16px;
	}

	.how-to-choose-card {
		padding: 20px;
		gap: 18px;
	}

	.how-to-choose-decor {
		width: 320px;
		height: 320px;
		right: -40px;
	}
}

@media screen and (max-width: 768px) {

	/* Hero Mobile: data-node-id="355:9573" */
	.hero-section {
		padding-top: 12px;
		padding-bottom: 20px;
	}

	.hero-card {
		padding: 24px 16px 28px;
		border-radius: 28px;
	}

	.hero-slide-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
		width: 100%;
	}

	.hero-content-col {
		flex: none;
		width: 100%;
		height: auto;
		align-items: flex-start;
		text-align: left;
		gap: 20px;
	}

	.hero-title {
		font-size: 28px;
		line-height: 1.35;
	}

	.hero-title span,
	.hero-title .tag-yellow {
		font-size: 24px;
		padding: 2px 10px;
		margin: 2px 4px;
		transform: rotate(-3deg);
	}

	.hero-title .tag-purple {
		font-size: 24px;
		padding: 2px 10px;
		margin: 2px 4px;
		transform: rotate(-4deg);
	}

	.hero-desc {
		font-size: 15px;
		line-height: 1.3;
		max-width: 100%;
		margin: 0;
	}

	.hero-btn-wrap {
		width: 100%;
	}

	.hero-btn {
		width: 100%;
		justify-content: center;
	}

	.hero-image-col {
		flex: none;
		width: 100%;
		max-width: 325px;
		height: auto;
		margin: 0 auto;
		justify-content: center;
		position: relative;
	}

	.hero-photo-wrapper {
		width: 100%;
		max-width: 325px;
		aspect-ratio: 325 / 300;
		height: auto;
		margin: 0 auto;
	}

	.hero-decor-donut {
		width: 70px;
		height: 70px;
		bottom: 12px;
		left: -14px;
	}

	.hero-decor-wavy {
		width: 106px;
		height: 103px;
		top: -10px;
		right: -10px;
	}

	.hero-slider .flickity-page-dots {
		margin-top: 24px;
	}

	/* About Section Mobile: data-node-id="355:9620" */
	.about-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.about-decor-blob {
		width: 128px;
		height: 38px;
		left: -28px;
		top: -15px;
		border-radius: 130px;
		transform: rotate(30.36deg);
		transform-origin: center center;
	}

	.about-row {
		flex-direction: column;
		gap: 32px;
	}

	.about-image-col {
		flex: none;
		max-width: 100%;
		width: 100%;
	}

	.about-image-wrapper {
		height: 250px;
	}

	.about-content-col {
		width: 100%;
		gap: 16px;
	}

	.about-title {
		font-size: 24px;
		line-height: 1.35;
	}

	.about-title .tag-yellow,
	.about-title span {
		font-size: 24px;
		padding: 2px 12px;
		margin-left: 6px;
		transform: rotate(-3.85deg);
	}

	.about-desc-wrap {
		max-width: 100%;
	}

	.about-desc {
		font-size: 16px;
		line-height: 1.3;
	}

	.about-btn-wrap {
		width: 100%;
		margin-top: 8px;
	}

	.about-btn {
		width: 100%;
		justify-content: center;
		box-sizing: border-box;
		padding: 16px 24px;
	}

	/* Video Section Mobile: data-node-id="355:9634" */
	.video-section {
		padding-top: 20px;
		padding-bottom: 40px;
	}

	.video-player-wrap {
		height: 320px;
		border-radius: 16px;
	}

	.video-poster-img,
	.video-media-element {
		border-radius: 16px;
	}

	.video-play-btn {
		width: 80px;
		height: 80px;
	}

	/* Mobile Decor Ellipse: data-node-id="355:9599" */
	.video-decor-ellipse {
		width: 187px;
		height: 159px;
		left: auto;
		right: -30px;
		top: -20px;
	}

	/* How to Choose Section Mobile: data-node-id="355:9641" */
	.how-to-choose-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.how-to-choose-title-wrap {
		margin-bottom: 28px;
	}

	.how-to-choose-title {
		font-size: 24px;
		line-height: 1.4;
		gap: 8px;
	}

	.how-to-choose-title .tag-yellow {
		font-size: 24px;
		padding: 2px 12px;
	}

	.how-to-choose-cards {
		flex-direction: column;
		gap: 16px;
		width: 100%;
	}

	.how-to-choose-card {
		width: 100%;
		padding: 24px;
		gap: 20px;
	}

	.how-to-choose-card-title {
		font-size: 18px;
	}

	.how-to-choose-card-desc {
		font-size: 15px;
		line-height: 1.35;
	}

	/* Mobile Decor: data-node-id="355:9600" */
	.how-to-choose-decor {
		width: 277px;
		height: 277px;
		right: -50px;
		bottom: -20px;
	}
}