/* Ana Sayfa - Kurumsal Basit Tasarım */

.home-page-plaka {
  background-color: #f8f9fa;
}

/* Hero Section - Basit ve Kurumsal */
.home-hero-section {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 60px 0;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
}

.hero-image-wrapper img {
  transition: transform 0.2s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.02);
}

.hero-buttons .btn {
  border-radius: 6px;
  font-weight: 500;
  padding: 12px 24px;
}

.hero-buttons .btn-primary {
  background-color: #667eea;
  border-color: #667eea;
}

.hero-buttons .btn-primary:hover {
  background-color: #5568d3;
  border-color: #5568d3;
}

.hero-buttons .btn-outline-primary {
  border-color: #667eea;
  color: #667eea;
}

.hero-buttons .btn-outline-primary:hover {
  background-color: #667eea;
  border-color: #667eea;
  color: #fff;
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.feature-card {
  transition: box-shadow 0.2s ease;
  background: #fff;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.feature-icon {
  transition: transform 0.2s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.05);
}

.feature-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
}

.feature-card p {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Products Preview Section */
.products-preview-section {
  padding: 60px 0;
  background: #fff;
}

.product-preview-card {
  transition: box-shadow 0.2s ease;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.product-preview-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.product-preview-image-wrapper {
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.product-preview-image {
  transition: transform 0.3s ease;
  max-width: 100%;
  height: auto;
  display: block;
}

.product-preview-card:hover .product-preview-image {
  transform: scale(1.05);
}

.product-preview-card .card-body {
  padding: 1rem;
}

.product-preview-card h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  min-height: 3em;
}

.product-preview-card a {
  color: #212529;
  transition: color 0.2s ease;
}

.product-preview-card a:hover {
  color: #667eea;
}

.product-preview-card .btn {
  border-radius: 6px;
  font-size: 0.875rem;
  padding: 8px 16px;
}

/* Blog Preview Section */
.blog-preview-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.blog-preview-card {
  transition: box-shadow 0.2s ease;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.blog-preview-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.blog-preview-image-wrapper {
  overflow: hidden;
  background: #f8f9fa;
}

.blog-preview-card img {
  transition: transform 0.3s ease;
}

.blog-preview-card:hover img {
  transform: scale(1.05);
}

.blog-preview-card .card-body {
  padding: 1rem;
}

.blog-preview-card h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  min-height: 3em;
}

.blog-preview-card a {
  color: #212529;
  transition: color 0.2s ease;
}

.blog-preview-card a:hover {
  color: #667eea;
}

.blog-meta {
  font-size: 0.8rem;
  color: #6c757d;
}

/* CTA Section */
.cta-section {
  background: #667eea;
  padding: 60px 0;
}

.cta-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.cta-buttons .btn {
  border-radius: 6px;
  font-weight: 500;
  padding: 12px 24px;
}

.cta-buttons .btn-light {
  background: #fff;
  color: #667eea;
  border: none;
}

.cta-buttons .btn-light:hover {
  background: #f8f9fa;
}

.cta-buttons .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}

.cta-buttons .btn-outline-light:hover {
  background: #fff;
  color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
  .home-hero-section {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .features-section,
  .products-preview-section,
  .blog-preview-section,
  .cta-section {
    padding: 40px 0;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .h3 {
    font-size: 1.25rem;
  }

  .blog-preview-card img {
    height: 180px !important;
  }
  
  .product-preview-image-wrapper {
    min-height: 150px;
  }
}
