/* ============================================================================
   Events page sections — hero, featured/grid section shells, submit band.
   Reuses shared classes from app.css (.hmd-eyebrow, .hmd-section-header,
   .hmd-arrow-link) and home.css. Vibemap card/chip styling stays in vibemap.css.
   ========================================================================== */

/* ── Events hero (magenta band) ───────────────────────────────────────────*/
.hmd-hero-events {
	position: relative;
	overflow: hidden;
	color: var(--ink);
}
/* Yellow disc bleeding off the top-right corner (design). */
.hmd-hero-events::after {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 280px;
	height: 280px;
	background: var(--yellow);
	border-radius: 999px;
	opacity: 0.92;
	pointer-events: none;
}
.hmd-hero-events > * { position: relative; z-index: 1; }

.hmd-hero-events__crumbs {
	font-family: var(--font-display);
	font-size: 0.6875rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 1.5rem;
}
.hmd-hero-events__crumbs a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.hmd-hero-events__crumbs a:hover { color: #fff; }
.hmd-hero-events__crumbs .current { color: #fff; }

.hmd-hero-events__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: end;
}
.hmd-hero-events__title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(4rem, 11vw, 8.25rem);
	line-height: 0.85;
	letter-spacing: -0.05em;
	margin: 0;
	color: var(--ink);
}
.hmd-hero-events__title .accent { color: #fff; }
.hmd-hero-events__lede {
	max-width: 480px;
	font-size: 1.125rem;
	line-height: 1.55;
	margin: 1.5rem 0 0;
	color: var(--ink);
}

/* Dark "submit an event" card (shared with hero right column). */
.hmd-submit-card {
	border-radius: 16px;
	padding: clamp(1.5rem, 3vw, 2rem);
}
.hmd-submit-card__title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.375rem;
	line-height: 1.15;
	margin: 0 0 0.5rem;
	color: #fff;
}
.hmd-submit-card p {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.55;
	margin: 0 0 1.125rem;
}

/* ── Featured / grid section shells ───────────────────────────────────────*/
/* The section wrapper + .hmd-section-header carry the layout; give the Vibemap
   blocks a little breathing room under the header. */
.hmd-events-featured .wp-block-vibemap-card-carousel,
.hmd-events-grid .wp-block-vibemap-native-events {
	margin-top: 0.5rem;
}

/* ── Submit band (ink CTA) ────────────────────────────────────────────────*/
.hmd-submit-band { position: relative; overflow: hidden; }
.hmd-submit-band__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(2.5rem, 5vw, 4rem);
	align-items: center;
}
.hmd-submit-band__title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(2.5rem, 5vw, 4rem);
	letter-spacing: -0.03em;
	line-height: 0.95;
	margin: 0 0 1rem;
	color: #fff;
}
.hmd-submit-band__title .accent { color: var(--yellow); }
.hmd-submit-band__lede {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1rem;
	line-height: 1.6;
	max-width: 480px;
	margin: 0 0 2rem;
}

/* Styled placeholder submit form — flat "signature-line" fields (design). */
.hmd-submit-form {
	background: rgba(255, 255, 255, 0.04);
	border-radius: 16px;
	padding: clamp(1.75rem, 3vw, 2.25rem);
	border-top: 4px solid var(--magenta);
}
.hmd-submit-form__title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.375rem;
	margin: 0 0 1.25rem;
	color: #fff;
}
.hmd-submit-form__field { margin-bottom: 1rem; }
.hmd-submit-form__field label {
	display: block;
	font-family: var(--font-display);
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--yellow);
	margin-bottom: 0.375rem;
}
.hmd-submit-form__field input {
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 0;
	border-bottom: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px 10px 0 0;
	color: #fff;
	padding: 0.75rem 0.875rem;
	font-family: inherit;
	font-size: 0.875rem;
}
.hmd-submit-form__field input::placeholder { color: rgba(255, 255, 255, 0.4); }
.hmd-submit-form__field input:focus {
	outline: 0;
	border-bottom-color: var(--magenta);
}
.hmd-submit-form__go {
	display: inline-block;
	margin-top: 0.5rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--yellow);
	text-decoration: none;
	border-bottom: 2px solid var(--magenta);
	padding-bottom: 0.25rem;
}
.hmd-submit-form__go:hover { color: #fff; }
.hmd-submit-form__note {
	font-size: 0.6875rem;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.45);
	margin: 1rem 0 0;
}

/* ── Responsive ───────────────────────────────────────────────────────────*/
@media (max-width: 900px) {
	.hmd-hero-events__grid { grid-template-columns: 1fr; align-items: start; }
	.hmd-submit-band__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
