:root {
	--deep-orange: #e45a02;
	--golden: #f6b23d;
	--cream: #fff4e6;
	--white: #ffffff;
	--text: #1a1a1a;
	--heading-color: #1c1e24;
}

body {
	font-family: "Poppins", sans-serif;
	color: var(--text);
	background: var(--white);
	margin: 0;
}

.font-dev {
	font-family: "Noto Serif Devanagari", serif;
}

/* Global heading rule-set */
body h1,
body .h1 {
	font-family: "Cinzel", serif;
	font-size: 72px;
	line-height: 1.08;
	font-weight: 700;
	color: var(--heading-color);
}

body h2,
body .h2 {
	font-family: "Cinzel", serif;
	font-size: 56px;
	line-height: 1.14;
	font-weight: 700;
	color: var(--heading-color);
}

body h3,
body .h3 {
	font-family: "Cinzel", serif;
	font-size: 48px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--heading-color);
}

body h4,
body .h4 {
	font-family: "Cinzel", serif;
	font-size: 40px;
	line-height: 1.26;
	font-weight: 700;
	color: var(--heading-color);
}

body h5,
body .h5 {
	font-family: "Poppins", sans-serif;
	font-size: 32px;
	line-height: 1.28;
	font-weight: 600;
}

body h6,
body .h6 {
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	line-height: 1.32;
	font-weight: 600;
}

/* Global CTA styles */
.bh-cta {
	border-radius: 8px;
	padding: 0.76rem 1.26rem;
	font-weight: 700;
	font-size: 0.98rem;
	line-height: 1.1;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	transition: all 0.2s ease;
}

.bh-cta i {
	font-size: 0.95rem;
}

.bh-cta-primary {
	background: linear-gradient(180deg, #ff8b16 0%, var(--deep-orange) 100%);
	color: #fff;
	border: 1px solid #ff8b16;
	box-shadow: 0 8px 18px rgba(255, 122, 0, 0.28);
}

.bh-cta-primary:hover {
	background: linear-gradient(180deg, #f17a05 0%, var(--deep-orange) 100%);
	border-color: var(--deep-orange);
	color: #fff;
	transform: translateY(-1px);
}

.bh-cta-outline {
	background: #fff;
	color: var(--deep-orange);
	border: 2px solid #f3b08e;
	box-shadow: 0 3px 10px rgba(233, 84, 32, 0.08);
}

.bh-cta-outline:hover {
	border-color: var(--deep-orange);
	color: var(--deep-orange);
	background: #fff7f2;
}

/* Top garland line */
.bh-top-garland {
	height: 16px;
	background:
		radial-gradient(circle at 10px 10px, #f6b23d 5px, transparent 6px) 0 0 / 24px 18px repeat-x,
		radial-gradient(circle at 12px 2px, #e95420 4px, transparent 5px) 0 0 / 24px 18px repeat-x,
		var(--deep-orange);
}

/* Hero banner */
.bh-hero-wrap {
    position: relative;
    border-bottom-left-radius: 134px;
    border-bottom-right-radius: 134px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}
.bh-hero-wrap h1.bh-title {
    font-size: 90px;
}
.bh-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.bh-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 244, 230, 0.97) 0%, rgba(255, 244, 230, 0.84) 44%, rgba(255, 244, 230, 0.32) 74%, rgba(255, 244, 230, 0.15) 100%);
}

.bh-nav-area,
.bh-hero-content {
	position: relative;
	z-index: 2;
}

/* Navigation */
.bh-nav-area {
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(233, 84, 32, 0.12);
}

.bh-nav-area .navbar {
	padding: 0.5rem 0;
	min-height: 70px;
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.brand-logo {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--deep-orange);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.brand-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--deep-orange);
}

.brand-sub {
	font-size: 0.76rem;
	color: var(--deep-orange);
}

.bh-nav-area .nav-link {
	color: var(--text) !important;
	font-size: 0.93rem;
	font-weight: 600;
	padding: 0.6rem 0.78rem !important;
	position: relative;
}

.bh-nav-area .nav-link.active,
.bh-nav-area .nav-link:hover {
	color: var(--deep-orange) !important;
}

.bh-nav-area .nav-link.active::after {
	content: "";
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 0.08rem;
	height: 2.5px;
	background: var(--deep-orange);
	border-radius: 3px;
}

.bh-trishul {
	color: var(--deep-orange);
	font-size: 2.05rem;
	line-height: 1;
}

/* Hero text */
.bh-hero-content {
	padding-top: 80px;
	padding-bottom: 120px;
}

.bh-tag {
	font-size: 0.98rem;
	letter-spacing: 0.015em;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	color: var(--deep-orange);
	text-transform: uppercase;
	line-height: 1.45;
	margin-bottom: 0.58rem;
}

.bh-title {
	color: var(--deep-orange);
	line-height: 1.05;
	margin-bottom: 0.55rem;
}

.bh-location {
	font-size: 1.95rem;
	font-weight: 600;
	margin-bottom: 0.85rem;
	color: #222;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.bh-location i {
	font-size: 1.15rem;
	color: var(--deep-orange);
}

.bh-desc {
	font-size: 1.17rem;
	line-height: 1.65;
	max-width: 565px;
	color: #222;
	margin-bottom: 1.25rem;
}

.bh-actions {
	display: flex;
	gap: 0.9rem;
	flex-wrap: wrap;
}

/* Right floating panel */
.bh-right-panel {
	position: absolute;
	right: -2px;
	top: 50%;
	transform: translateY(-50%);
	width: 198px;
	background: #fff;
	border-radius: 20px;
	padding: 0.72rem 0.58rem;
	box-shadow: 0 10px 26px rgba(233, 84, 32, 0.18), 0 2px 8px rgba(0, 0, 0, 0.07);
	border: 2px solid rgba(255, 122, 0, 0.28);
	outline: 1px solid rgba(246, 178, 61, 0.38);
	outline-offset: -5px;
}

.bh-hero-content .col-lg-6.position-relative {
	min-height: 420px;
}

.bh-right-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.42rem;
	padding: 0.7rem 0.28rem;
	font-weight: 600;
	font-size: 0.92rem;
	color: #333;
}

.bh-right-item + .bh-right-item {
	border-top: 1px solid #f0f0f0;
}

.ri-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid #ffd8bc;
	color: var(--deep-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
}

/* Under banner strip */
.bh-under-strip {
	margin-top: -28px;
	position: relative;
	z-index: 5;
	margin-bottom: 2.3rem;
}

.bh-strip-grid {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid #ececec;
}

.bh-strip-item {
	padding: 1.05rem 1rem 1.02rem;
	display: flex;
	align-items: flex-start;
	gap: 0.72rem;
}

.bh-strip-item + .bh-strip-item {
	border-left: 1px solid #ececec;
}

.bh-strip-item i {
	font-size: 1.75rem;
	color: var(--deep-orange);
	line-height: 1;
	margin-top: 0.05rem;
}

.bh-strip-item h3 {
	font-size: 0.98rem;
	font-weight: 700;
	margin: 0 0 0.2rem;
}

.bh-strip-item p {
	font-size: 0.83rem;
	line-height: 1.36;
	margin: 0;
}

/* Real Story section */
.bh-real-story {
	padding: 0.35rem 0 2.35rem;
	position: relative;
}

.bh-real-story-shell {
	background: transparent;
}

.bh-story-copy {
	padding: 0.38rem 0.15rem 0;
	max-width: 355px;
}

.bh-story-eyebrow {
	font-size: 0.88rem;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--deep-orange);
	letter-spacing: 0.03em;
	margin-bottom: 0.28rem;
}

.bh-story-copy h2 {
	font-size: clamp(1.88rem, 2.25vw, 2.26rem);
	line-height: 1.1;
	margin: 0 0 0.68rem;
}

.bh-story-copy p {
	font-size: 0.97rem;
	line-height: 1.62;
	color: #2f2f2f;
	max-width: 345px;
	margin-bottom: 0.78rem;
}

.bh-story-copy .bh-cta {
	margin-top: 0.42rem;
	margin-left: 2px;
	min-width: 168px;
	justify-content: center;
}

.bh-story-gallery {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 180px;
	gap: 0.74rem;
}

.bh-story-main {
	min-height: 268px;
}

.bh-story-stack {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 0.74rem;
}

.bh-story-ph {
	height: 100%;
	min-height: 128px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	border: 1.5px dashed #dfb396;
	background: linear-gradient(145deg, #fff8f2 0%, #fff2e7 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.85);
}

.bh-story-ph span {
	font-size: 0.9rem;
	font-weight: 600;
	color: #ba6a3b;
	letter-spacing: 0.01em;
}

.bh-story-ph-main {
	min-height: 268px;
}

.bh-story-ph-top,
.bh-story-ph-bottom {
	min-height: 128px;
}

/* Priest section (3rd) */
.bh-priest-section {
	padding: 2.8rem 0 1.6rem;
}

.bh-priest-card {
	position: relative;
	background: linear-gradient(180deg, #fff2d8 0%, #ffeecf 100%);
	border: 1px solid #efcc99;
	border-radius: 18px;
	padding: 1.25rem 1.4rem;
	overflow: hidden;
	min-height: 164px;
}

.bh-priest-decoration {
	position: absolute;
	top: 22px;
	font-size: 3rem;
	color: rgba(233, 84, 32, 0.24);
}

.bh-priest-decoration.left { left: 18px; }
.bh-priest-decoration.right { right: 18px; }

.bh-priest-photo-ph {
	min-height: 128px;
	border-radius: 14px;
	background: linear-gradient(145deg, #fff8f2 0%, #ffd08f 100%);
	border: 1px dashed #d79c56;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #924b1f;
}

.bh-priest-eyebrow {
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--deep-orange);
	margin-bottom: 0.1rem;
}

.bh-priest-card h2 {
	font-size: clamp(2rem, 2.4vw, 2.55rem);
	line-height: 1.03;
	margin: 0 0 0.45rem;
}

.bh-priest-quote {
	font-size: 1.02rem;
	line-height: 1.55;
	max-width: 650px;
	margin-bottom: 0.35rem;
}

.bh-priest-sign {
	color: var(--deep-orange);
	font-weight: 700;
	font-size: 0.96rem;
	margin: 0;
}

.bh-priest-temple-mark {
	position: absolute;
	right: 62px;
	bottom: 26px;
	font-size: 6.1rem;
	color: rgba(143, 87, 44, 0.25);
	line-height: 1;
}

/* Gallery section (4th) */
.bh-gallery-section {
	padding: 1.2rem 0 2.2rem;
	text-align: center;
}

.bh-gallery-eyebrow {
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--deep-orange);
	margin-bottom: 0.18rem;
}

.bh-gallery-title {
	font-size: clamp(2rem, 2.6vw, 2.65rem);
	line-height: 1.08;
	margin-bottom: 0.8rem;
}

.bh-gallery-tabs {
	gap: 0.45rem;
	flex-wrap: wrap;
	margin-bottom: 0.85rem;
}

.bh-gallery-tabs .nav-link {
	padding: 0.32rem 1rem;
	border: 1px solid #dfdfdf;
	border-radius: 30px;
	color: #444;
	background: #fff;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1;
}

.bh-gallery-tabs .nav-link.active {
	background: linear-gradient(180deg, #ff8b16 0%, var(--deep-orange) 100%);
	border-color: #ff8b16;
	color: #fff;
}

.bh-gallery-row-wrap {
	position: relative;
	padding: 0 28px;
}

.bh-gallery-row {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.65rem;
}

.bh-gallery-card {
	min-height: 92px;
}

.bh-gallery-ph {
	height: 100%;
	min-height: 92px;
	border-radius: 10px;
	border: 1.5px dashed #d9a98a;
	background: linear-gradient(135deg, #fff7ef 0%, #ffe3cf 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bh-gallery-ph span {
	font-size: 0.83rem;
	font-weight: 700;
	color: #9c5f3b;
}

.bh-gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: var(--deep-orange);
	font-size: 2rem;
	line-height: 1;
	padding: 0;
}

.bh-gallery-arrow.left { left: -6px; }
.bh-gallery-arrow.right { right: -6px; }

/* Visit horizontal feature bar (5th) */
.bh-visit-section {
	padding: 0.45rem 0 0.9rem;
}

.bh-visit-shell {
	position: relative;
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 14px;
	padding: 0.45rem 2rem;
}

.bh-visit-trishul {
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 3.2rem;
	color: var(--deep-orange);
}

.bh-visit-lamp {
	position: absolute;
	right: -8px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2.85rem;
	color: var(--deep-orange);
}

.bh-visit-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.bh-visit-item {
	display: flex;
	align-items: center;
	gap: 0.72rem;
	padding: 0.9rem 1rem;
}

.bh-visit-item + .bh-visit-item {
	border-left: 1px solid #ececec;
}

.bh-visit-item i {
	font-size: 1.8rem;
	color: var(--deep-orange);
}

.bh-visit-item h3 {
	font-size: 1rem;
	margin: 0 0 0.18rem;
}

.bh-visit-item p {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.4;
}

/* Footer (6th) */
.bh-site-footer {
	background: linear-gradient(180deg, #ff7f12 0%, #e95b24 100%);
	color: #fff;
	margin-top: 0.9rem;
}

.bh-footer-grid {
	display: grid;
	grid-template-columns: 1.45fr 1fr 1fr 1fr;
	gap: 0;
}

.bh-footer-grid > div {
	padding: 1.05rem 1.15rem;
}

.bh-footer-grid > div + div {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.bh-footer-brand .brand-logo {
	margin-bottom: 0.55rem;
}

.bh-footer-brand p {
	margin: 0.5rem 0 0;
	font-size: 0.95rem;
	line-height: 1.4;
}

.bh-site-footer h4 {
	font-size: 1.23rem;
	margin: 0 0 0.55rem;
	color: #fff;
}

.bh-site-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bh-site-footer li {
	margin-bottom: 0.16rem;
}

.bh-site-footer a {
	color: #fff;
	text-decoration: none;
	font-size: 0.92rem;
}

.bh-site-footer p {
	font-size: 0.9rem;
	margin: 0 0 0.35rem;
}

.bh-footer-social {
	display: flex;
	gap: 0.45rem;
}

.bh-footer-social a {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 999px;
	font-size: 1rem;
}

.bh-footer-copy {
	background: rgba(0, 0, 0, 0.15);
	text-align: center;
	padding: 0.44rem 0;
}

.bh-footer-copy p {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 600;
}

@media (max-width: 991px) {
	.bh-hero-wrap {
		min-height: 580px;
	}

	.bh-right-panel {
		position: static;
		transform: none;
		width: 100%;
		max-width: 520px;
		margin-left: auto;
		margin-top: 1.2rem;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.bh-hero-content .col-lg-6.position-relative {
		min-height: auto;
	}

	.bh-right-item + .bh-right-item {
		border-top: 0;
		border-left: 1px solid #f0f0f0;
	}
}

@media (max-width: 991px) {
	.bh-hero-wrap {
		min-height: 520px;
	}

	.bh-desc {
		max-width: none;
	}

	.bh-strip-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bh-strip-item:nth-child(3),
	.bh-strip-item:nth-child(4) {
		border-top: 1px solid #ececec;
	}

	.bh-strip-item:nth-child(3) {
		border-left: 0;
	}

	.bh-real-story {
		padding-bottom: 2rem;
	}

	.bh-story-copy {
		max-width: none;
	}

	.bh-story-copy p {
		max-width: none;
	}

	.bh-story-gallery {
		grid-template-columns: 1fr;
	}

	.bh-story-main {
		min-height: 230px;
	}

	.bh-story-stack {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
	}

	.bh-story-ph-main {
		min-height: 230px;
	}

	.bh-story-ph-top,
	.bh-story-ph-bottom {
		min-height: 120px;
	}

	.bh-priest-section {
		padding-top: 2.2rem;
	}

	.bh-priest-temple-mark {
		display: none;
	}

	.bh-gallery-row {
		grid-template-columns: repeat(3, 1fr);
	}

	.bh-visit-shell {
		padding: 0.5rem 1rem;
	}

	.bh-visit-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bh-visit-item:nth-child(3),
	.bh-visit-item:nth-child(4) {
		border-top: 1px solid #ececec;
	}

	.bh-visit-item:nth-child(3) {
		border-left: 0;
	}

	.bh-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bh-footer-grid > div:nth-child(3),
	.bh-footer-grid > div:nth-child(4) {
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	.bh-footer-grid > div:nth-child(3) {
		border-left: 0;
	}
}

@media (max-width: 767px) {
	.bh-nav-area .navbar {
		gap: 0.5rem;
		min-height: 62px;
	}

	.bh-trishul {
		display: none;
	}

	.bh-tag {
		font-size: 0.92rem;
	}

	.bh-location {
		font-size: 1.08rem;
	}

	.bh-desc {
		font-size: 0.95rem;
	}

	.bh-actions .btn {
		width: 100%;
	}

	.bh-cta {
		justify-content: center;
	}

	.bh-right-panel {
		grid-template-columns: 1fr;
	}

	.bh-right-item + .bh-right-item {
		border-left: 0;
		border-top: 1px solid #f0f0f0;
	}

	.bh-under-strip {
		margin-top: -16px;
	}

	.bh-strip-grid {
		grid-template-columns: 1fr;
	}

	.bh-strip-item + .bh-strip-item {
		border-left: 0;
		border-top: 1px solid #ececec;
	}

	.bh-real-story {
		padding-bottom: 1.5rem;
	}

	.bh-story-copy h2 {
		font-size: 1.82rem;
	}

	.bh-story-copy p {
		font-size: 0.93rem;
		line-height: 1.55;
	}

	.bh-story-main {
		min-height: 220px;
	}

	.bh-story-ph {
		border-radius: 12px;
	}

	.bh-priest-card {
		padding: 1rem;
		min-height: 0;
	}

	.bh-priest-decoration,
	.bh-priest-temple-mark {
		display: none;
	}

	.bh-priest-card h2,
	.bh-gallery-title {
		font-size: 1.82rem;
	}

	.bh-gallery-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.bh-gallery-arrow {
		display: none;
	}

	.bh-visit-trishul,
	.bh-visit-lamp {
		display: none;
	}

	.bh-visit-grid {
		grid-template-columns: 1fr;
	}

	.bh-visit-item + .bh-visit-item {
		border-left: 0;
		border-top: 1px solid #ececec;
	}

	.bh-footer-grid {
		grid-template-columns: 1fr;
	}

	.bh-footer-grid > div + div {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}
}

