/*===========================================*/
/*	DESKTOP LAYOUT 
/*===========================================*/

/* Fixed background and scrollable content */
.nc-main .full-wh {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100vh !important;
	z-index: 1;
}

.nc-main--bgoverlay {
	position: relative !important;
	z-index: 2;
	background: transparent !important;
	min-height: 100vh;
}

.nc-main--pagewrapper {
	position: relative;
	z-index: 3;
	background: transparent;
}

/* Ensure content has enough height for scrolling */
.scrollable-content {
	/* min-height: 200vh; */
	/* padding-bottom: 10px; */
}

/* Restaurant section styling */
.restaurants-section, .hotels-section, .events-section, .items-section  {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	margin-top: 10vh;
	padding: 60px 40px 40px;
	box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}

.restaurants-section h3, .hotels-section h3, .events-section h3, .items-section h3 {
	color: #2c3e50 !important;
}

.restaurants-section p, .hotels-section p, .events-section p, .items-section p {
	color: #7f8c8d !important;
}

/* Navigation Controls */
.nc-navigation-controls {
	position: fixed;
	top: 30px;
	left: 30px;
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 15px;
    width: -webkit-fill-available;
	justify-content: space-between;
}

.nc-back-button {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
	opacity: 0.8;
}

.nc-back-button:hover {
	background: rgba(255, 255, 255, 0.25);
	opacity: 1;
	transform: translateX(-2px);
	color: white;
	text-decoration: none;
}

.nc-back-button i {
	font-size: 40px;
	font-weight: bold;
}

/* Adjust menu trigger position */
.nc-menutrigger {
	position: relative !important;
	top: auto !important;
	left: auto !important;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
	.nc-navigation-controls {
		top: 20px;
		left: 20px;
		gap: 10px;
		width: 100%;
		justify-content: space-between;
	}
	
	.nc-back-button {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
}

/* Intro section adjustments for scrolling */
.nc-intropage {
	min-height: 100vh;
	position: relative;
	flex-direction: column;
}

/* Ensure background slider stays fixed */
.bgslider {
	position: absolute !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.nc-logo {
    position: relative;
    margin-bottom: 60px;
	padding: 0px;
}

@media (min-width: 1200px) {
	

}
@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media (min-width: 992px) {
		
}

/*===========================================*/
/*	MOBILE & TABLET COMMON
/*===========================================*/
@media (min-width: 200px) and (max-width: 991px) {
	/* Mobile adjustments for fixed background */
	.restaurants-section, .hotels-section, .events-section, .items-section {
		margin-top: 50vh;
		padding: 40px 20px;
		border-radius: 15px;
	}
	
	.scrollable-content {
		min-height: 150vh;
	}
}


/*===========================================*/
/*	TABLET
/*===========================================*/
@media (min-width: 768px) and (max-width: 991px) {
	.restaurants-section, .hotels-section, .events-section, .items-section {
		padding: 35px 30px 30px;
		margin-top: 10vh;
	}
}


/*===========================================*/
/*	MOBILE
/*===========================================*/
@media (min-width: 200px) and (max-width: 767px) {
	.nc-main .full-wh {
		height: 100vh !important;
	}
	
	.restaurants-section, .hotels-section, .events-section, .items-section {
		margin-top: 45vh;
		padding: 30px 15px;
	}
	
	.nc-logo {
		/* padding-top: 50px !important; */
	}
}

@media (min-width: 600px) and (max-width: 767px) {
	.restaurants-section, .hotels-section, .events-section, .items-section {
		padding: 35px 20px;
	}
}

@media (min-width: 480px) and (max-width: 599px) {
	.restaurants-section, .hotels-section, .events-section, .items-section {
		margin-top: 40vh;
		padding: 25px 15px;
	}
}

@media (min-width: 200px) and (max-width: 479px) {
	.restaurants-section, .hotels-section, .events-section, .items-section {
		margin-top: 35vh;
		padding: 15px 10px;
	}
	
	.scrollable-content {
		min-height: 100vh;
	}
}

.logo-second {
    width: 100px;
    margin-left: -10px;	
}

.item-meta-tags {
    display: flex;
    justify-content: center;
}


.item-meta-tags .badge {
	color: #ffc107 !important;
}