:root {
	--bg: #070b0a;
	--panel: #11100d;
	--panel2: #17130e;
	--gold: #d69a2e;
	--gold2: #f0bd5d;
	--cream: #f7f0e4;
	--text: #f8f4ec;
	--muted: #c9c2b6;
	--red: #7d1717;
	--border: rgba(214, 154, 46, .48);
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: var(--bg);
	color: var(--text)
}

img {
	max-width: 100%;
	display: block
}

a {
	text-decoration: none;
	color: inherit
}

button {
	font: inherit
}

.container {
	width: min(1180px, 92%);
	margin: auto
}

.topbar {
	background: #050606;
	border-bottom: 1px solid #2a241a;
	font-size: 13px
}

.topbar-inner {
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px
}

.top-contact,
.socials {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap
}

.live {
	background: linear-gradient(#a12b21, #65110d);
	padding: 9px 18px;
	border-radius: 4px;
	font-weight: 700
}

.social {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #24334d;
	font-weight: 700
}

header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(8, 10, 9, .96);
	border-bottom: 1px solid rgba(214, 154, 46, .22);
	backdrop-filter: blur(8px)
}

.nav {
	min-height: 83px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px
}

.brand img {
	width: 290px;
	height: 85px;
	object-fit: contain;
	object-position: left center
}

.menu {
	display: flex;
	align-items: center;
	gap: 26px;
	font-size: 14px;
	font-weight: 700
}

.menu a {
	padding: 30px 0;
	position: relative
}

.menu a:hover,
.menu a.active {
	color: var(--gold2)
}

.menu a.active:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 17px;
	height: 2px;
	background: var(--gold)
}

.donate-btn {
	padding: 14px 20px;
	border-radius: 5px;
	background: linear-gradient(135deg, var(--gold2), #b77710);
	color: white;
	font-weight: 800
}

.hamburger {
	display: none;
	background: none;
	border: 0;
	color: white;
	font-size: 28px
}

.hero {
	min-height: 560px;
	background:
		linear-gradient(90deg, rgba(4, 8, 9, .94) 0%, rgba(4, 8, 9, .6) 42%, rgba(4, 8, 9, .1) 68%),
		url('../assets/hero.jpg') center/cover no-repeat;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--border)
}

.hero-content {
	width: min(560px, 100%);
	padding: 58px 0
}

.script {
	font-family: Georgia, serif;
	font-style: italic;
	color: var(--gold2);
	font-size: 28px
}

h1 {
	font-family: Georgia, serif;
	text-transform: uppercase;
	font-size: 52px;
	line-height: 1.02;
	margin: 8px 0 18px
}

h1 span {
	color: var(--gold2)
}

.hero p {
	font-size: 18px;
	line-height: 1.7;
	color: #eee;
	max-width: 440px
}

.actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin: 25px 0
}

.btn {
	padding: 14px 23px;
	border-radius: 5px;
	border: 1px solid var(--gold);
	font-weight: 800
}

.btn-primary {
	background: linear-gradient(135deg, var(--gold2), #aa6e13)
}

.btn-outline {
	background: rgba(0, 0, 0, .35)
}

.features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-top: 30px
}

.feature {
	text-align: center;
	border-right: 1px solid rgba(214, 154, 46, .25);
	padding: 5px
}

.feature:last-child {
	border: 0
}

.feature-icon {
	width: 52px;
	height: 52px;
	border: 1px solid var(--gold);
	border-radius: 50%;
	margin: 0 auto 8px;
	display: grid;
	place-items: center;
	color: var(--gold2);
	font-size: 25px
}

.feature small {
	line-height: 1.35;
	display: block
}

.section {
	padding: 36px 0
}

.dark-panel {
	background: linear-gradient(180deg, #17110c, #0d0b09);
	border: 1px solid var(--border);
	border-radius: 17px;
	padding: 20px
}

.section-title {
	text-align: center;
	font-family: Georgia, serif;
	font-size: 28px;
	color: #f6dfb6;
	margin: 0 0 22px;
	text-transform: uppercase
}

.tour-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr .58fr;
	gap: 18px
}

.main-tour {
	position: relative;
	border: 1px solid var(--border);
	border-radius: 10px;
	overflow: hidden;
	min-height: 335px;
	background: #0d0a07
}

.main-tour img,
.main-tour .tour-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 335px
}

.main-tour .tour-video {
	position: absolute;
	inset: 0;
	background: #000;
	z-index: 2
}

.main-tour.playing .play,
.main-tour.playing .overlay,
.main-tour.playing #mainTourPoster {
	display: none
}

.main-tour .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 35%, rgba(0, 0, 0, .88));
	display: flex;
	align-items: flex-end;
	padding: 25px;
	pointer-events: none;
	z-index: 1
}

.play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	border: 3px solid white;
	background: rgba(0, 0, 0, .38);
	display: grid;
	place-items: center;
	font-size: 32px;
	color: #fff;
	cursor: pointer;
	z-index: 3
}

.play:disabled {
	opacity: .45;
	cursor: not-allowed
}

.thumbs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px
}

.thumb {
	border: 1px solid var(--border);
	border-radius: 9px;
	overflow: hidden;
	background: #17120d;
	padding: 0;
	color: inherit;
	font: inherit;
	text-align: inherit;
	cursor: pointer;
	width: 100%;
	display: block
}

button.thumb:hover,
button.thumb.active {
	border-color: var(--gold2, #c9a227);
	box-shadow: 0 0 0 1px var(--gold2, #c9a227)
}

.thumb img {
	height: 120px;
	width: 100%;
	object-fit: cover;
	display: block
}

.thumb p {
	margin: 0;
	padding: 10px 6px;
	text-align: center;
	font-size: 12px;
	color: #f5efe6
}

.baba-side img {
	height: 100%;
	min-height: 335px;
	width: 100%;
	object-fit: cover;
	border-radius: 9px;
	border: 1px solid var(--border)
}

.info-wrap {
	background: var(--cream);
	color: #241b12;
	border-radius: 14px;
	padding: 22px
}

.info-grid {
	display: grid;
	grid-template-columns: 1.35fr .55fr .85fr;
	gap: 20px
}

.heading-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px
}

.heading-row h2 {
	font-family: Georgia, serif;
	margin: 0;
	font-size: 24px;
	text-transform: uppercase
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px
}

.card {
	background: #fffaf1;
	border: 1px solid #e1d7c5;
	border-radius: 8px;
	overflow: hidden
}

.card img {
	height: 126px;
	width: 100%;
	object-fit: cover
}

.card-body {
	padding: 14px
}

.card h3 {
	font-size: 15px;
	line-height: 1.4;
	margin: 0 0 10px
}

.card p,
.card small {
	font-size: 12px;
	line-height: 1.5;
	color: #51473b
}

.programs,
.festivals {
	background: #f3e8d8;
	padding: 16px;
	border-radius: 8px
}

.row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid #d9cbb8;
	font-size: 13px
}

.date {
	background: #651818;
	color: white;
	border-radius: 5px;
	padding: 6px;
	text-align: center;
	min-width: 48px;
	font-weight: 700
}

.donation-grid {
	display: grid;
	grid-template-columns: .8fr 1.05fr 1.45fr;
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden
}

.donation-box {
	padding: 22px;
	background: linear-gradient(180deg, #17140f, #0e100e);
	border-right: 1px solid var(--border)
}

.donation-box:last-child {
	border-right: 0
}

.donation-box h3 {
	text-align: center;
	color: var(--gold2);
	font-family: Georgia, serif;
	text-transform: uppercase;
	margin-top: 0
}

.qr {
	width: 170px;
	margin: 12px auto
}

.bank-lines {
	line-height: 1.9;
	color: #e8e1d7
}

.bank-lines b {
	color: var(--gold2)
}

.connect {
	display: grid;
	grid-template-columns: 1fr 170px;
	align-items: center;
	gap: 18px
}

.connect img {
	height: 220px;
	width: 100%;
	object-fit: cover;
	border-radius: 10px
}

footer {
	border-top: 1px solid rgba(214, 154, 46, .25);
	padding: 28px 0 15px
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr repeat(4, 1fr);
	gap: 24px
}

footer h4 {
	color: var(--gold2);
	margin: 0 0 12px
}

footer a,
footer p {
	font-size: 13px;
	line-height: 1.8;
	color: #ddd
}

.copyright {
	border-top: 1px solid #28241d;
	margin-top: 20px;
	padding-top: 15px;
	text-align: center;
	color: #aaa;
	font-size: 12px
}

@media(max-width:980px) {
	.menu {
		position: fixed;
		left: 0;
		right: 0;
		top: 125px;
		background: #0a0c0b;
		display: none;
		flex-direction: column;
		gap: 0;
		padding: 15px 6%;
		border-top: 1px solid #30281d
	}

	.menu.open {
		display: flex
	}

	.menu a {
		width: 100%;
		padding: 14px 0
	}

	.menu a.active:after {
		display: none
	}

	.hamburger {
		display: block
	}

	.nav>.donate-btn {
		display: none
	}

	.tour-grid {
		grid-template-columns: 1fr
	}

	.baba-side {
		display: none
	}

	.info-grid {
		grid-template-columns: 1fr
	}

	.donation-grid {
		grid-template-columns: 1fr
	}

	.donation-box {
		border-right: 0;
		border-bottom: 1px solid var(--border)
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media(max-width:650px) {

	.top-contact span:nth-child(n+2),
	.socials {
		display: none
	}

	.brand img {
		width: 235px;
		height: 74px
	}

	.menu {
		top: 116px
	}

	.hero {
		min-height: 640px;
		background-position: 60% center
	}

	h1 {
		font-size: 39px
	}

	.script {
		font-size: 22px
	}

	.features {
		grid-template-columns: repeat(2, 1fr)
	}

	.feature:nth-child(2) {
		border-right: 0
	}

	.news-grid {
		grid-template-columns: 1fr
	}

	.thumbs {
		grid-template-columns: repeat(2, 1fr)
	}

	.connect {
		grid-template-columns: 1fr
	}

	.connect img {
		height: 180px
	}

	.footer-grid {
		grid-template-columns: 1fr
	}

	.section-title {
		font-size: 22px
	}
}

/* MAIN WRAPPER */
.seva-section {
	width: 100%;

	background: #0c0d0b;
	border: 1px solid #4c371b;
	border-radius: 6px;

}

.seva-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

/* ITEM */
.seva-item {
	min-height: 145px;
	padding: 18px 12px;
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	text-align: center;

	transition: 0.3s ease;
}

/* Vertical divider */
.seva-item:not(:last-child)::after {
	content: "";
	position: absolute;

	right: 0;
	top: 20px;

	width: 1px;
	height: 100px;

	background: linear-gradient(transparent,
			#6b4b22,
			transparent);
}

.seva-item:hover {
	background: #14120e;
}

/* ICON CIRCLE */
.icon-circle {
	width: 43px;
	height: 43px;

	border: 1px solid #a87528;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 8px;

	color: #d69b38;

	transition: .3s;
}

.seva-item:hover .icon-circle {
	background: #a87528;
	color: #111;
	transform: translateY(-3px);
}

.icon-circle svg {
	width: 25px;
	height: 25px;

	stroke: currentColor;
	fill: none;

	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* TITLE */
.seva-item h3 {
	color: #e5a53d;

	font-size: 12px;
	line-height: 1.2;

	margin: 0 0 5px;

	font-weight: 600;
}

/* TEXT */
.seva-item p {
	margin: 0;

	color: #eeeeea;

	font-size: 11px;
	line-height: 1.45;
}

/* TABLET */
@media(max-width:700px) {

	.seva-section {
		margin: 20px;
	}

	.seva-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.seva-item {
		border-bottom: 1px solid #3b2d1a;
	}

	.seva-item:nth-child(2)::after {
		display: none;
	}
}

/* MOBILE */
@media(max-width:420px) {

	.seva-container {
		grid-template-columns: 1fr;
	}

	.seva-item {
		min-height: auto;
		padding: 20px;
	}

	.seva-item::after {
		display: none !important;
	}
}

.program-btn {
	width: 190px;
	height: 42px;
	padding: 0 20px;

	display: inline-flex;
	align-items: center;
	justify-content: space-between;

	background: linear-gradient(180deg,
			#741915 0%,
			#59100d 55%,
			#3d0c0a 100%);

	border: 1px solid #8d3028;
	border-radius: 6px;

	color: #fff;
	text-decoration: none;

	font-family: Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .15),
		0 2px 4px rgba(0, 0, 0, .25);

	transition: all .25s ease;
}

.program-btn .arrow {
	font-size: 19px;
	font-weight: 400;
	margin-left: 15px;
	line-height: 1;
}

.program-btn:hover {
	background: linear-gradient(180deg,
			#8d211b,
			#681510,
			#480d0a);

	transform: translateY(-2px);

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .18),
		0 5px 12px rgba(0, 0, 0, .35);
}

.program-btn:active {
	transform: translateY(0);
}

footer i {
	color: var(--gold2);
}

.socials i {
	color: var(--gold2);
}

/* Right Center Popup */
.right-popup {
	position: fixed;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 270px;
	background: url('../assets/popup.png') center / cover no-repeat;

	border-right: 0;
	border-radius: 15px 0 0 15px;
	padding: 25px 20px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, .2);
	z-index: 9999;
	background-size: contain;
	height: 230px;
}

/* Close Button */
.popup-close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 50%;
	background: #d99a22;
	color: #fff;
	font-size: 18px;
	cursor: pointer;

}

/* Image */
.right-popup img {
	width: 100%;
	display: block;
	border-radius: 10px;
}

.right-popup h3 {
	margin: 15px 0 8px;
	text-align: center;
	color: #8b5700;
}

.right-popup p {
	margin: 0;
	text-align: center;
	line-height: 1.6;
	color: #555;
}

/* Mobile */
@media(max-width: 600px) {
	.right-popup {
		width: 270px;
	}
}