/* Footer Component Styles */

.footer {
	background: var(--carbon-dark);
	border-top: 1px solid var(--metal-dark);
	padding: 60px 30px 30px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 50px;
	margin-bottom: 40px;
}

.footer-brand {
	max-width: 350px;
}

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.footer-logo .logo-icon {
	width: 180px;
	height: 60px;
	margin-right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo .logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo .logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer-description {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 25px;
}

.footer-social {
	display: flex;
	gap: 15px;
}

.social-icon {
	width: 40px;
	height: 40px;
	background: var(--carbon-medium);
	border: 1px solid var(--metal-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 700;
}

.social-icon img {
	width: 20px;
	height: 20px;
	filter: brightness(0) saturate(100%) invert(70%);
	transition: all 0.3s ease;
}

.social-icon:hover {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-color: transparent;
	color: var(--text-primary);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(153, 69, 255, 0.3);
}

.social-icon:hover img {
	filter: brightness(0) saturate(100%) invert(100%);
}

.footer-section h4 {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
	color: var(--text-primary);
}

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

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--accent-cyan);
	padding-left: 5px;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 30px;
	border-top: 1px solid var(--metal-dark);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.copyright {
	color: var(--text-dim);
	font-size: 14px;
}

.footer-credits {
	color: var(--text-dim);
	font-size: 14px;
}

.footer-credits a {
	color: var(--accent-cyan);
	text-decoration: none;
}

.footer-credits a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-brand {
		max-width: 100%;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}
