/* Modern Footer Styles - Light Theme (Original Colors) */
:root {
	--footer-bg: #ffffff;
	--footer-text: #444444;
	--footer-heading: #81B2E5;
	/* Original Blue */
	--footer-link: #444444;
	--footer-link-hover: #e686cd;
	/* Original Pink */
	--footer-border: #e6e6e6;
}

.site-footer {
	background-color: var(--footer-bg);
	color: var(--footer-text);
	font-size: 14px;
	padding: 40px 0 20px;
	margin-top: auto;
	border-top: 1px solid var(--footer-border);
}

.footer-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Grid Layout */
.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.footer-col {
	display: flex;
	flex-direction: column;
}

/* Headings */
.footer-heading {
	color: var(--footer-heading);
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.footer-sub-heading {
	color: var(--footer-heading);
	font-size: 0.95rem;
	font-weight: 600;
	margin: 20px 0 10px;
	text-transform: uppercase;
}

/* Navigation & Links */
.footer-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-nav li {
	margin-bottom: 8px;
}

.footer-nav a {
	color: var(--footer-link);
	text-decoration: none;
	transition: color 0.2s ease;
	display: inline-block;
}

.footer-nav a:hover {
	color: var(--footer-link-hover);
}

/* Social Icons */
.social-links {
	display: flex;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #f5f5f5;
	border-radius: 50%;
	transition: all 0.3s ease;
	color: #555;
}

.social-icon svg,
.social-icon img {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

/* Ensure SVGs are dark by default if they rely on fill */
.social-icon svg path {
	fill: #555;
}

.social-icon:hover {
	background: var(--footer-link-hover);
	color: white;
}

.social-icon:hover svg path {
	fill: white;
}

/* Language Selector */
.language-selector-wrapper {
	margin-top: 10px;
}

.label-lang {
	display: block;
	font-size: 0.9rem;
	margin-bottom: 5px;
	color: var(--footer-heading);
}

.select-wrapper {
	position: relative;
	max-width: 200px;
}

.lang-select {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: white;
	color: #444;
	cursor: pointer;
}

.lang-select:focus {
	border-color: var(--footer-heading);
	outline: none;
}

/* Footer Bottom - Centered Stack */
.footer-bottom {
	border-top: none;
	/* Removed border to keep it clean like original */
	margin-top: 30px;
	padding-top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
}

.copyright {
	font-size: 12px;
	color: #444;
}

.footer-brand img {
	height: auto;
	width: 150px;
	/* Match original width attribute */
}

/* Cookie Bar (Preserving existing styles) */
#cookie-law-info-bar {
	background-color: #fff;
	color: #333;
	border-top: 1px solid #444;
	box-shadow: none;
	/* Match original flat look */
}

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

@media (max-width: 480px) {
	.footer-grid {
		grid-template-columns: 1fr;
		/* 1 column on mobile */
		text-align: center;
	}

	.footer-col {
		align-items: center;
	}

	.social-links {
		justify-content: center;
	}
}