/*
Theme Name: Bond Mentorship Theme
Theme URI: https://example.com/bond-mentorship-theme
Description: White-label child theme for the Bond Mentorship plugin. Provides a landing page, conditional navigation, portals, How It Works and Contact pages, plus a branding panel so each organization can re-skin colors, fonts, logo, and copy without touching code.
Author: Bond Mentorship
Version: 1.0.0
Template: blocksy
Requires PHP: 7.4
Text Domain: bond-mentorship-theme
*/

/* ── Hero ───────────────────────────────────────────────── */
.bmt-hero {
	padding: clamp(2.5rem, 6vw, 5rem) 1.25rem;
	text-align: center;
}
.bmt-hero__inner {
	max-width: 760px;
	margin: 0 auto;
}
.bmt-hero__logo-wrap {
	margin-bottom: 1.5rem;
}
.bmt-hero__logo {
	max-height: 90px;
	width: auto;
	height: auto;
}
.bmt-hero__title {
	margin: 0 0 .25rem;
	letter-spacing: -.02em;
	color: var(--bmt-text);
}
.bmt-hero__org {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--bmt-primary);
	margin: 0 0 1rem;
	letter-spacing: .02em;
	text-transform: uppercase;
}
.bmt-hero__desc {
	font-size: 1.125rem;
	color: var(--bmt-text);
	opacity: .82;
	margin: 0;
	line-height: 1.55;
}

/* ── CTA Section ────────────────────────────────────────── */
.bmt-cta-section {
	padding: 2.5rem 1.25rem;
	background: #f9fafb;
}
.bmt-cta-section__title {
	margin: 0 0 .5rem;
}
.bmt-cta-section__lead {
	max-width: 640px;
	margin: 0 auto 1.5rem;
	opacity: .8;
}

/* ── How It Works ────────────────────────────────────────── */
.bmt-hiw {
	padding: 3rem 1.25rem;
}
.bmt-hiw__lead {
	max-width: 700px;
	margin: 0 auto 2.5rem;
	opacity: .8;
}
.bmt-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}
.bmt-step {
	background: #fff;
	padding: 1.5rem;
	border-radius: 14px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
	position: relative;
}
.bmt-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--bmt-primary);
	color: #fff;
	font-weight: 700;
	margin-bottom: .75rem;
}
.bmt-step__title {
	font-size: 1.05rem;
	margin: 0 0 .5rem;
}
.bmt-step__body {
	margin: 0;
	font-size: .95rem;
	line-height: 1.5;
	opacity: .8;
}
.bmt-flow-diagram {
	display: block;
	max-width: 600px;
	margin: 2rem auto 0;
	color: var(--bmt-primary);
	opacity: .35;
}

/* ── Testimonials ───────────────────────────────────────── */
.bmt-testimonials {
	padding: 3rem 1.25rem;
	background: #f9fafb;
}
.bmt-testimonial {
	background: #fff;
	padding: 1.5rem;
	border-radius: 14px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	height: 100%;
	margin: 0;
}
.bmt-testimonial blockquote {
	font-size: 1rem;
	line-height: 1.55;
	margin: 0 0 1rem;
	padding: 0;
	border: 0;
	font-style: italic;
}
.bmt-testimonial figcaption {
	font-size: .9rem;
	display: flex;
	flex-direction: column;
}
.bmt-testimonial figcaption strong {
	color: var(--bmt-primary);
}
.bmt-testimonial figcaption span {
	opacity: .7;
	font-size: .85rem;
}

/* ── Tips Grid ───────────────────────────────────────────── */
.bmt-tips {
	padding: 3rem 1.25rem;
}
.bmt-tips__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
	margin-top: 2rem;
}
.bmt-tip {
	padding: 1.25rem;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
}
.bmt-tip h3 {
	margin: 0 0 .5rem;
	font-size: 1rem;
	color: var(--bmt-primary);
}
.bmt-tip p {
	margin: 0;
	font-size: .95rem;
	line-height: 1.5;
	opacity: .8;
}

/* ── FAQ ────────────────────────────────────────────────── */
.bmt-faq {
	padding: 2.5rem 1.25rem;
}
.bmt-faq .wp-block-details {
	border-bottom: 1px solid #e5e7eb;
	padding: 1rem 0;
}
.bmt-faq .wp-block-details summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 1.05rem;
}
.bmt-faq .wp-block-details[open] summary {
	color: var(--bmt-primary);
}

/* ── Contact ─────────────────────────────────────────────── */
.bmt-contact, .bmt-support-form {
	padding: 2rem 1.25rem;
}
.bmt-fallback-form {
	display: grid;
	gap: 1rem;
	max-width: 560px;
}
.bmt-fallback-form label {
	display: grid;
	gap: .35rem;
	font-size: .9rem;
	font-weight: 500;
}
.bmt-fallback-form input,
.bmt-fallback-form textarea {
	padding: .65rem .8rem;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font: inherit;
	width: 100%;
}

/* ── Auth Button ────────────────────────────────────────── */
.bmt-auth--in {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	font-size: .9rem;
}
.bmt-auth__profile {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	text-decoration: none;
}
.bmt-auth__profile img {
	border-radius: 50%;
}

/* ── CTA wrapper ─────────────────────────────────────────── */
.bmt-cta-wrap {
	display: flex;
	justify-content: center;
	gap: .75rem;
	flex-wrap: wrap;
}

