/*
Theme Name: BookCondosDirect
Theme URI: https://bookcondosdirect.com
Author: BookCondosDirect
Description: Splash / coming-soon theme for BookCondosDirect.com — a direct booking marketplace for condos with AI-powered marketing baked in.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bookcondosdirect
*/

:root {
	--bcd-ink: #0e0b2e;
	--bcd-ink-2: #1a1450;
	--bcd-violet: #6d3df5;
	--bcd-violet-deep: #3b1fa3;
	--bcd-aqua: #2ee6d6;
	--bcd-gold: #e8c268;
	--bcd-gold-deep: #c99a2e;
	--bcd-magenta: #f43f8e;
	--bcd-ivory: #fcfaff;
	--bcd-text: #2a2545;
	--bcd-text-muted: #6b6590;
	--bcd-radius: 18px;
	--bcd-shadow: 0 14px 40px rgba(14, 11, 46, 0.16);
	--bcd-font-display: "Fraunces", Georgia, serif;
	--bcd-font-body: "Inter", "Segoe UI", -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--bcd-font-body);
	color: var(--bcd-text);
	background: var(--bcd-ivory);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
	font-family: var(--bcd-font-display);
	font-weight: 600;
	color: var(--bcd-ink);
	line-height: 1.12;
	letter-spacing: -0.01em;
}

img, svg { display: block; max-width: 100%; }

.bcd-container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Header (sits on the midnight hero) ---------- */
.bcd-header {
	background: var(--bcd-ink);
	padding: 22px 0;
}

.bcd-header .bcd-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.bcd-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.bcd-brand__mark { width: 46px; height: 46px; }

.bcd-brand__name {
	font-family: var(--bcd-font-display);
	font-weight: 600;
	font-size: 23px;
	color: #ffffff;
	letter-spacing: 0;
}

.bcd-brand__name em {
	font-style: normal;
	color: var(--bcd-gold);
}

.bcd-pill {
	display: inline-block;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bcd-gold);
	background: rgba(232, 194, 104, 0.08);
	border: 1px solid rgba(232, 194, 104, 0.5);
	border-radius: 999px;
	padding: 7px 16px;
	white-space: nowrap;
}

/* ---------- Hero ---------- */
.bcd-hero {
	background:
		radial-gradient(1100px 620px at 74% -12%, rgba(109, 61, 245, 0.45), transparent 65%),
		radial-gradient(700px 420px at -8% 60%, rgba(46, 230, 214, 0.12), transparent 60%),
		var(--bcd-ink);
	padding: 56px 0 84px;
}

.bcd-hero .bcd-container {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.bcd-hero h1 {
	font-size: clamp(40px, 5.2vw, 60px);
	color: #ffffff;
	margin-bottom: 22px;
}

.bcd-hero h1 .bcd-accent {
	background: linear-gradient(100deg, var(--bcd-gold) 20%, var(--bcd-aqua) 90%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.bcd-hero__sub {
	font-size: 19px;
	color: #b9b3e0;
	margin-bottom: 34px;
	max-width: 34em;
}

.bcd-hero__art { width: 100%; height: auto; }

/* ---------- Signup form ---------- */
.bcd-signup { max-width: 500px; }

.bcd-signup__who {
	display: flex;
	gap: 10px;
	margin-bottom: 14px;
}

.bcd-signup__who label { cursor: pointer; }

.bcd-signup__who input { position: absolute; opacity: 0; }

.bcd-signup__who span {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: #cfc9f2;
	background: rgba(255, 255, 255, 0.06);
	border: 1.5px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	padding: 7px 16px;
	transition: all 0.15s ease;
}

.bcd-signup__who input:checked + span {
	color: var(--bcd-ink);
	background: var(--bcd-aqua);
	border-color: var(--bcd-aqua);
}

.bcd-signup__row {
	display: flex;
	gap: 10px;
}

.bcd-signup__row input[type="email"] {
	flex: 1;
	font-family: var(--bcd-font-body);
	font-size: 16px;
	color: var(--bcd-ink);
	background: #ffffff;
	border: 1.5px solid transparent;
	border-radius: 13px;
	padding: 15px 18px;
	outline: none;
}

.bcd-signup__row input[type="email"]:focus {
	border-color: var(--bcd-aqua);
	box-shadow: 0 0 0 3px rgba(46, 230, 214, 0.25);
}

.bcd-btn {
	font-family: var(--bcd-font-body);
	font-size: 16px;
	font-weight: 600;
	color: var(--bcd-ink);
	background: linear-gradient(135deg, #f4d68d, var(--bcd-gold) 45%, var(--bcd-gold-deep));
	border: none;
	border-radius: 13px;
	padding: 15px 28px;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: 0 6px 18px rgba(232, 194, 104, 0.35);
	transition: filter 0.15s ease, transform 0.1s ease;
}

.bcd-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }

.bcd-signup__note {
	font-size: 13px;
	color: #8f88b8;
	margin-top: 10px;
}

.bcd-signup__success {
	font-size: 15px;
	font-weight: 600;
	color: var(--bcd-aqua);
	background: rgba(46, 230, 214, 0.1);
	border-radius: 12px;
	padding: 12px 16px;
	margin-top: 12px;
}

.bcd-hp { position: absolute !important; left: -9999px !important; }

/* ---------- Early access application form ---------- */
.bcd-contact {
	max-width: 640px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: var(--bcd-radius);
	padding: 36px 34px;
	box-shadow: var(--bcd-shadow);
	text-align: left;
}

.bcd-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 18px;
	margin-bottom: 22px;
}

.bcd-field { display: flex; flex-direction: column; gap: 6px; }

.bcd-field--full { grid-column: 1 / -1; }

.bcd-field label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--bcd-ink);
}

.bcd-req { color: var(--bcd-magenta); }

.bcd-field input,
.bcd-field select,
.bcd-field textarea {
	font-family: var(--bcd-font-body);
	font-size: 15.5px;
	color: var(--bcd-ink);
	background: var(--bcd-ivory);
	border: 1.5px solid rgba(109, 61, 245, 0.18);
	border-radius: 11px;
	padding: 12px 14px;
	outline: none;
	width: 100%;
	resize: vertical;
}

.bcd-field input:focus,
.bcd-field select:focus,
.bcd-field textarea:focus {
	border-color: var(--bcd-violet);
	box-shadow: 0 0 0 3px rgba(109, 61, 245, 0.15);
}

.bcd-btn--wide { width: 100%; }

.bcd-contact__note {
	font-size: 13.5px;
	color: var(--bcd-text-muted);
	margin-top: 12px;
	text-align: center;
}

@media (max-width: 640px) {
	.bcd-contact { padding: 28px 22px; }
	.bcd-contact__grid { grid-template-columns: 1fr; }
}

/* ---------- Value cards ---------- */
.bcd-values {
	padding: 72px 0;
	background: var(--bcd-ivory);
}

.bcd-section-kicker {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bcd-violet);
	margin-bottom: 10px;
}

.bcd-section-title {
	font-size: clamp(30px, 3.6vw, 40px);
	margin-bottom: 42px;
	max-width: 22em;
}

.bcd-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.bcd-card {
	background: #ffffff;
	border: 1px solid rgba(109, 61, 245, 0.14);
	border-radius: var(--bcd-radius);
	padding: 34px 28px;
	box-shadow: var(--bcd-shadow);
}

.bcd-card__icon {
	width: 56px;
	height: 56px;
	margin-bottom: 20px;
}

.bcd-card h3 {
	font-size: 21px;
	margin-bottom: 10px;
}

.bcd-card p {
	font-size: 15.5px;
	color: var(--bcd-text-muted);
}

/* ---------- Fee comparison ---------- */
.bcd-compare {
	padding: 76px 0;
	background: linear-gradient(160deg, var(--bcd-violet-deep), var(--bcd-ink-2) 70%);
}

.bcd-compare .bcd-section-kicker { color: var(--bcd-aqua); }

.bcd-compare .bcd-section-title { color: #ffffff; }

.bcd-bars {
	display: grid;
	gap: 22px;
	max-width: 760px;
}

.bcd-bar__label {
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.bcd-bar__value { color: var(--bcd-gold); }

.bcd-bar__track {
	height: 34px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	overflow: hidden;
}

.bcd-bar__fill {
	height: 100%;
	border-radius: 10px;
}

.bcd-bar__fill--them { width: 86%; background: linear-gradient(90deg, #8a84b8, #55508a); }

.bcd-bar__fill--us { width: 4%; min-width: 26px; background: linear-gradient(90deg, var(--bcd-aqua), var(--bcd-gold)); }

.bcd-compare__note {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 24px;
}

/* ---------- AI section ---------- */
.bcd-ai {
	padding: 76px 0;
	background: #ffffff;
}

.bcd-ai .bcd-container {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.bcd-ai__art { width: 100%; height: auto; }

.bcd-ai ul {
	list-style: none;
	display: grid;
	gap: 16px;
	margin-top: 8px;
}

.bcd-ai li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	font-size: 16.5px;
	color: var(--bcd-text-muted);
}

.bcd-ai li strong { color: var(--bcd-ink); }

.bcd-ai__check {
	flex: none;
	width: 26px;
	height: 26px;
	margin-top: 2px;
}

/* ---------- Coming soon band ---------- */
.bcd-soon {
	padding: 80px 0;
	background:
		radial-gradient(900px 500px at 50% 120%, rgba(109, 61, 245, 0.4), transparent 65%),
		var(--bcd-ink);
	text-align: center;
}

.bcd-soon .bcd-section-title {
	color: #ffffff;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 16px;
}

.bcd-soon .bcd-section-kicker { color: var(--bcd-gold); }

.bcd-soon p {
	color: #b9b3e0;
	max-width: 36em;
	margin: 0 auto 32px;
}

.bcd-soon .bcd-signup { margin: 0 auto; }

.bcd-soon .bcd-signup__who { justify-content: center; }

/* ---------- Footer ---------- */
.bcd-footer {
	padding: 30px 0;
	background: #090721;
}

.bcd-footer .bcd-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.bcd-footer p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
}

.bcd-footer .bcd-brand__name { color: #ffffff; font-size: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
	.bcd-hero .bcd-container,
	.bcd-ai .bcd-container { grid-template-columns: 1fr; gap: 40px; }
	.bcd-cards { grid-template-columns: 1fr; }
	.bcd-hero__art { max-width: 480px; margin: 0 auto; }
	.bcd-ai__art { max-width: 380px; margin: 0 auto; order: -1; }
	.bcd-signup__row { flex-direction: column; }
}
