/* =====================================================
   FAFECA - FOOTER STYLES
   ===================================================== */

.site-footer {
	color: rgba(255, 255, 255, .9);
}

.footer-main {
	padding: 4.5rem 0 3rem;
}

/* Footer Grid: 4 columns */
.footer-grid {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
	gap: 3rem;
}

/* Brand Column */
.footer-logo {
	margin-bottom: 1.25rem;
	line-height: 0;
}

.footer-logo img,
.footer-logo-img {
	height: 46px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

.footer-text-logo {
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: .1em;
	color: #fff;
}

.footer-brand-desc {
	font-size: .95rem;
	font-weight: 700;
	line-height: 1.5;
	color: rgba(255,255,255,.9);
	margin-bottom: .6rem;
}

.footer-slogan {
	font-size: .9rem;
	color: rgba(255,255,255,.65);
	margin-bottom: 1.5rem;
	font-style: italic;
}

/* Footer Column Titles */
.footer-col-title {
	font-size: .95rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1.25rem;
	letter-spacing: .02em;
}

/* Footer Nav Links */
.footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.footer-nav li a {
	font-size: .9rem;
	color: rgba(255, 255, 255, .7);
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	transition: color .2s, padding-left .2s;
}

.footer-nav li a:hover {
	color: #fff;
	padding-left: .4rem;
}

/* Footer Contact List */
.footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: .85rem;
	font-size: .9rem;
}

.footer-contact-list i {
	font-size: 1.15rem;
	color: rgba(255,255,255,.6);
	flex-shrink: 0;
	margin-top: .1rem;
}

.footer-contact-list a,
.footer-contact-list span,
.footer-contact-list address {
	color: rgba(255, 255, 255, .75);
	font-style: normal;
	line-height: 1.5;
	transition: color .2s;
}

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

/* Social Links in footer */
.site-footer .social-links {
	display: flex;
	gap: .6rem;
}

.site-footer .social-link {
	width: 38px;
	height: 38px;
	background: rgba(255,255,255,.12);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .95rem;
	transition: background .2s, transform .2s;
}

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

/* Footer Bottom Bar */
.footer-bottom {
	padding: 1.25rem 0;
}

.footer-copy {
	font-size: .82rem;
	color: rgba(255, 255, 255, .5);
	text-align: center;
	margin: 0;
}

/* =====================================================
   RESPONSIVE FOOTER
   ===================================================== */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.footer-col--brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-col--brand {
		grid-column: auto;
	}

	.footer-main {
		padding: 3rem 0 2rem;
	}
}
