/* ===== Footer Button Links ===== */
footer nav a.footer-link {
	background: var(--vindxit-yellow) !important;   /* bright yellow */
	color: black !important;                        /* blue text for contrast */
	border: none !important;
	padding: 0.6rem 1.25rem !important;
	border-radius: 9999px !important;               /* pill shape */
	font-weight: 600 !important;
	font-size: 0.9rem !important;
	text-decoration: none !important;
	transition: background-color 0.2s ease, transform 0.1s ease !important;
	display: inline-block !important;
	margin: 0.25rem 0.5rem !important;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
}

footer nav a.footer-link:hover {
	background: #ffe066 !important;                 /* lighter yellow on hover */
	transform: translateY(-1px) !important;
}

footer nav {
	display: flex !important;
	justify-content: center !important;             /* center the row of buttons */
	flex-wrap: wrap !important;                     /* let them wrap if screen is narrow */
	gap: 0.5rem !important;                         /* space between buttons */
	margin: 1rem auto !important;                   /* auto left/right margins */
	text-align: center !important;
}

footer {
	text-align: center !important;                  /* center everything inside footer */
	padding: 1rem 0 !important;                     /* space above/below */
	background: #000 !important; 
	color: #FFD700 !important; 
}

footer nav {
	display: flex !important;
	justify-content: center !important;             /* center the nav buttons row */
	flex-wrap: wrap !important;                     /* allow wrapping on small screens */
	gap: 0.5rem !important;                         /* spacing between buttons */
	margin-bottom: 0.75rem !important;              /* space before Whitewood text */
}

footer p {
	margin: 0 !important;                           /* remove default paragraph margins */
	font-size: 0.85rem !important;                  /* slightly smaller text */
	color: #fff !important;                         /* adjust for visibility */
	opacity: 0.85 !important;                       /* subtle style */
}
footer {
	background: #000 !important;
	color: #FFD700 !important;
	padding: 1rem 0 !important;
	position: relative;              /* allows absolute child positioning */
	text-align: center !important;   /* keeps <p> centered */
}

footer .footer-inner {
	position: relative;
	display: flex;
	justify-content: center;        /* center the <p> */
	align-items: center;
}

footer .footer-inner p {
	margin: 0 !important;
	font-size: 0.85rem !important;
	color: #fff !important;
	opacity: 0.85 !important;
}

footer .ladyMuteBtn {
	position: absolute;
	right: 1rem;                     /* push button to far right */
	background: var(--vindxit-yellow);
	color: #111;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
}
