/* Footer styles */
.footer {
	/* background-color: #000; */
	background-color: #222;
	/* background-color: #351c00; */
	/* background: radial-gradient(#582f00, #351c00); */
	/* background: url("https://img.freepik.com/free-photo/top-view-various-indian-spices-seasonings-table_181624-58725.jpg") center center no-repeat; */
	/* background-size: cover; */
	/* backdrop-filter: blur(100px); */
	color: #fff;
	padding: 50px 0 20px;
}

.footer-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* Logo section */
.footer-logo {
	flex: 1;
	min-width: 200px;
	margin-bottom: 30px;
}

.footer-logo-2 {
	display: flex;
	align-items: center;
}

.logo-icon {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.logo-text {
	font-size: 28px;
	font-weight: 300;
}

/* Footer columns */
.footer-column {
	flex: 1;
	min-width: 200px;
	margin-bottom: 30px;
	padding-right: 20px;
}

.footer-heading {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
	position: relative;
}

.footer-heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 48px;
	height: 2px;
	background-color: #fff;
}

.footer-links {
	list-style: none;
	margin-top: 25px;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #ccc;
}

/* Contact section */
.contact-item {
	display: flex;
	margin-bottom: 15px;
}

.contact-icon {
	margin-right: 10px;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* Divider */
.footer-divider {
	width: 100%;
	height: 1px;
	/* background-color: #333; */
	background-color: white;
	margin: 20px 0;
}

/* Copyright */
.copyright {
	text-align: center;
	padding: 20px 0;
	font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.footer-content {
		flex-direction: column;
	}

	.footer-column {
		width: 100%;
	}
}
