/* ========== HEADER CSS WITH ANIMATIONS ========== */
.site-header {
	position: relative;
	z-index: 1000;
}

.header____wrap {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1111111;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

/* Scrolled Header Effect */
.site-header.scrolled .header____wrap {
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.9) 0%,
		rgba(0, 0, 0, 0.8) 100%
	);
	backdrop-filter: blur(15px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1400px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1140px;
	}
}

/* Logo Animation */
.header-logo {
	animation: fadeInLeft 0.8s ease-out;
	opacity: 1 !important;
}

.header-logo img {
	transition:
		transform 0.3s ease,
		filter 0.3s ease;
	max-width: 180px;
}

.header-logo img:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
}

/* Desktop Navigation Links Animation */
.header-link .single-item {
	opacity: 0;
	animation: fadeInDown 0.5s ease-out forwards;
}

.header-link .single-item:nth-child(1) {
	animation-delay: 0.1s;
}
.header-link .single-item:nth-child(2) {
	animation-delay: 0.2s;
}
.header-link .single-item:nth-child(3) {
	animation-delay: 0.3s;
}
.header-link .single-item:nth-child(4) {
	animation-delay: 0.4s;
}
.header-link .single-item:nth-child(5) {
	animation-delay: 0.5s;
}
.header-link .single-item:nth-child(6) {
	animation-delay: 0.6s;
}
.header-link .single-item:nth-child(7) {
	animation-delay: 0.7s;
}

.header-link .single-item a {
	position: relative;
	transition: color 0.3s ease;
	font-size: 12px;
}

.header-link .single-item a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ff6b6b, #ff8e53);
	transition: width 0.3s ease;
}

.header-link .single-item a:hover::after {
	width: 100%;
}

.header-link .single-item a:hover {
	color: #ff8e53 !important;
}

/* Sign Up Button Animation */
.signup-btn {
	background: var(--secondary-color);
	border: none;
	padding: 10px 18px;
	border-radius: 50px;
	color: white !important;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	font-family: var(--font-inter);
}

.signup-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.user-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	object-fit: scale-down;
}

.user-icon:hover {
	transform: scale(1.1);
	box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

/* Mobile Hamburger Button */
.mobile-hamburger {
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	color: white;
	font-size: 22px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 1001;
	position: relative;
}

.mobile-hamburger:hover {
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Mobile Menu Styles */
.site-header .mobile-header {
	position: fixed;
	width: 320px;
	height: 100vh;
	top: 0;
	right: 0;
	padding: 80px 25px 30px;
	background: linear-gradient(135deg, #1a1a2e, #16213e);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	z-index: 11111111 !important;
	box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
	overflow-y: auto;
	margin: 0;
	list-style: none;
}

.site-header .mobile-header.open {
	transform: translateX(0);
}

/* Mobile Menu Items */
.mobile-header .single-item {
	margin-bottom: 20px;
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.3s ease;
}

.mobile-header.open .single-item {
	opacity: 1;
	transform: translateX(0);
}

.mobile-header.open .single-item:nth-child(1) {
	transition-delay: 0.05s;
}
.mobile-header.open .single-item:nth-child(2) {
	transition-delay: 0.1s;
}
.mobile-header.open .single-item:nth-child(3) {
	transition-delay: 0.15s;
}
.mobile-header.open .single-item:nth-child(4) {
	transition-delay: 0.2s;
}
.mobile-header.open .single-item:nth-child(5) {
	transition-delay: 0.25s;
}
.mobile-header.open .single-item:nth-child(6) {
	transition-delay: 0.3s;
}
.mobile-header.open .single-item:nth-child(7) {
	transition-delay: 0.35s;
}

.mobile-header .single-item a {
	color: #ffffff !important;
	font-size: 18px;
	font-weight: 500;
	display: block;
	padding: 12px 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-decoration: none;
}

.mobile-header .single-item a:hover {
	color: #ff8e53 !important;
	padding-left: 10px;
}

/* Mobile Search */
.mobile__search {
	margin: 20px 0;
}

.mobile__search .form-control-1 {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 12px 20px;
	color: white;
	width: 100%;
	transition: all 0.3s ease;
}

.mobile__search .form-control-1:focus {
	outline: none;
	border-color: #ff8e53;
	background: rgba(255, 255, 255, 0.15);
}

.mobile__search .form-control-1::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.search-mobile-btn i {
	color: #ff8e53;
	font-size: 18px;
	cursor: pointer;
}

/* Mobile Auth Buttons */
.mobile-auth-buttons {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.mobile-signin,
.mobile-signup {
	flex: 1;
	text-align: center;
	padding: 12px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.mobile-signin {
	background: transparent;
	border: 2px solid #ff8e53;
	color: #ff8e53;
}

.mobile-signup {
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
	color: white;
}

.mobile-signin:hover,
.mobile-signup:hover {
	transform: translateY(-2px);
}

/* Close Button */
.close-mobile-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.1);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	color: white;
	font-size: 18px;
}

.close-mobile-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

/* Overlay for Mobile Menu */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 111111;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Animations */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Desktop Ecommerce Buttons Animation */
.ecommerce .header____btn {
	opacity: 0;
	animation: fadeInRight 0.5s ease-out forwards;
}

.ecommerce .header____btn:nth-child(1) {
	animation-delay: 0.5s;
}
.ecommerce .header____btn:nth-child(2) {
	animation-delay: 0.6s;
}
.ecommerce .header____btn:nth-child(3) {
	animation-delay: 0.7s;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Mobile Responsive */
@media (max-width: 991px) {
	.mobile-hamburger {
		display: flex !important;
	}

	.header-logo img.logo-here {
		max-width: 150px;
	}
}

@media (max-width: 480px) {
	.site-header .mobile-header {
		width: 100%;
	}

	.header-logo img.logo-here {
		max-width: 130px;
	}

	.mobile-auth-buttons {
		flex-direction: column;
		gap: 10px;
	}
}

/* Hide scroll when menu is open */
body.menu-open {
	overflow: hidden;
}

/* Search Icon */
.search-icon i {
	color: #a4a4a4;
}

/* Banner Section */
section.banner {
	background: url("../img/banner-bg.webp") no-repeat center center/cover;
	min-height: 100vh;
	position: relative;
}
/* Header Css  */

/* ========== BANNER SECTION WITH PARALLAX STARFIELD ========== */
.banner.section {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	/* background: radial-gradient(circle at 30% 20%, #0b0b2e, #020210); */
	background: linear-gradient(
		130deg,
		rgba(13, 15, 22, 1) 0%,
		rgba(31, 27, 50, 1) 50%,
		rgba(13, 15, 22, 1) 100%
	);
	overflow: hidden;
	z-index: 1;
}

/* 3D Canvas Container - Starfield Background */
.starfield-canvas-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

canvas {
	display: block;
	width: 100%;
	height: 100%;
	outline: none;
}

/* Content overlay - keeps original content visible */
.banner .container {
	position: relative;
	z-index: 99;
}

/* Original Banner Content Styles (preserved) */

/* .secondary-bold-font.level-1 {
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: 3.5rem;
	line-height: 1.2;
	background: linear-gradient(135deg, #ffd166, #ff6ac2, #6c5ce7);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 1.2rem;
} */

.banner-content h1 {
	color: var(--heading-color);
	margin-bottom: 1.2rem;
}

/* Button styling as per your code */
.btn.dark-color {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--body-color);
	letter-spacing: 0.5px;
	box-shadow: rgba(202, 144, 67, 0.4) 0px 10px 20px -5px;
	cursor: pointer;
	padding: 1rem 2.3rem;
	border-radius: 60px;
	text-decoration: none;
	transition: 0.3s;
	border: none;
}

.btn.dark-color:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: rgba(202, 144, 67, 0.6) 0px 18px 30px -8px;
	background: #b67c35; /* hover me slightly darker shade */
}

/* Responsive */
@media (max-width: 992px) {
	.banner-content {
		text-align: center;
	}

	.banner-btn {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.banner-content {
		padding: 1.5rem;
	}
	.banner-content {
		padding-left: unset;
	}
}

/* Floating music notes animation (CSS only) */
.floating-music-note {
	position: absolute;
	font-size: 1.5rem;
	pointer-events: none;
	z-index: 3;
	opacity: 0.6;
	filter: drop-shadow(0 0 5px #ff77aa);
	animation: floatNote 8s infinite ease-in-out;
}
/* .banner-content {
	padding-left: 230px;
} */
@keyframes floatNote {
	0% {
		transform: translateY(0px) rotate(0deg);
		opacity: 0;
	}

	10% {
		opacity: 0.7;
	}

	90% {
		opacity: 0.7;
	}

	100% {
		transform: translateY(-100vh) rotate(360deg);
		opacity: 0;
	}
}

/* explore-section Css  */
.explore-section {
	background: linear-gradient(
		180deg,
		rgba(157, 71, 70, 0.6) 0%,
		rgba(202, 144, 67, 0.5) 100%
	);
}
.search-wrapper {
	max-width: 700px;
	margin: auto;
}
.search-box {
	background: #2c3143;
	border-radius: 50px;
	padding: 8px 10px;
	gap: 10px;
}
.search-box i {
	color: #9aa0b4;
	margin-left: 10px;
}
.search-box input {
	flex: 1;
	border: none;
	background: transparent;
	color: #fff;
	outline: none;
	font-size: 14px;
	color: var(--extra-color-1);
	font-family: var(--font-dm);
	font-weight: 400;
}
.search-box input::placeholder {
	color: var(--extra-color-1);
}
.search-btn {
	background: var(--secondary-color);
	border: none;
	color: #000;
	padding: 10px 22px;
	border-radius: 50px;
	font-weight: 600;
	transition: 0.3s;
	font-family: var(--font-dm);
	color: var(--body-color);
}
.search-btn:hover {
	background: #b67f36;
}
.tags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}
.tag {
	background: #d19e4d;
	color: #000;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 13px;
	border: 1px solid var(--extra-color-4);
	font-family: var(--font-dm);
	cursor: pointer;
	transition: 0.3s;
}
.tag:hover {
	background: #b67f36;
}
.explore____wrapper {
	background: #181b25;
	padding: 15px;
	border: 1px solid #2b2e3b50;
	box-shadow: 0px 8px 32px rgba(4, 5, 11, 0.4);
	transition: 0.6s ease;
}
.explore___badge {
	border-radius: 30px;
}
.explore____wrapper figure:hover .main___image {
	opacity: 0;
}
.hover____image {
	/* display: none; */
	transition: 0.6s ease;
	transform: translateX(-100px);
	top: 0;
	position: absolute;
	left: 0;
	opacity: 0;
}

.explore____wrapper figure {
	position: relative;
	overflow: hidden;
}

.explore____wrapper figure:hover .hover____image {
	/* display: block; */
	transform: translateX(0px);
	opacity: 1;
}
/* explore-section Css  */

/* sing-section Css  */
.sign____wrapper {
	background: linear-gradient(
		90deg,
		rgba(33, 35, 49, 1) 0%,
		rgba(24, 27, 37, 1) 50%,
		rgba(33, 35, 49, 1) 100%
	);
	box-shadow: 0px 4px 30px 0px rgba(202, 144, 67, 0.5);
	padding: 30px;
	border: 1px solid transparent;
	transition: 0.4as ease;
}

.sign____wrapper:hover {
	background: linear-gradient(
		180deg,
		rgba(33, 35, 49, 1) 0%,
		rgba(24, 27, 37, 1) 50%,
		rgba(33, 35, 49, 1) 100%
	);
	border-color: var(--secondary-color);
}

.sign___span {
	background: var(--secondary-color);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	color: var(--body-color);
	font-size: 20px;
}
.music___fig {
	animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px); /* up */
	}
	100% {
		transform: translateY(0); /* back */
	}
}
/* sing-section Css  */

/* testi-section Css  */
.testi____wrapper {
	background: linear-gradient(
		90deg,
		rgba(33, 35, 49, 1) 0%,
		rgba(24, 27, 37, 1) 50%,
		rgba(33, 35, 49, 1) 100%
	);
	border-radius: 15px;
	padding: 30px;
	transition: 0.4s ease;
	border: 2px solid transparent;
}
.testi____wrapper:hover {
	background: linear-gradient(
		180deg,
		rgba(33, 35, 49, 1) 0%,
		rgba(24, 27, 37, 1) 50%,
		rgba(33, 35, 49, 1) 100%
	);
	border-color: var(--secondary-color);
}

/* venues-section Css  */
.venues____image .img-fluid {
	filter: drop-shadow(0px 8px 32px rgba(4, 5, 11, 0.4));
	border-radius: 16px;
}
.venues____image figure:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(transparent, #000);
	z-index: 1;
	transition: 0.6s cubic-bezier(0.92, -0.08, 0, 1.06);
}
.venues____image figure {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
}

.venues____image:hover figure:before {
	top: 0;
}
.venues____image {
	background: var(--body-color);
	overflow: hidden;
}

.venues____image .animated___image {
	transform: translateX(-100%);
}

.venues____image .animated___right___image {
	transform: translateX(100%);
}
/* venues-section Css  */

/* plan-section Css  */
.plan___wrapper {
	background: #12151d;
	padding: 30px;
	border: 2px solid #1f222c;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}
.plan___wrapper:hover {
	border-color: var(--secondary-color);
}
.plan___btn {
	background: var(--extra-color-3);
	font-family: var(--font-dm);
	font-weight: 600;
	font-size: 13px;
	padding: 12px 30px;
	color: var(--heading-color);
}
.plan___wrapper.premium____wrap {
	border-color: var(--secondary-color);
}
.plan___wrapper.premium____wrap .plan___btn {
	background: var(--secondary-color);
	color: var(--body-color);
}
.popular___span {
	border-radius: 30px;
}
.popular___tag {
	margin-top: -15px;
}
/* plan-section Css  */
/* progress bar  */
.player {
	width: 100%;
	max-width: 500px;
	margin: auto;
	color: #fff;
}

.scrubber {
	width: 100%;
	height: 6px;
	background: #2a2a2a;
	border-radius: 50px;
	position: relative;
	cursor: pointer;
	margin-top: 0px;
}

.progress {
	width: 0%;
	height: 100%;
	background: linear-gradient(90deg, #1db954, #1ed760);
	border-radius: 50px;
	box-shadow: 0 0 10px #1db954;
}

.time {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	margin-top: 8px;
	color: #bbb;
}

/* waveform */
.waveform {
	display: flex;
	gap: 4px;
	height: 30px;
	width: 100%;
	align-items: flex-end;
}

.waveform div {
	width: 3px;
	background: #ca9043;
	animation: wave 1s infinite ease-in-out;
	opacity: 0.6;
}

@keyframes wave {
	0%,
	100% {
		height: 6px;
	}
	50% {
		height: 25px;
	}
}

/* footer Css  */
.site-footer {
	border-top: 2px solid #1e1c23;
	background: #1c181a;
}
/* footer Css  */
