/*
Theme Name: BZZD
Theme URI:
Author: BZZD
Description: Custom block theme for BZZD.
Version: 0.3.3
Requires at least: 6.5
Tested up to: 6.9
Requires PHP: 7.4
License: Private
Text Domain: bzzd
*/

/* ── Landing page ── */
.bzzd-landing {
	min-height: 100vh; /* fallback */
	min-height: 100svh;
	background: radial-gradient(ellipse at 50% 40%, #3a5ab8 0%, #233f95 45%, #192d70 100%);
}

/* ── Header logo ── */
.bzzd-header-logo {
	margin: 0 !important;
}
.bzzd-header-logo img {
	height: 36px;
	width: auto;
}

/* ── Can showcase — overlapping layout ── */
.bzzd-cans-container {
	align-items: center !important;
	gap: 0 !important;
	flex-wrap: nowrap !important;
}

.bzzd-cans-container .bzzd-can {
	margin: 0 !important;
	flex-shrink: 1;
}

.bzzd-cans-container .bzzd-can img {
	filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.35));
}

/* Center can — largest, in front */
.bzzd-can-center {
	z-index: 2;
	position: relative;
}
.bzzd-can-center img {
	width: clamp(280px, 38vw, 520px) !important;
	height: auto !important;
}

/* Side cans — smaller, behind center */
.bzzd-can-left,
.bzzd-can-right {
	z-index: 1;
	position: relative;
}
.bzzd-can-left img,
.bzzd-can-right img {
	width: clamp(220px, 30vw, 440px) !important;
	height: auto !important;
}

.bzzd-can-left {
	margin-right: -8vw !important;
}
.bzzd-can-right {
	margin-left: -8vw !important;
}

/* ── Form ── */
.bzzd-form-wrap {
	max-width: 520px;
	margin: 0 auto;
}

.bzzd-meeting-form .bzzd-form-fields {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.bzzd-meeting-form input[type="email"] {
	width: 100%;
	padding: 0.875rem 1.25rem;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-family: inherit;
	background: #ffffff;
	color: #1b2a49;
	box-sizing: border-box;
}

.bzzd-meeting-form input:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.bzzd-meeting-form input::placeholder {
	color: #999;
}

.bzzd-form-buttons {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.75rem;
	justify-content: center;
}

.bzzd-submit-btn {
	flex: 1;
	padding: 0.875rem 1.5rem;
	background: #ffffff;
	color: #1b2a49;
	border: 2px solid #ffffff;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.bzzd-submit-btn:hover {
	background: transparent;
	color: #ffffff;
}

.bzzd-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

/* ── Form messages ── */
.bzzd-form-message {
	margin-top: 1.25rem;
	padding: 1.15rem 1.25rem;
	border-radius: 6px;
	text-align: center;
	font-size: 1.1rem;
	font-weight: 600;
	color: #ffffff;
}

.bzzd-success {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.bzzd-error {
	background: rgba(239, 68, 68, 0.2);
	border: 1px solid rgba(239, 68, 68, 0.4);
}

/* ── Desktop / tablet — cap cans by viewport height so hero fits above fold ── */
@media (min-width: 601px) {
	.bzzd-can-center img {
		max-height: 36svh !important;
		width: auto !important;
	}
	.bzzd-can-left img,
	.bzzd-can-right img {
		max-height: 30svh !important;
		width: auto !important;
	}
}

/* ── Mobile (untouched from working version) ── */
@media (max-width: 600px) {
	.bzzd-can-center img {
		width: 200px !important;
	}
	.bzzd-can-left img,
	.bzzd-can-right img {
		width: 160px !important;
	}
	.bzzd-can-left {
		margin-right: -30px !important;
	}
	.bzzd-can-right {
		margin-left: -30px !important;
	}
	.bzzd-form-buttons {
		flex-direction: column;
	}
}

/* ── Footer ── */
.bzzd-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
