#main-footer.zwolsche-footer {
	background: rgba(157, 209, 188, 0.3);
	position: relative;
	padding: 40px 0;
	margin-top: 0;
}

.zwolsche-footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	align-items: start;
}

/* Footer Text Styles */
.zwolsche-footer-contact,
.zwolsche-footer-hours,
.zwolsche-footer-social {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}

.zwolsche-footer-title {
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	font-size: 16px;
	margin: 0 0 16px 0;
	color: #000;
	line-height: 1;
}

.zwolsche-footer-address {
	margin: 0;
	line-height: 1.5;
}

.zwolsche-footer-address a {
	color: #000;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
	text-decoration-color: currentColor;
}

.zwolsche-footer-address a:hover {
	opacity: 0.8;
}

.zwolsche-footer-opening-note {
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	color: #e36f56;
	margin: 0 0 8px 0;
	font-size: 16px;
	line-height: 1;
}

.zwolsche-footer-hours-text {
	margin: 0;
	white-space: pre-line;
	line-height: 1.5;
}

/* Instagram link with icon via ::before */
.zwolsche-footer-instagram-link {
	font-family: 'DM Sans', sans-serif;
	font-weight: 400;
	margin: 0 0 16px 0;
	line-height: 1;
	text-decoration: none;
	color: #000;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
    transition: all 0.3s ease;
}

.zwolsche-footer-instagram-link:hover {
    color: #d4bf5f;
}

.zwolsche-footer-instagram-link:hover::before {
    background-image: url('../../images/instagram-icon-hover.svg');
    transition: all 0.3s ease;
}

.zwolsche-footer-instagram-link::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url('../../images/instagram-icon.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* Decorative Element */
.zwolsche-footer-decorative {
	position: absolute;
	bottom: -40px;
	right: 0;
	width: 440px;
	height: 72px;
	pointer-events: none;
	z-index: 1;
}

.zwolsche-decorative-svg {
	width: 100%;
	height: 100%;
	opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
	.zwolsche-footer-container {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.zwolsche-footer-contact,
	.zwolsche-footer-hours,
	.zwolsche-footer-social {
		margin-bottom: 20px;
	}

	.zwolsche-footer-instagram-link {
		margin-bottom: 10px;
	}

	.zwolsche-footer-decorative {
		display: none;
	}
}

@media (max-width: 480px) {
	#main-footer.zwolsche-footer {
		padding: 30px 0;
	}

	.zwolsche-footer-container {
		padding: 0 15px;
	}

	.zwolsche-footer-title {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.zwolsche-footer-address,
	.zwolsche-footer-hours-text {
		font-size: 14px;
	}
}
