/**
 * Footer Styles - Pied de page
 */

.site-footer {
	background: #1f2937;
	color: #9ca3af;
	padding: 3rem 2rem 2rem;
	margin-top: 4rem;
}

/* Footer widgets area */
.footer-widgets {
	max-width: 1200px;
	margin: 0 auto 2rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.footer-widgets {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.footer-widgets {
		grid-template-columns: repeat(3, 1fr);
	}
}

.footer-widget {
	color: #d1d5db;
}

.footer-widget h3 {
	color: #fff;
	font-size: 1.125rem;
	margin: 0 0 1rem;
}

.footer-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-widget li {
	margin-bottom: 0.5rem;
}

.footer-widget a {
	color: #d1d5db;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-widget a:hover {
	color: #fff;
}

/* Footer navigation menu */
.footer-navigation {
	margin-bottom: 2rem;
	text-align: center;
}

.footer-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.footer-navigation a {
	color: #d1d5db;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.footer-navigation a:hover {
	color: #fff;
}

/* Site info */
.site-info {
	text-align: center;
	font-size: 0.875rem;
	border-top: 1px solid #374151;
	padding-top: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.site-info a {
	color: #d1d5db;
	text-decoration: none;
}

.site-info a:hover {
	color: #fff;
}

.sep {
	margin: 0 0.5rem;
}

/* Footer social menu */
.footer-social {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #374151;
	color: #d1d5db;
	border-radius: 50%;
	transition: all 0.2s ease;
}

.footer-social a:hover {
	background: var(--primary-color);
	color: #fff;
	transform: translateY(-2px);
}

/* Responsive footer */
@media (max-width: 768px) {
	.site-footer {
		padding: 2rem 1rem 1.5rem;
	}

	.footer-navigation ul {
		flex-direction: column;
		gap: 0.75rem;
	}
}
