/* Футер - Start */
footer {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
	margin-top: var(--header-height);
	padding: 0px 0 0px 0;
	background: var(--primary);
	color: var(--white);
	overflow: hidden;
}

/* Контейнери футера */
footer .container-footer-main,
footer .container-footer-bottom {
	gap: 0;
}

/* Колонки з рамками */
footer .col-33 {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

/* Рамки між колонками - на всю висоту */
footer .col-33:not(:last-child):after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
}

/* Логотип */
footer .footer-logo img {
	width: 320px;
	height: auto;
}

/* Меню */
footer .footer-menu-wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
}

footer .footer-menu {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	padding: 60px 10px;
}

footer .footer-menu-title {
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 25px;
}

footer .menu-footer-wrapper {
	display: block;
}

footer .menu-footer {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 22px;
	text-align: center;
}

footer .menu-footer li a {
	color: var(--white);
	transition: all 0.3s ease;
}

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

/* Рамка між меню */


footer .footer-menu-1:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
}


/* Контакти */
footer .footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

footer .footer-contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

footer .footer-label {
	color: rgba(255, 255, 255, 0.3);
	text-align: center;
}

footer .footer-contact-item a {
	font-size: 16px;
	line-height: 19px;
	color: var(--white);
	transition: all 0.3s ease;
}

footer .footer-contact-item a:hover {
	color: var(--accent);
}

/* Соціальні мережі */
footer .footer-social {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

footer .footer-social-links {
	display: flex;
	gap: 15px;
}

footer .footer-social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #1C2C37;
	border-radius: var(--border-radius-100);
	transition: all 0.3s ease;
}

footer .footer-social-links a img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	filter: var(--primary-filter-match);
	transition: all 0.3s ease;
}
footer .footer-social-links a:hover {
	background: var(--accent);
}

footer .footer-social-links a:hover img {
	filter: var(--accent-filter-match);
}
/* Нижній контейнер */
footer .container-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

footer .container-footer-bottom .col-33 {
	padding: 32px 0;
}

footer .container-footer-bottom p {
	color: rgba(255, 255, 255, 0.3);
	margin: 0;
	text-align: center;
}
footer .container-footer-bottom .col-footer-developer p {
	color: rgba(255, 255, 255, 1);
}

@media (max-width: 1480px) {
	footer .footer-logo img {
		width: 260px;
	}
}

@media (max-width: 1279px) {
	/* Мобільна версія */
	footer .container-footer-main {
		flex-direction: column;
	}

	footer .col-33 {
		width: 100%;
	}
	footer .container-footer-bottom .col-33 {
		padding: 20px 0;
		width: 50%;
	}
	footer .container-footer-bottom .col-33.col-footer-developer {
		border-top: 1px solid rgba(255, 255, 255, 0.3);
		width: 100%;
	}

	footer .footer-logo img {
		width: 160px;
		margin: 40px 0;
	}

	/* Прибираємо вертикальні рамки, додаємо горизонтальні */
	footer .col-33:not(:last-child):after {
		display: none;
	}

	footer .container-footer-main .col-33:not(:last-child) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}
	footer .col-footer-copyright {
		border-right: 1px solid rgba(255, 255, 255, 0.3);
	}


	footer .footer-contacts {
		align-items: center;
		text-align: center;
		padding: 40px 0;
	}

	footer .footer-social-links {
		justify-content: center;
		flex-wrap: wrap;
		max-width: 280px;
	}

}
/* Футер - End */