/* --------- STOPKA --------- */
.footer {
	background-color: var(--dominant-color);
	color: #fff;
	padding: 40px 20px;
	font-size: 14px;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Logo */
.footer-logo {
	width: 120px;
	height: auto;
	filter: inherit;
}
.logo-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

/* Nagłówki */
.footer-col h4 {
	margin-bottom: 15px;
	font-size: 16px;
	color: #fff;
}

/* Nawigacja */
.footer-col ul {
	list-style: none;
	padding: 0;
}
.footer-col ul li {
	margin-bottom: 10px;
}
.footer-col ul li a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
}
.footer-col ul li a:hover {
	color: var(--accent-color);
}

/* Social */
.social-icons a img {
	width: 24px;
	height: 24px;
	opacity: 0.8;
	transition: opacity 0.3s;
}
.social-icons a img:hover {
	opacity: 1;
}

/* Przycisk kawowy */
.coffee-btn {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 15px;
	background-color: var(--accent-color);
	color: #000;
	border-radius: 5px;
	font-weight: bold;
	text-decoration: none;
	transition: background-color 0.3s;
}
.coffee-btn:hover {
	background-color: #e0a500;
}
