@charset "utf-8";
/* CSS Document */

footer {
	background-color: var(--secondary-color);
	color: white;
	padding: 4rem 0 2rem;
	position: relative;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(to right, var(--primary-color), #e61918);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.social-links a {
	color: white;
	font-size: 1.8rem;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	text-decoration: none;
}

.social-links a:hover {
	color: var(--primary-color);
	background-color: white;
	transform: translateY(-3px);
}

.footer-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.footer-links {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--primary-color);
}

@media (max-width: 768px) {
	footer {
		padding: 3rem 0 1.5rem;
	}
	
	.social-links {
		gap: 1rem;
	}
	
	.social-links a {
		font-size: 1.5rem;
		width: 35px;
		height: 35px;
	}
}