/* =========================================================================
 * CCW Hero Content — content-only block (no background). Transparent, sits
 * over any section background. Every element fully controllable in Elementor.
 * ===================================================================== */

.ccw-herotext { width: 100%; background: transparent; }

.ccw-herotext__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	width: 100%;
}

/* ---- Eyebrow + brand -------------------------------------------------- */
/* align-items: inherit → the eyebrow block (a nested flex column) follows the
   widget's chosen alignment, so the "WELCOME TO" line + brand centre too. */
.ccw-herotext__eyebrow { display: flex; flex-direction: column; align-items: inherit; gap: 6px; }

.ccw-herotext__eyebrow-top {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ccw-font-body);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: #B8862E;
}
.ccw-herotext__eyebrow-top--lines::before,
.ccw-herotext__eyebrow-top--lines::after {
	content: "";
	height: 1px;
	width: 26px;
	background: linear-gradient(90deg, transparent, #C9A24B);
}
.ccw-herotext__eyebrow-top--lines::after { background: linear-gradient(90deg, #C9A24B, transparent); }

.ccw-herotext__brand {
	font-family: var(--ccw-font-display);
	font-weight: 700;
	font-size: clamp(1.1rem, 1.8vw, 1.55rem);
	letter-spacing: 0.06em;
	color: var(--ccw-heading);
}

/* ---- Headline -------------------------------------------------------- */
.ccw-herotext__title {
	font-family: var(--ccw-font-display);
	font-weight: 800;
	/* Size lives here so the Typography Size control actually works; the two
	   lines inherit it. */
	font-size: clamp(2.6rem, 6.5vw, 5rem);
	line-height: 1;
	margin: 0;
}
.ccw-herotext__t1 { display: block; font-size: inherit; letter-spacing: 0.02em; color: var(--ccw-heading); }
.ccw-herotext__t2 { display: block; font-size: inherit; letter-spacing: 0.02em; color: #E0218A; }

/* ---- Script + description -------------------------------------------- */
.ccw-herotext__script {
	font-family: var(--ccw-font-script);
	font-size: clamp(1.3rem, 2.4vw, 2rem);
	line-height: 1.3;
	color: #B8862E;
	margin: 0;
}
.ccw-herotext__desc {
	font-size: clamp(0.95rem, 1.1vw, 1.05rem);
	line-height: 1.7;
	color: var(--ccw-text);
	max-width: 46ch;
	margin: 0;
}

/* ---- Buttons --------------------------------------------------------- */
.ccw-herotext__btns { display: flex; flex-wrap: wrap; gap: 14px; }

.ccw-herotext__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 30px;
	font-family: var(--ccw-font-body);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 2px solid transparent;
	border-radius: 9px;
	cursor: pointer;
	transition: transform 0.25s var(--ccw-ease-out), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.ccw-herotext__btn--1 { color: #fff; background: #C0397A; box-shadow: 0 8px 20px rgba(192, 57, 122, 0.26); }
.ccw-herotext__btn--1:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(192, 57, 122, 0.4); }
.ccw-herotext__btn--2 { color: #9A7B1E; background: transparent; border-color: #C9A24B; }
.ccw-herotext__btn--2:hover { color: #fff; background: #C9A24B; transform: translateY(-2px); }
.ccw-herotext__btn-icon { display: inline-flex; font-size: 1.05em; }
.ccw-herotext__btn-icon svg { width: 1em; height: 1em; fill: currentColor; }

@media (max-width: 600px) {
	.ccw-herotext__btn { width: 100%; justify-content: center; }
	.ccw-herotext__btns { width: 100%; }
}
