/* Lyric Boxes for Elementor — frontend styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=UnifrakturCook:wght@700&family=Oswald:wght@400;600&family=Dancing+Script:wght@500;700&display=swap');

.lbe-widget-wrap { width: 100%; }

.lbe-box {
	position: relative;
	overflow: hidden;
	transition: box-shadow .3s ease;
	background-clip: padding-box;
}

/* Background image lives on a ::before layer so its opacity is
   independent of the lyric text. */
.lbe-box--has-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--lbe-bg);
	background-size: var(--lbe-bg-size, cover);
	background-position: var(--lbe-bg-pos, center);
	background-repeat: no-repeat;
	opacity: var(--lbe-bg-opacity, 1);
	mix-blend-mode: var(--lbe-bg-blend, normal);
	pointer-events: none;
	z-index: 0;
}

/* Colour overlay sits above the image but below the lyrics. */
.lbe-box--has-overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--lbe-overlay, transparent);
	pointer-events: none;
	z-index: 1;
}

.lbe-box__inner {
	position: relative;
	z-index: 2;
}

.lbe-box__title {
	margin: 0 0 .4em;
	font-size: 1.4em;
	font-weight: 700;
	letter-spacing: .04em;
}

.lbe-divider {
	display: block;
	width: 48px;
	height: 2px;
	margin: 0 auto .9em;
	opacity: .7;
}
.lbe-box[style*="text-align:left"] .lbe-divider { margin-left: 0; }
.lbe-box[style*="text-align:right"] .lbe-divider { margin-right: 0; margin-left: auto; }

.lbe-box__lyrics {
	white-space: normal;
}

.lbe-quote {
	display: block;
	font-size: 3em;
	line-height: .5;
	opacity: .35;
	font-family: Georgia, serif;
}
.lbe-quote--open { margin-bottom: .1em; }
.lbe-quote--close { margin-top: .35em; }
.lbe-box[style*="text-align:center"] .lbe-quote { text-align: center; }

.lbe-box--missing {
	padding: 24px;
	border: 2px dashed #bbb;
	color: #888;
	text-align: center;
	border-radius: 8px;
	background: #fafafa;
}

/* Admin side preview scaling */
.lbe-side-preview .lbe-box { font-size: 15px !important; }
