html {
  font-size: 14px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

.navbar {
  background-color: #191620;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 50px;
}


/* Ürün Kartları Stili */
.card-image-container {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 2px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-card:hover .card-image-container {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 25px;
  text-align: center;
}

.overlay-text h5 {
  font-size: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-bottom: 15px;
}

.overlay-text li {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Navbar Link Düzenlemeleri */
.navbar .nav-link {
  color: white !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar .nav-link:hover {
  color: #6ab7ae !important;
  transform: translateY(-2px);
}

.navbar .nav-link:hover,
    .navbar .nav-link.active {
      color: #25D366 !important;
    }


/* Footer Stili */
footer {
  background-color: #191620;
  color: #ccc;
  padding: 40px 0;
  margin-top: 80px;
}

footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #6ab7ae;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

/* Hero Carousel Güncellemeleri */
.hero-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-carousel .carousel-inner {
  width: 100%;
}

.hero-carousel img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero-carousel {
    max-height: 60vh;
  }
  
  .hero-carousel img {
    max-height: 60vh;
  }
  
  .card-image-container {
    height: 300px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero-carousel {
    max-height: 75vh;
  }
  
  .hero-carousel img {
    max-height: 75vh;
  }
}

/* Diğer Elementler için Responsive Ayarlar */
@media (max-width: 575px) {
  .navbar-brand img {
    height: 40px;
  }
  
  .overlay-text {
    padding: 15px;
  }
  
  .overlay-text h5 {
    font-size: 1.2rem;
  }
}

/* Kartlar için Ekstra Responsive */
@media (max-width: 991px) {
  .card-image-container {
    height: 350px;
  }
}