/* Esnaflar Sayfası CSS */

/* Hero Section */
.esnaflar-hero {
  background: linear-gradient(135deg, #f0f8f7 0%, #e8f8f7 100%);
  padding: 100px 0 80px 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 183, 178, 0.1);
  transition: transform 0.3s ease;
  min-width: 150px;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #00b7b2;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Kategori Filtreleri */
.category-filters {
  padding: 40px 0;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}

.filters-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.filters-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  color: #666;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #00b7b2;
  color: #00b7b2;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #00b7b2;
  border-color: #00b7b2;
  color: #ffffff;
}

/* Esnaflar Grid */
.esnaflar-grid {
  padding: 60px 0;
  background: #f8fffe;
}

.esnaflar-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.esnaf-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.esnaf-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.esnaf-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.esnaf-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.esnaf-card:hover .esnaf-image img {
  transform: scale(1.05);
}

.esnaf-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #00b7b2;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.esnaf-content {
  padding: 25px;
}

.esnaf-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.esnaf-address {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.esnaf-address::before {
  content: '\F3C8';
  font-family: 'bootstrap-icons';
  margin-right: 5px;
  color: #00b7b2;
}

.esnaf-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #ffc107;
  font-size: 0.9rem;
}

.rating-text {
  color: #666;
  font-size: 0.85rem;
}

.esnaf-features {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.feature-tag {
  background: #f0f8f7;
  color: #00b7b2;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.esnaf-actions {
  display: flex;
  gap: 10px;
}

.esnaf-actions .btn {
  flex: 1;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .esnaflar-hero {
    padding: 80px 0 60px 0;
    min-height: 50vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .hero-stats {
    gap: 40px;
    margin-top: 40px;
  }
  
  .stat-item {
    padding: 25px 20px;
    min-width: 120px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .filter-buttons {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .esnaflar-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .esnaf-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .esnaflar-hero {
    padding: 60px 0 40px 0;
    min-height: 40vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 30px;
    margin-top: 30px;
  }
  
  .stat-item {
    padding: 20px 15px;
    min-width: 100px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .esnaf-content {
    padding: 20px;
  }
}
