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

footer {
	padding: 3rem 2rem 1rem;
	background-color: var(--color-primary2);
	color: var(--color-primary1);
}

/* Footer Content Grid */
.footer-content {
	display: grid;
	grid-template-columns: auto auto 1fr;
	gap: 4rem;
	max-width: 1600px;
	margin: 0 auto 2rem;
}

.footer-section h4 {
	margin-bottom: 1rem;
	font-size: 1.3rem;
	color: var(--color-primary1);
}

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

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

.footer-section ul li a {
	color: var(--color-primary1);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: var(--color-cta);
}

.footer-section p {
	margin-bottom: 0.5rem;
	color: var(--color-primary1);
}

/* Footer Logo */
.footer-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}

.footer-logo-svg {
	width: 105px;
	height: 150px;
	margin-bottom: 0.5rem;
	background-color: var(--color-primary1);
	mask-image: url("../images/logo.svg");
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url("../images/logo.svg");
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

/* Footer Bottom */
.footer-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.8rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(232, 228, 221, 0.3);
	font-size: 0.9rem;
}

.footer-bottom span {
	color: var(--color-primary1);
}

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

.footer-bottom a:hover {
	color: var(--color-cta);
	text-decoration: underline;
}

/* ============================================
   MOBILE FOOTER
   ============================================ */

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

	.footer-logo {
		display: none;
	}

	.footer-bottom {
		flex-wrap: wrap;
		gap: 0.4rem;
	}
}
