/* Responsive Carousel Styles */
.wrapper-bg-video {
	width: 100%;
	position: relative;
	background-color: #000;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

/* Navigation styling fixes */
.site-header {
	background-color: rgba(0, 0, 0, 0.7) !important;
	position: fixed;
	width: 100%;
	z-index: 100;
	transition: background-color 0.3s ease, transform 0.4s ease;
}

.site-header.affix {
	background-color: rgba(0, 0, 0, 0.9) !important;
}

/* Hide header on scroll down */
.site-header.nav-hidden {
	transform: translateY(-100%);
}

.site-header .navigation-menu {
	padding: 10px 0;
}

.width-logo {
	display: flex;
	align-items: center;
}

.width-logo img {
	max-height: 65px;
	width: auto;
}

.width-navigation {
	display: flex;
	align-items: center;
}

.width-navigation ul.menu-main-menu > li > a {
	padding: 15px;
	color: white;
	font-weight: 500;
}

.width-navigation ul.menu-main-menu > li > a:hover {
	color: #FFA500;
}

@media (max-width: 768px) {
	.width-logo img {
		max-height: 50px;
	}
	
	.site-header .navigation-menu {
		padding: 5px 0;
	}
	
	.menu-mobile-effect {
		padding: 15px;
	}
}

/* Subtle overlay - removed for full transparency */
.wrapper-bg-video::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3); /* Added subtle darkening overlay */
	z-index: 1;
}

.carousel-container {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.carousel {
	position: relative;
	height: 100%;
	width: 100%;
}

.carousel-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.7s ease-in-out;
	display: none;
	background-color: rgba(0, 0, 0, 0.2);
}

.carousel-item.active {
	opacity: 1;
	position: relative;
	display: block;
}

.carousel-item picture {
	display: block;
	width: 100%;
	height: 100%;
}

.carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: filter 0.5s ease-in-out;
	will-change: filter;
}

/* Progressive loading effect */
.carousel-item.loading img {
	filter: blur(10px);
	transform: scale(1.05);
}

/* Loading indicator */
.carousel-item::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
	animation: spin 1s infinite linear;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 5;
}

.carousel-item.loading::before {
	opacity: 1;
}

@keyframes spin {
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Content slider styles */
.content-slider {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	z-index: 10;
	width: 90%;
	max-width: 800px;
	padding: 30px;
	background-color: transparent; /* Removed background color */
	backdrop-filter: none; /* Removed blur effect */
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.5); /* Added text shadow for readability */
}

.content-slider .tagline {
	font-size: 25px;
	margin-bottom: 10px;
	font-weight: 300;
}

.content-slider h2 {
	font-size: 80px;
	margin-bottom: 25px;
	font-weight: 700;
}

.content-slider .btn-slider {
	display: inline-block;
	padding: 12px 30px;
	background-color: #FFA500;
	color: white;
	text-decoration: none;
	font-weight: 600;
	border-radius: 30px;
	transition: background-color 0.3s, transform 0.3s;
	font-size: 17px;
}

.content-slider .btn-slider:hover {
	background-color: #FF8C00;
	transform: translateY(-3px);
}

/* Carousel controls */
.carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 18px;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.3s;
}

.carousel-control:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.carousel-control.prev {
	left: 15px;
}

.carousel-control.next {
	right: 15px;
}

/* Carousel indicators */
.carousel-indicators {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background-color 0.3s;
}

.indicator.active {
	background-color: white;
}

/* Mobile optimization */
@media (max-width: 768px) {
	.wrapper-bg-video {
		height: 100vh;
		min-height: 500px;
	}
	
	.content-slider {
		padding: 15px;
		width: 95%;
	}
	
	.content-slider .tagline {
		font-size: 17px;
		margin-bottom: 5px;
	}
	
	.content-slider h2 {
		font-size: 50px;
		margin-bottom: 15px;
	}
	
	.content-slider .btn-slider {
		padding: 8px 20px;
		font-size: 15px;
	}
	
	.carousel-control {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
	
	.carousel-indicators {
		bottom: 10px;
	}
	
	.indicator {
		width: 8px;
		height: 8px;
	}
}

/* Tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
	.wrapper-bg-video {
		height: 100vh;
		min-height: 550px;
	}
	
	.content-slider {
		padding: 20px;
		width: 80%;
	}
	
	.content-slider .tagline {
		font-size: 21px;
	}
	
	.content-slider h2 {
		font-size: 60px;
		margin-bottom: 20px;
	}
} 