@charset "UTF-8";

/***** Index *****/
/* Full screen white loading overlay */
#loader-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #000;
	color: #fff;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loader-content {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	gap: 1vw;
	padding-bottom: 10vh;
}

.loader-content .fadein_logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 150px;
	height: 100%;
	max-height: 150px;
	opacity: 0;
	/* Managed dynamically by GSAP */
	position: relative;
	margin-left: -5vw;
}

.loader-content .fadein_logo i {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.loader-content .fadein_logo i img {
	opacity: 0;
	/* Let GSAP cleanly fade them in dynamically */
}

.loader-content .conductor_name {
	display: flex;
	flex-direction: column;
	gap: 3px;
	font-size: 40px;
	font-weight: 200;
	line-height: 1;
	color: #fff;
	text-align: center;
}

.loader-content .conductor_name span:nth-child(1) {
	font-family: "Playfair Display", serif;
	font-weight: 300;
	font-variation-settings: "wdth"300;
	font-size: 0.875em;
	letter-spacing: -0.01em;
	display: block;
	/* Added to allow transformations */
	opacity: 0;
	/* Added so GSAP can fade it in */
	/*			text-shadow: 0 0 3px #FFCE78;*/
	margin-bottom: 4px;
}

.loader-content .conductor_name span:nth-child(2) {
	font-size: 0.25em;
	font-weight: 200;
	letter-spacing: 1px;
	display: block;
	/* Added to allow transformations */
	opacity: 0;
	/* Added so GSAP can fade it in */
	text-shadow: 0 0 2px #FFCE78;
	padding-left: 16px;
}

/* --- Fixed Backdrop Layer Configuration --- */
.canvas-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1;
	/* Locked structurally behind background folds */
	background-color: #000;
	opacity: 0;
	overflow: hidden;
	pointer-events: auto;
}

canvas {
	display: block;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: top;
	filter: brightness(1.1);
	will-change: transform;
	position: relative;
	z-index: 0;
	opacity: 0;
	/* Keeps the canvas completely black at first */
}

.canvas-start-overlay {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 1;
	display: none;
}

.canvas-overlay {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(8px);
	background: url("../img/interlaced_effect.png") no-repeat;
	background-size: cover;
	opacity: 0;
	/* Changed to 0 so it can fade in programmatically via GSAP */
}

#main-logo {
	position: absolute;
	width: 100vw;
	top: 0;
	left: 0;
	z-index: 3;
	display: flex;
	display: none;
}

#main-logo span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: auto;
	aspect-ratio: 1 / 1;
	padding: 15px 30px;
}

.scroll-down-indicator {
	position: absolute;
	top: -10vh;
	left: 0;
	width: 100vw;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.arrow-down {
	display: block;
	margin: 15px auto 0;
	width: 10px;
	height: 20px;
	position: relative;
}

.arrow-down:before,
.arrow-down:after {
	content: '';
	display: block;
	width: 15px;
	height: 2px;
	background: #fff;
	position: absolute;
}

.arrow-down:before {
	transform: rotate(45deg);
	left: -7px;
	border-radius: 100px;
}

.arrow-down:after {
	transform: rotate(-45deg);
	right: -7px;
	border-radius: 100px;
}

.scroll-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	opacity: 0.9;
}

.scroll-logo img {
	filter: grayscale(1) brightness(2);
}

.scroll-title-text {
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 12px;
	font-weight: 200;
	padding: 1px 8px;
	position: relative;
	height: 140px;
	margin-bottom: 25px;
}

.scroll-title-text:after {
	content: '';
	position: absolute;
	left: calc(50% - 2.5px);
	bottom: -10px;
	width: 5px;
	height: 5px;
	margin-top: 1px;
	border-radius: 100px;
	background: #FFCE78;
}

.scroll-title-text b {
	transform: rotate(-90deg);
	transform-origin: center;
	font-weight: 300;
	display: flex;
	width: 100%;
}

.scroll-title-text b:nth-child(2) {
	display: none;
}

.scroll-ani {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.scroll-ani i {
	width: 1px;
	height: 80px;
	background: #ffffff80;
	border-radius: 100px;
	display: flex;
	justify-content: center;
}

.scroll-ani b {
	position: absolute;
	top: 0;
	display: none;
	justify-content: center;
	align-items: center;
	width: 5px;
	height: 24px;
	border-radius: 100px;
	background: #fff;
	animation: swipeUp 2s cubic-bezier(0.3, 0.2, 0.2, 1) infinite;
	z-index: 2;
	overflow: hidden;
}

.scroll-ani b:after {
	content: '';
    position: absolute;
    bottom: 15%;
	width: 1.5px;
    height: 1.5px;
	background: #000;
    border-radius: 100px;
    transform: rotate(45deg);
}

.scroll-ani:after {
	content: '';
	position: absolute;
	top: 0;
	width: 2px;
	height: 100%;
	background: #fff;
	border-radius: 100px;
	animation: elasticus 1.8s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes elasticus {
	0% {
		transform-origin: 0% 0%;
		transform: scale(1, 0);
	}

	50% {
		transform-origin: 0% 0%;
		transform: scale(1, 1);
	}

	50.1% {
		transform-origin: 0% 100%;
		transform: scale(1, 1);
	}

	100% {
		transform-origin: 0% 100%;
		transform: scale(1, 0);
	}
}

@keyframes elasticusMobile {
	10% {
		transform-origin: 0% 0%;
		transform: scale(1, 0);
	}

	50% {
		transform-origin: 0% 0%;
		transform: scale(1, 1);
	}

	50.1% {
		transform-origin: 0% 100%;
		transform: scale(1, 1);
	}

	100% {
		transform-origin: 0% 100%;
		transform: scale(1, 0);
	}
}

@keyframes swipeUp {
	0% {
		top: 0;
		opacity: 0;
	}
	
	10% {
		top: 0;
		opacity: 1;
	}

	100% {
		top: calc(100% - 24px);
	}
}


#keepswipe {
	position: fixed;
	width: 100%;
	bottom: 2vh;
	display: flex;
	justify-content: center;
	padding: 20px 0;
	z-index: 3;
	opacity: 0; 
	pointer-events: none;
}

.keepswipe_ani {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 50px;
	height: 50px;
}

.keepswipe_ani span {
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -3px;
  animation: animeArrow 2s infinite;
}

.keepswipe_ani span:nth-child(2) {
  animation-delay: 0.1s;
}

.keepswipe_ani span:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes animeArrow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/* Empty natural document spacing for image scrubbing engine */
.spacer-layer {
	position: relative;
	width: 100%;
/*	height: 1200vh;*/
	height: 500vh; /* Control seqence speed */
	pointer-events: none;
	z-index: 2;
}

/* --- Clean Document Flow Content Section --- */
.menu-section {
	position: relative;
	width: 100%;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	min-height: 100vh;
	overflow: hidden;
}

.main-menu {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	z-index: 2;
}

.main-menu ul,
.main-menu li {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.main-menu ul {
	flex-direction: column;
	gap: 6vh;
	font-size: 16px;
	text-align: center;
	letter-spacing: -0.05em;
}

.content-box {
	max-width: 1200px;
	width: 100%;
	text-align: center;
	padding: 0 0 120px;
}

/* --- Menu Links Style Without Split Animation --- */
.main-menu a {
	font-family: "Playfair Display", serif;
	font-weight: 300;
	font-variation-settings: "wdth"300;
	color: #FFCE78;
	font-size: 2.25em;
	letter-spacing: -0.02em;
	display: inline-block;
	position: relative;
	opacity: 0;
	/* Animated dynamically to 1 during the pin phase */
	line-height: 1.2;
	transition: color 0.5s ease, text-shadow 0.3s ease;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.main-menu a:hover {
	color: #fff;
	text-shadow: 0 0 12px rgba(255, 255, 255, 0.5), 0 0 1px rgba(255, 206, 120, 0.5);
}

/* Raised z-index system allows news and footer blocks to slide cleanly over pinned menus */
.news {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 30px;
	width: 100%;
	min-height: 70vh;
	z-index: 20;
	box-sizing: border-box;
	background: #FFFFFF;
	background: -webkit-linear-gradient(102deg, rgba(255, 255, 255, 0) 50%, rgba(253, 187, 45, 0.6) 100%);
	background: -o-linear-gradient(102deg, rgba(255, 255, 255, 0) 50%, rgba(253, 187, 45, 0.6) 100%);
	background: linear-gradient(192deg, rgba(255, 255, 255, 0) 50%, rgba(253, 187, 45, 0.6) 100%);
	padding: 0 50px;
}

.news>div {
	display: flex;
	flex-direction: column;
	gap: 50px;
	width: 100%;
	max-width: 1300px;
	padding: 80px 50px 200px;
}

.news h2 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	line-height: 1;
}

.news h2 span {
	font-size: 2rem;
	letter-spacing: 0;
	color: #FFCE78;
	position: relative;
}

.news h2 a {
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	font-weight: 300;
	color: #fff;
	letter-spacing: 0;
	padding: 3px 10px 3px 12px; 
	background: #000;
	transition: all 0.2s ease-in-out;
}

.news h2 a i {
	display: flex;
    align-items: center;
    width: 16px;
    height: 8px;
    background: url(../img/arrow-right.svg) no-repeat center;
	background-size: contain;
    transition: all 0.2s ease-in-out;
	filter: brightness(0) invert(1);
}

.news h2 a:hover {
	background: #ffce79cc;
	color: #3A3A55;
}

.news h2 a:hover i {
	filter: none;
}
	


/* --- Owl Carousel 2 Setup Overrides --- */
.news-container {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}

.news-slider {
	position: relative;
}

.news-slider .item {
	display: flex;
	justify-content: center;
	flex-direction: column;
	color: #3A3A55;
	background: none;
	padding: 0;
	border: 0.5px solid #ffffff20;
	border-radius: 0 !important;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: none;
	position: relative;
	overflow: hidden;
}

.news-slider .item {
	cursor: pointer;
}

.news-slider .news-buttonbox {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10; 
    text-decoration: none;
}

.news-slider .item .news-box:after {
	content: '';
	position: absolute;
	width: 120%;
	height: 90px;
	background: #ffce79cc;
	transform: rotate(-3deg);
	left: -10%;
	bottom: -40%;
	opacity: 0;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.news-slider .item:hover .news-box:after {
	opacity: 1;
	bottom: -12%;
}

.news-slider .item .news-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	min-height: 210px;
	aspect-ratio: 38 / 21;
	overflow: hidden;
	position: relative;
}

.news-slider .item .news-img i {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
}

.news-slider .item .news-img i img {
	height: 100%;
	object-fit: cover;
}


.news-slider .item .news-box {
	display: flex;
	flex-direction: column;
	gap: 15px;
	background: #FFEED1;
	padding: 25px;
	min-height: 200px;
	overflow: hidden;
	z-index: 2;
	position: relative;
}

.news-slider .item h3 {
	font-size: 1.3125em;
	line-height: 1.2;
	letter-spacing: -0.01em;
	font-weight: 600;
	font-variation-settings: "wdth" 600;
}

.news-slider .item .news-date {
	font-size: 0.875em;
	font-weight: 300;
	letter-spacing: 0;
}

.news-slider .item .news-button-more {
	display: flex;
	margin-top: auto;
	justify-content: flex-end;
	font-size: 0.75em;
	font-weight: 300;
	letter-spacing: 0;
	gap: 5px;
	transition: all 0.2s ease-in-out;
	min-height: 50px;
	align-items: flex-end;
	z-index: 3;
}

.news-slider .item .news-button-more i {
	display: flex;
	align-items: center;
	width: 24px;
	height: 12px;
	background: url("../img/arrow-right.svg") no-repeat center;
	background-size: contain;
	transition: all 0.2s ease-in-out;
}


/* Directional Arrows Layout Rules */
.news-slider .owl-nav button.owl-prev,
.news-slider .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #FFCE78 !important;
	color: #fff !important;
	width: 40px;
	height: 60px;
	border-radius: 50% !important;
	font-size: 18px !important;
	line-height: 42px !important;
	transition: background 0.3s ease;
}

.news-slider .owl-nav button.owl-prev:hover,
.news-slider .owl-nav button.owl-next:hover {
	background: #3A3A55 !important;
}

.news-slider .owl-nav button.owl-prev {
	left: -65px;
}

.news-slider .owl-nav button.owl-next {
	right: -65px;
}

/* Dots Controls System Style Integration */
.news-slider .owl-dots {
	display: none;
}

.owl-theme .owl-nav {
	margin-top: 0;
}


.news-slider .owl-dots .owl-dot span {
	background: #ccc !important;
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	border-radius: 50%;
	display: inline-block;
	transition: background 0.3s ease, transform 0.3s ease;
}

.news-slider .owl-dots .owl-dot.active span {
	background: #FFCE78 !important;
	transform: scale(1.2);
}

#news_sidebox {
	position: fixed;
	z-index: 3;
	bottom: 15vh;
	right: 0;
	width: 24vw;
	max-width: 500px;
	min-width: 300px;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-left: 8px solid #DEA33E;
	padding: 12px 20px 12px 30px;
	font-size: 16px;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-weight: 200;
	opacity: 0;
	transform: translateX(100px);
	pointer-events: auto;
}

#news_sidebox .coming_event {
	display: none;
}

#news_sidebox .coming_event>div {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.news_sidebox_title {
	display: flex;
	width: 100%;
	font-size: 0.875em;
	font-weight: 300;
	padding-bottom: 8px;
	border-bottom: 0.5px solid #fff;
	letter-spacing: 0.1em;
	position: relative;
}

.coming-event-item .evt_year,
.coming-event-item .evt_artist2,
.coming-event-item .evt_details,
.coming-event-item ul {
	display: none;
}

.coming-event-item .evt_date_place {
	margin-bottom: 8px;
	font-size: 0.75em;
	line-height: 1.25;
}

.coming-event-item .evt_artist1 {
	font-family: "Playfair Display", serif;
	font-weight: 300;
	font-variation-settings: "wdth"300;
	font-size: 1em;
	letter-spacing: -0.01em;
	margin-bottom: 12px;
}

.coming-event-item .evt_details.redirect {
	display: block;
}

.coming-event-item .evt_details a {
	display: inline-block;
	padding: 3px 8px;
	border: 0.5px solid #ffffff80;
	font-size: 0.625em;
	font-weight: 300;
	color: #fff;
	cursor: pointer;
	transition: all 0.5s ease;
	opacity: 0.75;	
}

.coming-event-item .evt_details a:hover {
	background: #fff;
	color: #3A3A55;
	opacity: 1;
}

.menu-bgline {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	opacity: 0.3;
	position: absolute;
	bottom: 42vh;
	left: 0;
	pointer-events: none;
	z-index: 2;
}

.menu-bgline svg {
	position: absolute;
	width: 100%;
	min-width: 1600px;
	height: auto;
	margin-top: -5%;
}

svg {
	width: 100%;
	height: auto;
}

.draw-path {
	fill: none;
}

.news-slider .owl-nav button.owl-prev,
.news-slider .owl-nav button.owl-next {
	background: none !important;
	color: #FFCE78 !important;
	font-size: 0 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px !important;
	height: 60px !important;
}

.news-slider .owl-nav button.owl-prev:hover,
.news-slider .owl-nav button.owl-next:hover {
	background: none !important;
}

.news-slider .owl-nav button.owl-prev:after,
.news-slider .owl-nav button.owl-next:after {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	border: 2px solid #FFCE78;
	border-width: 2px 0 0 2px;
}

.news-slider .owl-nav button.owl-prev:after {
	transform: rotate(-45deg);
}

.news-slider .owl-nav button.owl-next:after {
	transform: rotate(135deg);
}


.news-slider .owl-nav button.owl-prev {
	left: -40px;
}

.news-slider .owl-nav button.owl-next {
	right: -40px;
}

@media only screen and (max-width: 1000px) {
	.menu-bgline svg {
		min-width: 1200px;
	}
	
	.scroll-title-text b:nth-child(1) {
		display: none;
	}
	
	.scroll-title-text b:nth-child(2) {
		display: block;
	}
	
	.scroll-ani {
		transform: rotate(180deg);
	}
	
	.scroll-ani b {
		display: flex;
	}
	
	.arrow-down {
		display: none;
	}
	
	.scroll-ani i {
		height: 125px;
	}
	
	.scroll-ani:after{
		width: 1px;
		height: 85%;
		animation: elasticusMobile 2s cubic-bezier(0.2, 0.2, 0, 0) infinite;
	}

	.news-slider {
		width: 100% !important;
		/* Expands widths gracefully on smaller monitors */
	}

	.news>div {
		padding: 80px 50px;
		overflow: hidden;
	}
}

@media only screen and (max-width: 768px) {

	.loader-content .conductor_name {
		font-size: 36px;
	}

	.loader-content .fadein_logo {
		max-width: 120px;
		max-height: 120px;
		margin: 0;
	}

	.menu-bgline {
		top: 0;
		bottom: auto;
		height: 100vh;
	}

	.main-menu ul {
		gap: 5vh;
	}

	.main-menu a {
		font-size: 2.125em;
	}

	.content-box {
		padding-bottom: 23vh;
	}

	.menu-bgline svg {
		margin: -15vh -5vw 0 0;
		min-width: 1100px;
		transform: rotate(293deg);
	}
	
	.news {
		padding: 0;
	}

	.news>div {
		padding: 50px;
	}

	.news-bgcirle {
		display: none;
	}
	
	.news-slider .item h3 {
		font-weight: 600;
		font-size: 1em;
	}
	
	.news-slider .item .news-date {
		font-size: 0.75em;
	}

}

@media only screen and (max-width: 500px) {
	canvas {
		height: 90vh;
	}

	.loader-content {
		flex-direction: column;
		gap: 0;
		margin-bottom: 5vh;
	}

	.loader-content .fadein_logo {
		max-width: 140px;
		max-height: 140px;
		margin: 0;
	}


	#news_sidebox {
		font-size: 3.5vw;
		border-left: 5px solid #DEA33E;
		padding: 10px 20px;
		width: 100%;
		max-width: 62vw;
		min-width: 50vw;
	}

	#main-logo span {
		width: 28vw;
		padding: 10px;
	}

	.canvas-container:after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: #000000;
		background: radial-gradient(circle, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 100%);
	}

	.news>div {
		padding: 50px 30px 150px;
	}

	.news-slider .owl-nav button.owl-prev:after, .news-slider .owl-nav button.owl-next:after {
		width: 20px;
		height: 20px;
	}

	.news-slider .owl-nav button.owl-prev {
		left: -30px;
	}

	.news-slider .owl-nav button.owl-next {
		right: -30px;
	}

	.news-slider .item h3 {
		font-size: 1.25em;
	}

	.news-slider .item .news-date {
		font-size: 0.875em;
	}

}
/***** Index ends *****/

