/* Lucky Ducks LinkHub — front-end hub styles. Mobile-first, brand palette. */

.ldlh-hub {
	--ld-yellow: #F7D85A;
	--ld-pink: #F4A7B9;
	--ld-blue: #8BC9E8;
	--ld-white: #FFFFFF;
	--ld-charcoal: #2F2F2F;
	--ld-accent: var(--ld-pink);
	--ld-bg-1: #FFF7DE;
	--ld-bg-2: #FDEAF0;

	box-sizing: border-box;
	min-height: 100vh;
	margin: 0;
	padding: 28px 18px 48px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	background: linear-gradient(160deg, var(--ld-bg-1) 0%, var(--ld-bg-2) 55%, #EAF5FC 100%);
	font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	color: var(--ld-charcoal);
}

.ldlh-hub *,
.ldlh-hub *::before,
.ldlh-hub *::after { box-sizing: border-box; }

/* Seasonal accents shift the secondary highlight + background wash. */
.ldlh-accent-spring { --ld-accent: var(--ld-pink); --ld-bg-1: #FFF7DE; --ld-bg-2: #FDEAF0; }
.ldlh-accent-summer { --ld-accent: var(--ld-blue); --ld-bg-1: #FFF7DE; --ld-bg-2: #EAF5FC; }
.ldlh-accent-fall   { --ld-accent: #E8A36B; --ld-bg-1: #FFF3E0; --ld-bg-2: #FDEAF0; }
.ldlh-accent-winter { --ld-accent: var(--ld-blue); --ld-bg-1: #EAF5FC; --ld-bg-2: #F3F8FF; }

.ldlh-card {
	width: 100%;
	max-width: 480px;
	background: var(--ld-white);
	border-radius: 28px;
	padding: 30px 22px 26px;
	text-align: center;
	box-shadow: 0 14px 40px rgba(47, 47, 47, 0.10);
}

.ldlh-logo {
	width: 124px;
	height: 124px;
	object-fit: contain;
	margin: 4px auto 10px;
	display: block;
}

.ldlh-title {
	font-family: "Fredoka", "Nunito", sans-serif;
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 1.15;
	margin: 4px 0 6px;
	color: var(--ld-charcoal);
}

.ldlh-tagline {
	font-size: 1rem;
	line-height: 1.45;
	margin: 0 auto 20px;
	max-width: 36ch;
	color: #555;
}

.ldlh-shows {
	margin: 0 0 20px;
	padding: 14px 14px 7px;
	background: linear-gradient(135deg, var(--ld-yellow), var(--ld-pink));
	border-radius: 18px;
}

.ldlh-shows-title {
	font-family: "Fredoka", "Nunito", sans-serif;
	font-size: 1.05rem;
	margin: 0 0 10px;
	color: var(--ld-charcoal);
}

.ldlh-shows-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ldlh-show {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 10px;
	background: var(--ld-white);
	border-radius: 12px;
	padding: 10px 12px;
	margin-bottom: 8px;
	text-align: left;
}

.ldlh-show-name { font-weight: 700; flex: 1 1 100%; }
.ldlh-show-cd { font-size: 0.9rem; color: #6a6a6a; flex: 1 1 auto; }

.ldlh-show-join {
	margin-left: auto;
	background: var(--ld-charcoal);
	color: var(--ld-white);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.85rem;
	padding: 7px 14px;
	border-radius: 999px;
}
.ldlh-show-join:hover { background: #000; }
.ldlh-show-join:focus-visible { background: #000; outline: 3px solid var(--ld-blue); outline-offset: 2px; }

.ldlh-show-live { box-shadow: 0 0 0 2px var(--ld-pink); }
.ldlh-show-live .ldlh-show-cd { color: #c0392b; font-weight: 700; }
.ldlh-show-live .ldlh-show-name::after {
	content: "LIVE";
	margin-left: 8px;
	background: #e23b3b;
	color: #fff;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.5px;
	padding: 2px 7px;
	border-radius: 999px;
	vertical-align: middle;
	animation: ldlh-pulse 1.4s ease-in-out infinite;
}
@keyframes ldlh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

.ldlh-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ldlh-link {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 15px 18px;
	border-radius: 16px;
	background: var(--ld-white);
	border: 2px solid var(--ld-accent);
	color: var(--ld-charcoal);
	font-weight: 700;
	font-size: 1.02rem;
	text-decoration: none;
	transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.ldlh-link:hover,
.ldlh-link:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(47, 47, 47, 0.12);
	background: #FFFDF5;
	outline: none;
}

.ldlh-link:focus-visible { outline: 3px solid var(--ld-blue); outline-offset: 2px; }

.ldlh-hero {
	background: var(--ld-yellow);
	border-color: var(--ld-yellow);
	font-size: 1.12rem;
	padding: 18px 18px;
	box-shadow: 0 6px 0 rgba(47, 47, 47, 0.08);
}

.ldlh-hero:hover,
.ldlh-hero:focus-visible { background: #F4CE3F; }

.ldlh-ico {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ld-charcoal);
}

.ldlh-ico svg { width: 100%; height: 100%; }

.ldlh-label { flex: 1 1 auto; text-align: center; }

.ldlh-email {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px dashed var(--ld-accent);
}

.ldlh-email-heading {
	font-family: "Fredoka", "Nunito", sans-serif;
	font-size: 1.15rem;
	margin: 0 0 12px;
}

.ldlh-email-embed input[type="email"],
.ldlh-email-embed input[type="text"] {
	width: 100%;
	max-width: 100%;
	padding: 11px 13px;
	border-radius: 12px;
	border: 2px solid var(--ld-blue);
	font-size: 1rem;
	margin-bottom: 10px;
}

.ldlh-email-embed input[type="submit"],
.ldlh-email-embed button {
	background: var(--ld-blue);
	color: var(--ld-charcoal);
	border: none;
	border-radius: 12px;
	padding: 12px 20px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
}

.ldlh-foot {
	margin: 22px 0 0;
	font-size: 0.82rem;
	color: #8a8a8a;
}

@media (min-width: 600px) {
	.ldlh-card { padding: 38px 34px 30px; }
	.ldlh-title { font-size: 1.95rem; }
}

@media (prefers-reduced-motion: reduce) {
	.ldlh-link { transition: none; }
	.ldlh-link:hover, .ldlh-link:focus-visible { transform: none; }
	.ldlh-show-live .ldlh-show-name::after { animation: none; }
}
