/* ============================================================
   basement solutions – Custom Elementor Widgets
   ============================================================ */

/* ── ARTIST PROFILE (bap) ──────────────────────────────────── */

.bap-profile {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 85vh;
	background: #000000;
	font-family: 'Archivo', sans-serif;
}

/* Foto rechts: Spalten tauschen */
.bap-layout-right .bap-photo-col { order: 2; }
.bap-layout-right .bap-info-col  { order: 1; }

/* ── Foto-Spalte ── */
.bap-photo-col {
	position: relative;
}

.bap-photo-wrap {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
}

.bap-photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	filter: grayscale(15%);
	transition: filter 0.5s ease;
}

.bap-profile:hover .bap-photo-img {
	filter: grayscale(0%);
}

/* Instagram-Link am Foto-Rand */
.bap-instagram-link {
	position: absolute;
	bottom: 28px;
	left: 28px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-family: 'Archivo', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.bap-layout-right .bap-instagram-link {
	left: auto;
	right: 28px;
}

.bap-instagram-link:hover,
.bap-instagram-link:focus-visible {
	color: #F8F812;
}

/* ── Info-Spalte ── */
.bap-info-col {
	background: #000000;
	padding: 80px 72px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bap-eyebrow {
	display: block;
	font-family: 'Archivo', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #F8F812;
	margin-bottom: 18px;
}

.bap-name {
	font-family: 'Archivo', sans-serif;
	font-size: clamp(44px, 4.5vw, 78px);
	font-weight: 800;
	line-height: 0.95;
	color: #F8F812;
	text-transform: uppercase;
	letter-spacing: 0;
	margin: 0 0 28px;
}

/* ── Stil-Tags ── */
.bap-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 36px;
}

.bap-tag {
	display: inline-block;
	font-family: 'Archivo', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(248, 248, 18, 0.4);
	padding: 6px 16px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.bap-tag:hover {
	color: #F8F812;
	border-color: rgba(248, 248, 18, 0.85);
}

/* ── Bio ── */
.bap-bio {
	font-family: 'Archivo', sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.7);
	max-width: 540px;
	margin-bottom: 52px;
}

.bap-bio p {
	margin-bottom: 14px;
}

.bap-bio p:last-child {
	margin-bottom: 0;
}

/* ── Booking-Button ── */
.bap-booking-btn {
	display: inline-block;
	align-self: flex-start;
	background: #F8F812;
	color: #000000;
	font-family: 'Archivo', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 16px 38px;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.15s ease, color 0.2s ease;
}

.bap-booking-btn:hover,
.bap-booking-btn:focus-visible {
	background: #ffffff;
	color: #000000;
	transform: translateY(-2px);
}

/* ── Portfolio-Abschnitt ── */
.bap-portfolio-section {
	background: #000000;
}

.bap-portfolio-header {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 44px 48px 32px;
}

.bap-portfolio-label {
	font-family: 'Archivo', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #F8F812;
	white-space: nowrap;
}

.bap-portfolio-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(to right, rgba(248, 248, 18, 0.4), transparent);
}

/* Portfolio Grid */
.bap-portfolio {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3px;
	padding: 0 3px 3px;
}

.bap-portfolio.bap-cols-3 { grid-template-columns: repeat(3, 1fr); }
.bap-portfolio.bap-cols-5 { grid-template-columns: repeat(5, 1fr); }

.bap-portfolio-item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #111111;
}

.bap-portfolio-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(20%);
	transition: transform 0.5s ease, filter 0.4s ease;
}

.bap-portfolio-item:hover .bap-portfolio-img {
	transform: scale(1.07);
	filter: grayscale(0%);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.bap-profile {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.bap-layout-right .bap-photo-col,
	.bap-layout-right .bap-info-col {
		order: unset;
	}

	.bap-photo-wrap {
		position: relative;
		height: 62vw;
		min-height: 320px;
		max-height: 520px;
	}

	.bap-info-col {
		padding: 52px 40px;
	}

	.bap-portfolio,
	.bap-portfolio.bap-cols-4,
	.bap-portfolio.bap-cols-5 {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 640px) {
	.bap-info-col {
		padding: 40px 24px;
	}

	.bap-photo-wrap {
		height: 72vw;
	}

	.bap-name {
		font-size: clamp(36px, 9vw, 52px);
	}

	.bap-portfolio,
	.bap-portfolio.bap-cols-3,
	.bap-portfolio.bap-cols-4,
	.bap-portfolio.bap-cols-5 {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.bap-portfolio-header {
		padding: 28px 24px 20px;
	}
}
