/* ====== BASE ====== */
:root {
	--bg: #071014;
  --bg-black: #111111;
  --bg-blue: #1c2c59;
	--panel: #0f1416cc;
	/* glass panel */
	--muted: #c9c9c9;
	--neon1: #ff4ecd;
	--neon2: #ffa14e;
	--glass-border: rgba(255, 255, 255, 0.06);
	--glass-blur: 8px;
	--maxw: 1200px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}
::selection{
  background-color: var(--bg-blue);
}

html {
	scroll-behavior: smooth;
  font-size: 16px;
}

body {
	font-family: "Rubik", sans-serif;
	background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 78, 205, 0.04), transparent),
		radial-gradient(1000px 500px at 90% 90%, rgba(255, 161, 78, 0.03), transparent),
		var(--bg);
	color: #eaeaea;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none
}

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px
}
img{
  max-width: 100%;
  height: auto;
}

:is(h1, h2, h3, h4, h5, h6){
  font-family: "Oswald", sans-serif;;
}
button{
  font-family: 'Oswald';
}

/* ====== NAV (sticky + gradient) ====== */
header {
	position: sticky;
	top: 12px;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0;
	pointer-events: auto;
}

.nav-inner {
	width: 100%;
	max-width: var(--maxw);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-radius: 14px;
	padding: 10px 16px;
	/* box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(6px); */
}
.stickyHeader .nav-inner{
  /* background: linear-gradient(90deg, rgba(255, 78, 205, 0.06), rgba(255, 161, 78, 0.04)); */
  background-color: var(--bg-blue);
  /* box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6); */
	/* border: 1px solid rgba(255, 255, 255, 0.03); */
	backdrop-filter: blur(10px);
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand img {
	width: 60px;
	/* height: 56px; */
	object-fit: contain;
	border-radius: 10px;
	transition: all .25s;
}
.stickyHeader .nav-inner .brand img{
  width: 40px;
}

.brand h4 {
	font-size: 1rem;
	margin: 0;
	letter-spacing: 0.4px
}

.brand small {
	display: block;
	font-size: 0.74rem;
	color: var(--muted)
}
.d-flex{
  display: flex;
}
nav {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-links {
	display: flex;
	gap: 6px;
	align-items: center
}

.nav-links a {
	padding: 10px 12px;
	border-radius: 10px;
	color: var(--muted);
	font-weight: 600;
	font-size: 0.95rem;
	transition: all .18s;
}

.nav-links a:hover {
	color: white;
	transform: translateY(-2px);
}

.nav-links a.active {
	color: white;
	background: linear-gradient(90deg, var(--neon1), var(--neon2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	box-shadow: 0 6px 30px rgba(255, 78, 205, 0.06);
}

.cta {
	margin-left: 8px;
}

.cta .btn {
	background: linear-gradient(90deg, var(--neon1), var(--neon2));
	color: white;
	padding: 10px 16px;
	border-radius: 999px;
	font-weight: 700;
	box-shadow: 0 10px 30px rgba(255, 78, 205, 0.08);
	border: none;
	cursor: pointer;
  font-family: "Oswald", sans-serif;
}

.cta .btn:active {
	transform: scale(.99)
}

/* Hamburger (mobile) */
.hamburger {
	display: none;
	width: 46px;
	height: 46px;
	border-radius: 10px;
	border: none;
	background: transparent;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

.hamburger .bar {
	width: 20px;
	height: 2px;
	background: var(--muted);
	display: block;
	margin: 3px 0;
	transition: all .2s
}

/* ===== HERO ===== */
.hero {
	text-align: center;
  height: calc(100vh - 123px);
  display: flex;
  align-items: center;
}

.hero .hero-card {
  display: grid;
  grid-template-columns: repeat(2,1fr);
	margin: 0 auto;
  height: 100%;
	/* background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)); */
	/* border-radius: 18px; */
	padding: 24px 0;
	/* border: 1px solid var(--glass-border); */
	/* backdrop-filter: blur(var(--glass-blur)); */
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	/* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6); */
}

.hero-left {
	min-width: 240px;
	text-align: left
}

.hero-left h1 {
	font-size: 2.25rem;
	margin-bottom: 0.625rem;
	letter-spacing: 0.6px
}

.hero-left p {
	color: var(--muted);
	margin-bottom: 14px
}

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap
}
.hero-right{
  min-height: 100%;
    height: 100%;
    align-self: center;
    margin-block: auto;
}
.hero-right img{
  height: 100%;
    object-fit: contain;
    width: 100%;
}

.btn-primary {
  font-family: "Oswald", sans-serif;
	display: inline-block;
	padding: 12px 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--neon1), var(--neon2));
	color: white;
	font-weight: 700;
	box-shadow: 0 10px 40px rgba(255, 78, 205, 0.08);
  transition: all .18s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, var(--neon2), var(--neon1));
}

.btn-outline {
  display: inline-flex;
  font-family: "Oswald", sans-serif;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--muted);
	font-weight: 700;
	background: transparent;
  transition: all .18s;
}
.btn-outline:hover {
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(90deg, var(--neon2), var(--neon1));
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section {
	padding: 70px 0;
  scroll-margin-top: 70px;
}
.d-grid{
  display: grid;
}
.d-inline-flex{
  display: inline-flex;
}
.item-center{
  align-items: center;
}
.text-left{
  text-align: left;
}
.grid-col-2{
  grid-template-columns: repeat(2, 1fr);
}
.grid-col-3{
  grid-template-columns: repeat(3, 1fr);
}
.col-span-2{
  grid-column: span 2;
}
.gap-5{
  gap: 1.25rem;
}
.mb-6{
  margin-bottom: 24px;
}
.ml-6{
  margin-left: 24px;
}
.bg-blue{
  background-color: var(--bg-blue);
} 
.p-10{
  padding: 40px;
}
.justify-space{
  justify-content: space-between;
}
.min-h-full{
  min-height: 100%;
}
h2.section-title {
	font-size: 2rem;
	margin-bottom: 14px;
}
.head_h4{
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.fw-500{
  font-weight: 500;
}
::marker{
  content: '🎤 ';
}
ul li:not(:last-child){
  margin-bottom: 10px;
}

p.lead {
	color: var(--muted);
  font-size: 18px;
	margin-bottom: 20px;
}

/* highlights grid (glass cards) */
.features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 18px;
}

.card {
	background: var(--panel);
	padding: 20px;
	border-radius: 14px;
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(var(--glass-blur));
	min-height: 120px;
	transition: transform .25s, box-shadow .25s;
}

.card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6)
}

.card .icon {
	font-size: 28px;
	margin-bottom: 8px;
	display: inline-block
}

/* RJ section */
.rj-wrap {
	display: flex;
	gap: 28px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 18px
}

.rj-photo {
	width: 360px;
	height: 240px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.04);
	box-shadow: 0 12px 40px rgba(255, 78, 205, 0.04)
}

.rj-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.rj-desc {
	flex: 1;
	min-width: 260px
}

/* package card */
.package-card {
	margin: 18px auto 0;
	max-width: 920px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
	border-radius: 14px;
	padding: 18px;
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(var(--glass-blur));
}

.price {
	font-size: 1.7rem;
	font-weight: 800;
	margin: 8px 0;
	background: linear-gradient(90deg, var(--neon1), var(--neon2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.inclusions {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 12px;
}

.inc {
	background: rgba(255, 255, 255, 0.02);
	padding: 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.03)
}

/* contact */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 20px;
	align-items: start
}

.contact-card {
	background: var(--panel);
	padding: 18px;
	border-radius: 12px;
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(var(--glass-blur))
}

form input,
form textarea {
	width: 100%;
	padding: 12px;
	border-radius: 10px;
	border: none;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	margin-bottom: 10px;
	outline: none
}

.contact-details p {
	color: var(--muted);
	margin-bottom: 6px
}

.small-muted {
	font-size: 0.85rem;
	color: var(--muted)
}

/* footer */
footer {
	padding: 36px 20px;
	text-align: center;
	color: var(--muted);
	margin-top: 30px
}

/* Fade-in utility */
.fade {
	opacity: 0;
	transform: translateY(18px);
	transition: all .7s cubic-bezier(.15, .9, .3, 1);
	will-change: opacity, transform
}

.fade.show {
	opacity: 1;
	transform: translateY(0)
}

/* ====== RESPONSIVE ====== */
@media (max-width:980px) {
	.hero-card {
		flex-direction: column;
		align-items: flex-start
	}

	.hero-right {
		width: 100%;
		display: flex;
		justify-content: center
	}

	.brand > div {
		display: none
	}
}
@media (max-width:768px) {
	.stickyHeader .nav-inner .brand img{
		width: 30px;
	}
	.nav-links {
		display: none
	}

	.hamburger {
		display: flex;
		flex-direction: column;
	}

	.contact-grid {
		grid-template-columns: 1fr
	}

	header {
		top: 10px
	}
	.grid-col-3{
		grid-template-columns: repeat(1, 1fr);
	}
	.grid-col-2{
		grid-template-columns: repeat(1, 1fr);
	}
	.hero{
		height: auto;
	}
	.hero .hero-card{
		grid-template-columns: repeat(1, 1fr);
	}
	.features{
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
	.inclusions{
		grid-template-columns: repeat(1, 1fr);
	}
	.p-10{
		padding: 1.25rem;
	}
	h2.section-title{
		font-size: 1.75rem;
	}
	section{
		padding: 30px 0;
		scroll-margin-top: 60px;
	}
	footer{
		padding: 30px 0px;
	}
	.brand > div{
		display: none;
	}
	.brand img{
		width: 46px;
	}
	.nav-inner{
		padding: 10px 10px;
		margin-inline: 10px;
	}
}

@media (max-width:520px) {
	.rj-photo {
		width: 100%;
		height: 200px
	}

	.hero-left h1 {
		font-size: 1.4rem
	}
}

/* Mobile nav panel */
.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 995;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
	display: none;
	justify-content: center;
}

.mobile-nav.open {
	display: flex
}

.mobile-nav .panel {
	margin-top: 102px;
	overflow-y: auto;
	width: 90%;
	background: var(--panel);
	padding: 20px;
	border-radius: 12px;
	border: 1px solid var(--glass-border);
}
.stickyHeader ~ .mobile-nav .panel{
	margin-top: 90px;
}

.mobile-nav a {
	display: block;
	padding: 12px 0;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.03);
	color: var(--muted);
	font-weight: 700
}

.mobile-nav a:last-child {
	border-bottom: none
}