/**
 * AstroNeev Refined 4-Column Footer Stylesheet
 *
 * @package AstroNeev
 * @version 2.0.0
 */

.astroneev-footer {
	background-color: #000000 !important;
	border-top: 1px solid rgba(244, 197, 66, 0.15);
	padding-top: 70px;
	padding-bottom: 40px;
	color: #FFFFFF;
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
}

.astroneev-footer__container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding-left: 32px;
	padding-right: 32px;
	box-sizing: border-box;
}

/* 4-Column Layout (Column Gap: 60px, Baseline Aligned) */
.astroneev-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px; /* 60px Desktop Column Gap */
	align-items: start;
	margin-bottom: 50px;
}

.astroneev-footer__col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

/* Logo Image (Width: 180px, Height Auto, Aspect Ratio Preserved) */
.astroneev-footer__logo-link {
	text-decoration: none;
	display: inline-block;
	margin-bottom: 20px;
}

.astroneev-footer__logo-img {
	width: 180px !important;
	height: auto !important;
	object-fit: contain;
	display: block;
}

.astroneev-footer__brand-text {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #B7B7C5;
	line-height: 1.75;
	margin: 0 0 20px 0;
}

/* Social Icons */
.astroneev-footer__socials {
	display: flex;
	align-items: center;
	gap: 12px;
}

.astroneev-footer__social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(244, 197, 66, 0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #B7B7C5;
	transition: all 0.3s ease;
	text-decoration: none;
}

.astroneev-footer__social-icon:hover {
	background: #F4C542;
	color: #000000;
	border-color: #F4C542;
	transform: translateY(-3px);
}

/* Column Headings (22px, Weight 700, Color #F4C542) */
.astroneev-footer__title {
	font-family: 'Poppins', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #F4C542;
	margin: 0 0 24px 0;
	line-height: 1.3;
}

/* Navigation Menus */
.astroneev-footer__menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.astroneev-footer__item {
	margin: 0;
}

/* Links (17px, Weight 400, Color #B7B7C5, Hover #F4C542) */
.astroneev-footer__link {
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	color: #B7B7C5;
	text-decoration: none;
	transition: color 0.3s ease;
	display: inline-block;
}

.astroneev-footer__link:hover {
	color: #F4C542;
}

.astroneev-footer__link--active,
.astroneev-footer__link.active {
	color: #F4C542;
	font-weight: 600;
}

/* Bottom Bar with Thin Gold Divider */
.astroneev-footer__bottom-bar {
	border-top: 1px solid rgba(244, 197, 66, 0.2);
	padding-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
}

.astroneev-footer__copyright-text {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #B7B7C5;
}

.astroneev-footer__powered-by {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #B7B7C5;
}

.astroneev-footer__creatify-link {
	color: #F4C542 !important;
	font-weight: 600 !important;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.astroneev-footer__creatify-link:hover {
	opacity: 0.85;
	text-decoration: underline;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
	.astroneev-footer {
		padding-top: 60px;
		padding-bottom: 30px;
	}

	.astroneev-footer__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media (max-width: 767px) {
	.astroneev-footer {
		padding-top: 50px;
		padding-bottom: 30px;
	}

	.astroneev-footer__container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.astroneev-footer__grid {
		grid-template-columns: 1fr;
		gap: 36px;
		text-align: center;
	}

	.astroneev-footer__col {
		align-items: center;
	}

	.astroneev-footer__socials {
		justify-content: center;
	}

	.astroneev-footer__bottom-bar {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}
}
