/* ==========================================================================
   Base Styles for ARCMASTER Slider
   ========================================================================== */
.arcmaster-slider-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.arcmaster-swiper-container {
	width: 100%;
	height: 100%;
	opacity: 0; /* Prevents FOUC, fades in via JS */
	transition: opacity 0.5s ease;
	/* Hardware acceleration */
	transform: translate3d(0,0,0);
}

.arcmaster-swiper-container .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.arcmaster-swiper-container .swiper-slide figure {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

.arcmaster-swiper-container .swiper-slide img,
.arcmaster-swiper-container .swiper-slide video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Hardware acceleration */
	transform: translateZ(0);
	backface-visibility: hidden;
}

.arcmaster-video-container {
	position: relative;
	width: 100%;
	height: 100%;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.arcmaster-video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ==========================================================================
   Themes (6 Modern Themes)
   ========================================================================== */

/* Theme 1 - Minimalist */
.theme-1 .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
}
.theme-1 .swiper-pagination-bullet-active {
	background: #fff;
}
.theme-1 .swiper-button-next, .theme-1 .swiper-button-prev {
	color: #fff;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Theme 2 - Dark Mode */
.theme-2 {
	background-color: #111;
	border: 1px solid #333;
}
.theme-2 .swiper-pagination-bullet {
	background: #555;
	width: 12px;
	height: 12px;
}
.theme-2 .swiper-pagination-bullet-active {
	background: #ff5e57;
}
.theme-2 .swiper-button-next, .theme-2 .swiper-button-prev {
	color: #ff5e57;
}

/* Theme 3 - Neumorphism */
.theme-3 {
	border-radius: 20px;
	box-shadow: 10px 10px 20px #bebebe, -10px -10px 20px #ffffff;
}
.theme-3 .swiper-button-next, .theme-3 .swiper-button-prev {
	background: #e0e5ec;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	color: #333;
	box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff;
}
.theme-3 .swiper-button-next:after, .theme-3 .swiper-button-prev:after {
	font-size: 20px;
}

/* Theme 4 - Glassmorphism */
.theme-4 .swiper-button-next, .theme-4 .swiper-button-prev {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	color: #fff;
}

/* Theme 5 - Corporate */
.theme-5 .swiper-pagination-bullet {
	border-radius: 0;
	width: 20px;
	height: 4px;
	background: rgba(255,255,255,0.4);
}
.theme-5 .swiper-pagination-bullet-active {
	background: #007bff;
}
.theme-5 .swiper-button-next, .theme-5 .swiper-button-prev {
	color: #007bff;
}

/* Theme 6 - Elegant */
.theme-6 .swiper-button-next, .theme-6 .swiper-button-prev {
	color: #d4af37; /* Gold */
	text-transform: uppercase;
	letter-spacing: 2px;
}
.theme-6 .swiper-pagination-bullet-active {
	background: #d4af37;
}

/* ==========================================================================
   Templates (Aspect Ratios and Layouts)
   ========================================================================== */

/* Template 1 - Full Width (16:9) */
.template-1 {
	aspect-ratio: 16/9;
}

/* Template 2 - Carousel (Height constraint) */
.template-2 {
	height: 400px;
}

/* Template 3 - Square */
.template-3 {
	aspect-ratio: 1/1;
	max-width: 600px;
}

/* Template 4 - Portrait */
.template-4 {
	aspect-ratio: 9/16;
	max-width: 400px;
}
