/**
 * AstroNeev Production Hero Stylesheet
 *
 * @package AstroNeev
 * @version 2.0.0
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Color & Variable Tokens */
:root {
	--hero-bg-black: #000000;
	--hero-text-white: #FFFFFF;
	--hero-text-secondary: #C8CDD8;
	--hero-gold: #F6C64B;
	--hero-whatsapp: #22D66F;
	--hero-font-heading: 'Poppins', sans-serif;
	--hero-font-body: 'Poppins', sans-serif;
	--hero-transition: all 300ms ease;
}

/* 1. Hero Section Container (Min-Height: 720px) */
.astroneev-hero {
	position: relative;
	width: 100%;
	min-height: 720px;
	background-color: var(--hero-bg-black) !important;
	overflow: visible;
	padding-top: 80px !important;
	padding-bottom: 80px !important;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

/* Background Layers: Solid Black #000000 with Cosmic Lighting & Soft Vignette */
.astroneev-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	background: var(--hero-bg-black);
	overflow: hidden;
}

.astroneev-hero__nebula-purple {
	position: absolute;
	top: 5%;
	right: 15%;
	width: 45vw;
	height: 45vw;
	background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
	filter: blur(80px);
}

.astroneev-hero__gold-light {
	position: absolute;
	bottom: 10%;
	left: 5%;
	width: 40vw;
	height: 40vw;
	background: radial-gradient(circle, rgba(246, 198, 75, 0.1) 0%, transparent 60%);
	filter: blur(75px);
}

.astroneev-hero__vignette {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
	pointer-events: none;
}

/* Grid Layout Container */
.astroneev-hero__container {
	position: relative;
	z-index: 10;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 32px;
	box-sizing: border-box;
	overflow: visible;
}

.astroneev-hero__grid {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center !important;
	justify-content: space-between;
	gap: 40px;
	overflow: visible;
}

/* LEFT COLUMN (48% Grid Ratio, Max Width 600px) */
.astroneev-hero__left {
	flex: 0 0 48%;
	max-width: 600px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: left;
	overflow: visible;
}

/* RIGHT COLUMN (52% Grid Ratio) */
.astroneev-hero__right {
	flex: 0 0 52%;
	max-width: 52%;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	position: relative;
	box-sizing: border-box;
	height: 100%;
}

/* Badge Wrapper & Alignment */
.astroneev-hero__badge-wrapper {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	margin-top: 0;
	margin-bottom: 24px;
	padding: 0;
}

.astroneev-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(246, 198, 75, 0.4);
	padding: 8px 20px;
	border-radius: 50px;
	backdrop-filter: blur(12px);
	box-shadow: 0 0 20px rgba(124, 58, 237, 0.25);
	margin: 0;
}

.astroneev-hero__badge-star {
	font-size: 0.95rem;
}

.astroneev-hero__badge-text {
	font-family: var(--hero-font-body);
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--hero-gold);
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Hero Heading (Poppins 46px Desktop, 1.08 Line Height, 0 Letter Spacing, 600 Weight, 0 Bottom Margin) */
.astroneev-hero__heading {
	font-family: 'Poppins', sans-serif !important;
	font-size: 46px !important;
	letter-spacing: 0 !important;
	line-height: 1.08 !important;
	font-weight: 600 !important;
	margin: 0 0 0 0 !important;
	animation: fadeUp 0.8s ease 0.15s forwards;
	opacity: 0;
}

.astroneev-hero__heading .text-white { color: #FFFFFF; }
.astroneev-hero__heading .text-gold { color: #F6C64B; }
.astroneev-hero__heading .text-green,
.astroneev-hero__heading .text-whatsapp { color: #22D66F; }

/* Force Single-Line for 'on WhatsApp for Just ₹39' */
.astroneev-hero__heading .text-single-line {
	white-space: nowrap;
	display: inline-block;
}

/* Paragraph Description (Poppins 18px Desktop, 1.65 line-height, #D0D0D0, max-width 520px) */
.astroneev-hero__description,
.astroneev-hero__desc {
	font-family: var(--hero-font-body);
	font-size: 18px;
	color: #D0D0D0;
	line-height: 1.65;
	max-width: 520px;
	margin-top: 24px;
	margin-bottom: 40px;
	animation: fadeUp 0.8s ease 0.3s forwards;
	opacity: 0;
}

/* Action Buttons (300ms Transition, Glow, Lift on Hover) */
.astroneev-hero__buttons {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 0;
	animation: fadeUp 0.8s ease 0.45s forwards;
	opacity: 0;
}

.astroneev-hero__btn {
	height: 58px;
	border-radius: 16px;
	padding: 0 32px;
	font-family: var(--hero-font-body);
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 300ms ease;
	cursor: pointer;
	white-space: nowrap;
	border: none;
}

/* Primary Green Gradient Button */
.astroneev-hero__btn--primary-green {
	background: linear-gradient(135deg, #22D66F 0%, #1DA851 100%);
	color: #000000 !important;
	box-shadow: 0 8px 30px rgba(34, 214, 111, 0.4);
}

.astroneev-hero__btn--primary-green:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 35px rgba(34, 214, 111, 0.6);
	color: #000000 !important;
}

/* Secondary Transparent Button with Gold Border */
.astroneev-hero__btn--secondary-gold {
	background: rgba(255, 255, 255, 0.03);
	color: var(--hero-gold) !important;
	border: 1px solid rgba(246, 198, 75, 0.4);
	backdrop-filter: blur(12px);
}

.astroneev-hero__btn--secondary-gold:hover {
	border-color: var(--hero-gold);
	background: rgba(246, 198, 75, 0.12);
	color: #FFFFFF !important;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(246, 198, 75, 0.25);
}

/* Trust Rating Component (Hero Social Proof) */
.astroneev-hero__trust {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-top: 44px;
	margin-bottom: 0;
	animation: fadeUp 0.8s ease 0.6s forwards;
	opacity: 0;
}

.astroneev-hero__avatars {
	display: flex;
	align-items: center;
}

.astroneev-hero__avatars .astroneev-hero__avatar,
.astroneev-hero__avatars .avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid #FFFFFF;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
	margin-left: -18px;
	object-fit: cover;
	flex-shrink: 0;
	position: relative;
	background-color: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
}

.astroneev-hero__avatars .astroneev-hero__avatar:first-child,
.astroneev-hero__avatars .avatar:first-child {
	margin-left: 0;
}

/* Vertical Content Block */
.astroneev-hero__trust-content,
.astroneev-hero__trust-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
}

/* Top Line */
.astroneev-hero__trust-title {
	font-family: var(--hero-font-body);
	font-size: 18px;
	font-weight: 600;
	color: #F5F5F5;
	line-height: 1.2;
	white-space: nowrap;
}

/* Bottom Line */
.astroneev-hero__trust-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	line-height: 1;
}

.astroneev-hero__trust-rating .stars,
.astroneev-hero__trust-info .stars {
	color: #F4C542;
	font-size: 18px;
	letter-spacing: 2px;
	line-height: 1;
	margin: 0;
}

.astroneev-hero__trust-rating .rating-text {
	color: #D6D6D6;
	font-family: var(--hero-font-body);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}

/* RIGHT COLUMN: Hero_banner.png Artwork (Clean & Sharp) */
.astroneev-hero__image-wrapper {
	position: relative;
	width: 100%;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	filter: none !important;
}

.astroneev-hero__banner-img {
	width: auto;
	max-width: 760px !important;
	height: auto;
	max-height: 680px !important;
	object-fit: contain !important;
	object-position: center center !important;
	display: block;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	filter: none !important;
	transition: transform 300ms ease;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Media Query Breakpoints */
@media (max-width: 1200px) {
	.astroneev-hero__heading {
		font-size: 44px !important;
	}
}

@media (max-width: 1024px) {
	.astroneev-hero {
		min-height: auto;
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}

	.astroneev-hero__grid {
		flex-direction: column;
		text-align: center;
		align-items: center !important;
		gap: 40px;
	}

	/* Tablet & Mobile Layout Order: 1. Hero Image, 2. Hero Content */
	.astroneev-hero__right {
		order: 1;
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
		align-items: center !important;
		text-align: center;
	}

	.astroneev-hero__left {
		order: 2;
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
		align-items: center !important;
		text-align: center;
	}

	.astroneev-hero__badge-wrapper {
		justify-content: center;
	}

	.astroneev-hero__heading {
		font-size: 38px !important;
		line-height: 1.15 !important;
	}

	.astroneev-hero__description,
	.astroneev-hero__desc {
		font-size: 17px;
	}

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

	.astroneev-hero__trust {
		justify-content: center;
		margin-top: 44px;
		margin-bottom: 0;
	}

	.astroneev-hero__avatars .astroneev-hero__avatar,
	.astroneev-hero__avatars .avatar {
		width: 42px;
		height: 42px;
		margin-left: -16px;
	}

	.astroneev-hero__image-wrapper {
		justify-content: center !important;
		align-items: center !important;
	}

	.astroneev-hero__banner-img {
		object-position: center center !important;
		max-height: 50vh !important;
	}
}

@media (max-width: 767px) {
	.astroneev-hero {
		padding-top: 70px !important;
		padding-bottom: 60px !important;
	}

	.astroneev-hero__container {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}

	.astroneev-hero__heading {
		font-size: 32px !important;
		line-height: 1.18 !important;
		margin-bottom: 0 !important;
	}

	.astroneev-hero__description,
	.astroneev-hero__desc {
		font-size: 16px;
		line-height: 1.65;
		margin-top: 24px;
		margin-bottom: 28px;
	}

	.astroneev-hero__banner-img {
		width: 100% !important;
		height: auto !important;
		max-width: 100% !important;
		max-height: none !important;
		object-fit: contain !important;
		object-position: center center !important;
	}

	.astroneev-hero__buttons {
		flex-direction: column;
		width: 100%;
		gap: 14px;
		margin-bottom: 0;
	}

	.astroneev-hero__btn {
		width: 100%;
		font-size: 16px;
	}

	.astroneev-hero__trust {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 32px;
		margin-bottom: 0;
		gap: 16px;
	}

	.astroneev-hero__avatars .astroneev-hero__avatar,
	.astroneev-hero__avatars .avatar {
		width: 38px;
		height: 38px;
		margin-left: -14px;
	}
}

@media (max-width: 480px) {
	.astroneev-hero__container {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.astroneev-hero__heading {
		font-size: 28px !important;
		line-height: 1.18 !important;
	}
}
