/**
 * Site Footer Component
 *
 * Global site footer with branding, navigation columns, and copyright.
 * Matches wireframe: sovereign-debt-hub-countries-wireframe.html
 *
 * @package CPDC_Sovereign_Debt_Hub
 * @since 0.1.0
 */

/* ==========================================================================
   Footer Base
   ========================================================================== */

.site-footer {
	margin-block-start: auto;
	padding-block: var(--wp--preset--spacing--2xl) var(--wp--preset--spacing--lg);
	background-color: var(--wp--preset--color--white);
	border-top: 2px solid var(--wp--preset--color--ocean-indigo);
}

.site-footer__container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: var(--wp--preset--spacing--md);
}

@media (min-width: 1024px) {
	.site-footer__container {
		padding-inline: var(--wp--preset--spacing--lg);
	}
}

/* ==========================================================================
   Footer Grid (4 columns)
   ========================================================================== */

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--wp--preset--spacing--xl);
	width: 100%;
	margin-block-end: var(--wp--preset--spacing--xl);
}

@media (min-width: 640px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.site-footer__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ==========================================================================
   Footer Column
   ========================================================================== */

.site-footer__col {
	/* Base column styles */
}

.site-footer__col--brand {
	/* Brand column can span full width on small screens */
}

@media (min-width: 640px) and (max-width: 767px) {
	.site-footer__col--brand {
		grid-column: 1 / -1;
	}
}

/* ==========================================================================
   Footer Branding
   ========================================================================== */

.site-footer__brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-block-end: var(--wp--preset--spacing--sm);
	color: var(--wp--preset--color--ocean-indigo);
}

.site-footer__brand-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border: 2px solid var(--wp--preset--color--ocean-indigo);
	border-radius: 4px;
	font-size: 0.625rem;
	font-weight: 700;
}

.site-footer__brand-name {
	font-size: 1.125rem;
	font-weight: 700;
}

.site-footer__tagline {
	margin: 0;
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.6;
	color: var(--wp--preset--color--gray-600);
}

/* ==========================================================================
   Footer Parent Organisation Attribution
   ========================================================================== */

.site-footer__parent-org {
	margin-block-start: var(--wp--preset--spacing--md);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.site-footer__parent-label {
	font-size: var(--wp--preset--font-size--xs);
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--wp--preset--color--gray-500);
}

.site-footer__parent-logo {
	display: block;
	filter: brightness(0) invert(1);
	opacity: 0.65;
	transition: opacity 0.15s ease;
}

.site-footer__parent-link:hover .site-footer__parent-logo {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.site-footer__parent-logo {
		transition: none;
	}
}

/* ==========================================================================
   Footer Headings
   ========================================================================== */

.site-footer__heading {
	margin: 0 0 var(--wp--preset--spacing--sm);
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--ocean-indigo);
}

/* ==========================================================================
   Footer Links
   ========================================================================== */

.site-footer__links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__links li {
	margin: 0;
}

.site-footer__links a {
	color: var(--wp--preset--color--gray-600);
	text-decoration: none;
	font-size: var(--wp--preset--font-size--sm);
	transition: color 0.15s ease;
}

.site-footer__links a:hover {
	color: var(--wp--preset--color--ocean-indigo);
}

/* ==========================================================================
   Footer Social
   ========================================================================== */

.site-footer__social {
	display: flex;
	gap: 0.75rem;
}

.site-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 2px solid var(--wp--preset--color--ocean-indigo);
	color: var(--wp--preset--color--ocean-indigo);
	text-decoration: none;
	font-size: 1rem;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.site-footer__social-link:hover {
	background-color: var(--wp--preset--color--ocean-indigo);
	color: var(--wp--preset--color--white);
	text-decoration: none;
}

/* ==========================================================================
   Footer Bottom Bar
   ========================================================================== */

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: var(--wp--preset--spacing--sm);
	width: 100%;
	padding-block-start: var(--wp--preset--spacing--lg);
	border-top: 2px solid var(--wp--preset--color--ocean-indigo);
}

@media (min-width: 640px) {
	.site-footer__bottom {
		flex-direction: row;
	}
}

.site-footer__copyright {
	margin: 0;
	font-size: var(--wp--preset--font-size--xs);
	color: var(--wp--preset--color--gray-600);
}

.site-footer__legal {
	display: flex;
	gap: var(--wp--preset--spacing--md);
}

.site-footer__legal a {
	color: var(--wp--preset--color--gray-600);
	text-decoration: none;
	font-size: var(--wp--preset--font-size--xs);
	transition: color 0.15s ease;
}

.site-footer__legal a:hover {
	color: var(--wp--preset--color--ocean-indigo);
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	.site-footer__links a,
	.site-footer__social-link,
	.site-footer__legal a {
		transition: none;
	}
}
