/* 
 * Modern Footer Styles
 * Файл: css-new/footer.css
 */

.site-footer {
	background: var(--primary-darkest);
	padding: 60px 0 30px;
	border-top: 4px solid;
	border-image: linear-gradient(90deg, var(--ukraine-blue) 50%, var(--ukraine-yellow) 50%) 1;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 50px;
	margin-bottom: 50px;
}

.footer-brand h2 {
	font-family: 'Roboto Slab', serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-light);
	margin-bottom: 10px;
	line-height: 1.4;
}

.footer-brand h3 {
	font-family: 'Roboto Slab', serif;
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--accent-orange);
	margin-bottom: 30px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.contact-item img {
	width: 20px;
	height: 20px;
	opacity: 0.7;
}

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

.footer-nav h4 {
	font-family: 'Roboto Slab', serif;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-light);
	margin-bottom: 25px;
}

.footer-nav ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-nav a {
	color: var(--text-muted);
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.footer-nav a:hover {
	color: var(--accent-orange);
	padding-left: 5px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
	border-top: 1px solid var(--border-subtle);
}

.footer-logo {
	width: 60px;
}

.copyright {
	color: var(--text-muted);
	font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1200px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
}
