/**
 * Fresh Main BEM Stylesheet for AstroNeev Theme
 *
 * @package AstroNeev
 * @version 2.0.0
 */

/* Container Layout */
.astroneev-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Header Styles */
.astroneev-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: #000000;
	border-bottom: 1px solid rgba(212, 175, 55, 0.25);
	z-index: 1000;
	display: flex;
	align-items: center;
}

.astroneev-header__container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.astroneev-header__menu {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.astroneev-header__menu a {
	color: #F8F9FA;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.astroneev-header__menu a:hover {
	color: #FFD700;
}

.astroneev-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* Buttons BEM System */
.astroneev-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-weight: 700;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.astroneev-btn--primary {
	background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
	color: #0B0D1B !important;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.astroneev-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.astroneev-btn--secondary {
	background: rgba(255, 255, 255, 0.08);
	color: #F8F9FA !important;
	border: 1px solid rgba(212, 175, 55, 0.3);
}

.astroneev-btn--secondary:hover {
	background: rgba(212, 175, 55, 0.2);
	color: #FFD700 !important;
}

.astroneev-header__toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
}

/* Hero Fresh Section */
.astroneev-hero-fresh {
	padding: 160px 0 100px;
	background: linear-gradient(180deg, #000000 0%, #0B0D1B 100%);
	text-align: center;
}

.astroneev-badge {
	display: inline-block;
	background: rgba(212, 175, 55, 0.15);
	color: #FFD700;
	border: 1px solid rgba(212, 175, 55, 0.3);
	padding: 6px 18px;
	border-radius: 30px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.astroneev-hero-title {
	font-family: var(--astroneev-font-heading);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	color: #FFFFFF;
	line-height: 1.1;
	margin: 0 0 20px 0;
}

.astroneev-hero-desc {
	font-size: 1.15rem;
	color: #A1A5B7;
	max-width: 650px;
	margin: 0 auto 35px auto;
}

.astroneev-hero-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
}

/* Footer Styles */
.astroneev-footer {
	background: #070814;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
	padding: 60px 0 30px;
}

.astroneev-footer__container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

.astroneev-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.astroneev-footer__title {
	color: #FFD700;
	font-family: var(--astroneev-font-heading);
	font-size: 1.25rem;
	margin: 0 0 16px 0;
}

.astroneev-footer__menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.astroneev-footer__menu a {
	color: #A1A5B7;
	text-decoration: none;
}

.astroneev-footer__copyright {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 20px;
	color: #A1A5B7;
	font-size: 0.9rem;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
	.astroneev-header__menu {
		display: none;
	}
	.astroneev-header__toggle {
		display: block;
	}
	.astroneev-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.astroneev-footer__grid {
		grid-template-columns: 1fr;
	}
	.astroneev-hero-actions {
		flex-direction: column;
	}
}
