body {
  /*
		  background-color: #FF3CAC;
		  background-image: linear-gradient(90deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);*/
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 100%;
  min-height: 100vh;
  color: #2c3e50;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Genel yazı renkleri */
h1, h2, h3, h4, h5, h6 {
  color: #34495e;
  font-weight: 600;
}

p {
  color: #2c3e50;
}

/* Navbar stilleri */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand img {
  max-height: 40px;
}

.nav-link {
  color: #34495e !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #667eea !important;
}

.nav-item.active .nav-link {
  color: #667eea !important;
  font-weight: 600;
}

/* Kart stilleri - daha yuvarlak köşeler ve azaltılmış boşluklar */
.card {
  border-radius: 20px !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-img-top {
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
}

.card-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Buton stilleri - Modern tasarım */
.btn {
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn:active {
  transform: translateY(-1px);
}

/* Başarı butonu - Yeşil gradient */
.btn-success {
  background: linear-gradient(45deg, #00b894, #00cec9);
  color: white;
  border: 2px solid transparent;
}

.btn-success:hover {
  background: linear-gradient(45deg, #00a085, #00b894);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

/* Açık buton - Beyaz şeffaf */
.btn-light {
  background: rgba(255, 255, 255, 0.9);
  color: #2c3e50;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 1);
  color: #2c3e50;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* İkincil buton - Gri gradient */
.btn-secondary {
  background: linear-gradient(45deg, #636e72, #74b9ff);
  color: white;
  border: 2px solid transparent;
}

.btn-secondary:hover {
  background: linear-gradient(45deg, #5f6a6e, #636e72);
  color: white;
  box-shadow: 0 8px 25px rgba(99, 110, 114, 0.4);
}

/* Bilgi butonu - Mavi gradient */
.btn-info {
  background: linear-gradient(45deg, #0984e3, #74b9ff);
  color: white;
  border: 2px solid transparent;
}

.btn-info:hover {
  background: linear-gradient(45deg, #0873c4, #0984e3);
  color: white;
  box-shadow: 0 8px 25px rgba(9, 132, 227, 0.4);
}

/* Uyarı butonu - Turuncu gradient */
.btn-warning {
  background: linear-gradient(45deg, #fdcb6e, #e17055);
  color: white;
  border: 2px solid transparent;
}

.btn-warning:hover {
  background: linear-gradient(45deg, #f39c12, #fdcb6e);
  color: white;
  box-shadow: 0 8px 25px rgba(253, 203, 110, 0.4);
}

/* Tehlike butonu - Kırmızı gradient */
.btn-danger {
  background: linear-gradient(45deg, #e17055, #d63031);
  color: white;
  border: 2px solid transparent;
}

.btn-danger:hover {
  background: linear-gradient(45deg, #d63031, #e17055);
  color: white;
  box-shadow: 0 8px 25px rgba(230, 112, 85, 0.4);
}

/* Birincil buton - Mor gradient */
.btn-primary {
  background: linear-gradient(45deg, #6c5ce7, #a29bfe);
  color: white;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #5f3dc4, #6c5ce7);
  color: white;
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

/* Küçük butonlar */
.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  border-radius: 20px;
}

/* Büyük butonlar */
.btn-lg {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 30px;
}

/* Blok butonlar */
.btn-block {
  width: 100%;
  margin: 0.5rem 0;
}

/* Buton grupları */
.btn-group .btn {
  border-radius: 0;
  margin: 0;
}

.btn-group .btn:first-child {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.btn-group .btn:last-child {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

/* Devre dışı butonlar */
.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn:disabled:hover,
.btn.disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Özel buton animasyonları */
.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0,0,0,0.3);
  }
  100% {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
}

/* Buton içindeki ikonlar */
.btn svg {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: scale(1.1);
}

/* Özel buton varyantları */
.btn-outline-success {
  background: transparent;
  color: #00b894;
  border: 2px solid #00b894;
}

.btn-outline-success:hover {
  background: #00b894;
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #2c3e50;
}

.btn-outline-secondary {
  background: transparent;
  color: #636e72;
  border: 2px solid #636e72;
}

.btn-outline-secondary:hover {
  background: #636e72;
  color: white;
}

.btn-outline-info {
  background: transparent;
  color: #0984e3;
  border: 2px solid #0984e3;
}

.btn-outline-info:hover {
  background: #0984e3;
  color: white;
}

/* Buton yükleme durumu */
.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Container ve row boşluklarını azalt */
.container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.row {
  margin-bottom: 10px;
}

.col-md-3, .col-6 {
  padding: 0 7px;
}

/* Başlık stilleri */
.text-center h4 {
  color: #34495e;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 10px;
}

.text-center h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

/* HR çizgisi */
hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
  margin: 1.5rem 0;
}

/* mt-3 sınıfını özelleştir */
.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-5 {
  margin-top: 2rem !important;
}

/* br etiketlerini azalt */
br {
  margin: 0.5rem 0;
}

	.average-rating {
  position: relative;
  appearance: none;
  color: transparent;
  display: inline-block;
  font-size: 15px;
}
	.average-rating::before {
  --percent: calc(5/5*100%);
  content: '★★★★★';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: rgba(0,0,0,0.2);
  background: linear-gradient(90deg, gold var(--percent), rgba(0,0,0,0.2) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
	
	/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 801px) {
  h4 {
    font-size: 25px;
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 800px) {
  h4 {
    font-size: 12px;
  }
}

/* Modern 3D Slider Styles */
.modern-slider-container {
  position: relative;
  width: 100%;
  height: 400px;
  perspective: 1000px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modern-slider {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%) rotateY(-15deg) scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  overflow: hidden;
  pointer-events: none;
}

.modern-slide.active {
  opacity: 1;
  transform: translateX(0) rotateY(0) scale(1);
  z-index: 2;
  pointer-events: auto;
}

.modern-slide.prev {
  opacity: 0.7;
  transform: translateX(-100%) rotateY(15deg) scale(0.8);
  z-index: 1;
  pointer-events: none;
}

.modern-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.modern-slide:hover img {
  transform: scale(1.05);
}

.modern-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.modern-slide.active .modern-slide-content {
  transform: translateY(0);
}

.modern-slide-content h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.modern-slide-content p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.modern-slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.modern-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-slider-btn:hover {
  background: rgba(255,255,255,1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.modern-slider-btn.prev {
  left: 20px;
}

.modern-slider-btn.next {
  right: 20px;
}

.modern-slider-btn svg {
  width: 20px;
  height: 20px;
  fill: #333;
}

.modern-slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.modern-indicator {
  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;
}

.modern-indicator.active {
  background: rgba(255,255,255,1);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modern-slider-container {
    height: 250px;
  }
  
  .modern-slide-content h3 {
    font-size: 18px;
  }
  
  .modern-slide-content p {
    font-size: 14px;
  }
  
  .modern-slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .modern-slider-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .modern-slider-indicators {
    bottom: 15px;
  }
  
  .modern-indicator {
    width: 10px;
    height: 10px;
  }
}

/* Loading Animation */
.modern-slider-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Slide Transition Effects */
.modern-slide.slide-in {
  animation: slideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-slide.slide-out {
  animation: slideOut 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%) rotateY(-15deg) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0) scale(1);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0) rotateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(-100%) rotateY(15deg) scale(0.8);
  }
}
