/* New Footer Styles */

.site-footer {
	background-color: #1a1a1a;
	color: #e0e0e0;
	padding: 0;
	/* margin-top: 4rem; */
}

.footer-content {
	padding: 3rem 0 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1.2fr 1fr;
	}
}

/* Footer Headings */
.footer-heading {
	font-size: 1.125rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;
	padding-bottom: 0.75rem;
}

.footer-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--primary, #8b7355);
}

/* Contact Column */
.footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.contact-icon {
	flex-shrink: 0;
	color: var(--primary, #8b7355);
	margin-top: 2px;
}

.whatsapp-icon {
	flex-shrink: 0;
	color: var(--primary, #8b7355);
	margin-top: 2px;
	width: 18px;
}

.contact-item a {
	color: #e0e0e0;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: var(--primary, #8b7355);
}

/* Map Column */
.footer-map-container {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	background-color: #2a2a2a;
}

.footer-map-container iframe {
	display: block;
	filter: grayscale(0.3) contrast(1.1);
}

.view-larger-map {
	display: inline-block;
	margin-top: 0.75rem;
	padding: 0.5rem 1rem;
	background-color: rgba(139, 115, 85, 0.1);
	color: #B8915C;
	text-decoration: none;
	font-size: 0.875rem;
	border-radius: 4px;
	transition: all 0.3s ease;
	width: stretch;
    text-align: center;
}

.view-larger-map:hover {
	background-color: rgba(139, 115, 85, 0.2);
}

/* Social Column */
.social-links {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-color: rgba(255, 255, 255, 0.05);
	color: #e0e0e0;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background-color: var(--primary, #8b7355);
	color: white;
	transform: translateY(-3px);
}

.social-link svg {
	width: 20px;
	height: 20px;
}

/* Quick Links */
.footer-quick-links {
	margin-top: 2rem;
}

.quick-links-heading {
	font-size: 0.875rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-menu li a {
	color: #e0e0e0;
	text-decoration: none;
	font-size: 0.9375rem;
	transition: color 0.3s ease;
	display: inline-block;
}

.footer-menu li a:hover {
	color: var(--primary, #8b7355);
	padding-left: 5px;
}

/* Footer Bottom */
.site-info {
	padding: 1.5rem 0;
	background-color: #0a0a0a;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

@media (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

.copyright {
	font-size: 0.875rem;
	color: #999;
}

.copyright .site-name {
	color: #ffffff;
	font-weight: 500;
}

.footer-navigation {
	display: flex;
}

.footer-navigation .footer-menu {
	flex-direction: row;
	gap: 1.5rem;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
	.footer-content {
		padding: 2rem 0 1.5rem;
	}
	
	.footer-grid {
		gap: 2.5rem;
	}
	
	.footer-heading {
		font-size: 1rem;
	}
	
	.social-links {
		justify-content: flex-start;
	}
	
	.footer-map-container iframe {
		height: 180px;
	}
}

/* Dark Mode Polish */
.site-footer ::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.site-footer ::-webkit-scrollbar-track {
	background: #2a2a2a;
}

.site-footer ::-webkit-scrollbar-thumb {
	background: #555;
	border-radius: 4px;
}

.site-footer ::-webkit-scrollbar-thumb:hover {
	background: #777;
}