/**
 * Footer Styles
 * Version: 1.1.0
 */

/* ========================================
   FOOTER MAIN
   ======================================== */

.site-footer {
	background: var(--deep-forest);
	color: var(--sage);
}

.footer-main {
	padding: 60px 0 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
}

.footer-col-title {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
	margin: 0 0 1.5rem;
}

.footer-description {
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--sage);
	margin-top: 1rem;
}

.footer-logo {
	margin-bottom: 1rem;
}

.footer-logo img {
	height: 40px;
	width: auto;
}

.footer-logo-text {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--white);
	text-decoration: none;
}

/* Footer Menu */
.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 0.75rem;
}

.footer-menu a {
	color: var(--sage);
	text-decoration: none;
	font-size: 0.875rem;
	transition: color var(--transition-base);
}

.footer-menu a:hover {
	color: var(--white);
}

/* Footer Social */
.footer-social {
	display: flex;
	gap: 1rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	transition: all var(--transition-base);
}

.social-link:hover {
	background: var(--olive);
	transform: translateY(-2px);
}

.social-link svg {
	width: 20px;
	height: 20px;
}

/* ========================================
   FOOTER BOTTOM
   ======================================== */

.footer-bottom {
	border-top: 1px solid rgba(171, 181, 156, 0.2);
	padding: 20px 0;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
}

.footer-copyright {
	color: var(--sage);
}

.footer-legal {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.footer-legal a {
	color: var(--sage);
	text-decoration: none;
	transition: color var(--transition-base);
}

.footer-legal a:hover {
	color: var(--white);
}

.footer-legal .separator {
	color: rgba(171, 181, 156, 0.4);
}

/* ========================================
   SEO FOOTER LINKS
   ======================================== */

.site-footer-links {
	background: var(--bg-page);
	padding: 60px 0;
	border-top: 1px solid var(--border);
}

.site-footer-links__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

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

.site-footer-links__item a {
	color: var(--deep-forest);
	text-decoration: none;
	font-size: 14px;
	line-height: 1.6;
	transition: color var(--transition-base);
}

.site-footer-links__item a:hover {
	color: var(--olive);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 900px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	
	.footer-about {
		grid-column: 1 / -1;
	}
	
	.site-footer-links__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 600px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
	
	.site-footer-links__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 16px;
	}
	
	.site-footer-links {
		padding: 40px 0;
	}
	
	.site-footer-links__item a {
		font-size: 13px;
	}
}
