/**
 * Site footer component styles.
 *
 * @package blog_Trendy
 */

.site-footer {
	background-color: #000000;
	color: rgba(255, 255, 255, 0.85);
}

.site-footer__gradient-bar {
	height: 4px;
	background: linear-gradient(90deg, #ff1493 0%, #9b59b6 100%);
}

.site-footer__inner {
	max-width: var(--trendy-container-max, 1280px);
	margin: 0 auto;
	padding: 56px var(--trendy-container-padding, 24px) 40px;
}

.site-footer__brand {
	margin-bottom: 40px;
	text-align: center;
}

.site-footer__logo {
	display: flex;
	justify-content: center;
	margin-bottom: 16px;
}

.site-footer__logo-link {
	display: inline-flex;
	text-decoration: none;
}

.site-footer__logo-link:hover,
.site-footer__logo-link:focus {
	text-decoration: none;
	opacity: 0.9;
}

.site-footer__logo-image,
.site-footer .custom-logo-link img {
	display: block;
	width: auto;
	max-height: 40px;
	height: auto;
}

.site-footer__tagline {
	margin: 0 auto;
	max-width: 520px;
	font-family: "Nunito", sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.65);
}

.site-footer__columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.site-footer__column-title {
	margin: 0 0 16px;
	font-family: "Nunito", sans-serif;
	font-size: 0.8125rem;
	font-weight: 800;
	line-height: 1;
	color: var(--trendy-color-white, #ffffff);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.site-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu li {
	margin: 0 0 10px;
}

.site-footer__menu li:last-child {
	margin-bottom: 0;
}

.site-footer__menu a {
	font-family: "Nunito", sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus {
	color: #ff1493;
	text-decoration: none;
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--trendy-color-white, #ffffff);
	text-decoration: none;
	background: linear-gradient(90deg, #ff1493 0%, #9b59b6 100%);
	border-radius: 50%;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__social-link svg {
	width: 18px;
	height: 18px;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus {
	color: var(--trendy-color-white, #ffffff);
	text-decoration: none;
	opacity: 0.9;
	transform: translateY(-2px);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
	max-width: var(--trendy-container-max, 1280px);
	margin: 0 auto;
	padding: 20px var(--trendy-container-padding, 24px);
	text-align: center;
}

.site-footer__copyright {
	margin: 0;
	font-family: "Nunito", sans-serif;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.45);
}

@media screen and (max-width: 768px) {
	.site-footer__inner {
		padding: 40px var(--trendy-container-padding, 16px) 32px;
	}

	.site-footer__columns {
		grid-template-columns: 1fr;
		gap: 28px;
		text-align: center;
	}

	.site-footer__social {
		justify-content: center;
	}
}
