/* ========================================
   GALLERY SLIDER SECTION - Kaydırılabilir Fotoğraflar
   ======================================== */

.gallery-slider-section {
	width: 100%;
	background: transparent;
	padding: 0 !important;
	margin: 0 !important;
	margin-top: 0 !important;
	padding-top: 0 !important;
	overflow: visible;
	position: relative;
	z-index: 1;
}

.gallery-slider-section .container,
.gallery-slider-section .container-fluid {
	padding: 0 !important;
	margin: 0 !important;
}

.gallery-container {
	position: relative;
	width: 100%;
	min-height: 56.25vw; /* 16:9 oran için yüksekliği hesapla */
	height: 70vh;
	max-height: 900px;
	overflow: hidden;
	background: #000;
	margin: 0 !important;
	padding: 0 !important;
}

/* Gallery Wrapper ve Slides */
.gallery-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.gallery-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.gallery-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	opacity: 0;
	transform: translateX(100%) scale(0.95);
	transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.8s ease;
}

.gallery-slide.active {
	opacity: 1;
	transform: translateX(0) scale(1);
	animation: slideFadeIn 0.8s ease;
}

.gallery-slide.prev {
	transform: translateX(-100%) scale(0.9);
	opacity: 0;
}

@keyframes slideFadeIn {
	0% {
		opacity: 0;
		transform: translateX(20%) scale(0.98);
	}
	60% {
		opacity: 1;
		transform: translateX(-3%) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

.gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Navigation Buttons */
.gallery-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-nav-btn:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn.gallery-prev {
	left: 30px;
}

.gallery-nav-btn.gallery-next {
	right: 30px;
}

/* Dot Indicators */
.gallery-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 12px;
}

.gallery-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.gallery-dot:hover {
	background: rgba(255, 255, 255, 0.8);
}

.gallery-dot.active {
	background: #FF6B35;
	border-color: white;
	transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
	.gallery-container {
		height: 450px;
	}

	.gallery-nav-btn {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}

	.gallery-nav-btn.gallery-prev {
		left: 20px;
	}

	.gallery-nav-btn.gallery-next {
		right: 20px;
	}
}

@media (max-width: 992px) {
	.gallery-container {
		height: 400px;
	}

	.gallery-nav-btn {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.gallery-nav-btn.gallery-prev {
		left: 15px;
	}

	.gallery-nav-btn.gallery-next {
		right: 15px;
	}
}

@media (max-width: 768px) {
	.gallery-container {
		height: 300px;
	}

	.gallery-nav-btn {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}

	.gallery-nav-btn.gallery-prev {
		left: 10px;
	}

	.gallery-nav-btn.gallery-next {
		right: 10px;
	}

	.gallery-dots {
		bottom: 20px;
		gap: 8px;
	}

	.gallery-dot {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 480px) {
	.gallery-container {
		height: 200px;
	}

	.gallery-nav-btn {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}

	.gallery-nav-btn.gallery-prev {
		left: 5px;
	}

	.gallery-nav-btn.gallery-next {
		right: 5px;
	}

	.gallery-dots {
		bottom: 15px;
		gap: 6px;
	}

	.gallery-dot {
		width: 8px;
		height: 8px;
	}
}
