﻿/* style.css */

/* Genel Reset ve Box Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Genel Sayfa Stili */
body {
  background-color: #f4f7f6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Ana Container */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
}

/* Başlıklar */
h1, h2, h3, h4 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

/* Arama Formu */
.search-form {
  margin: 2rem auto;
  max-width: 700px;
  padding: 0 1rem;
}

.search-form .input-group {
  border: 2px solid #2c3e50;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-form .form-control {
  font-size: 1.5rem;
  padding: 1.2rem 1.5rem;
  border: none;
}

.search-form .form-control:focus {
  box-shadow: none;
}

.search-form .btn {
  font-size: 1.5rem;
  padding: 1.2rem 1.5rem;
  background-color: #2c3e50;
  border: none;
  color: #fff;
  transition: background-color 0.3s ease;
}

.search-form .btn:hover {
  background-color: #34495e;
}

/* Arama Sonuçları Listesi */
.results-list .list-group-item {
  font-size: 1.1rem;
  padding: 1rem;
  border: none;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease;
}

.results-list .list-group-item:hover {
  background-color: #f1f1f1;
}

/* Popüler Sorular Bölümü */
.popular-questions {
  margin: 2rem auto;
  max-width: 700px;
}

.popular-questions h4 {
  margin-bottom: 1rem;
}

/* Genel Link Stili */
a {
  text-decoration: none;
  color: #2c3e50;
}

a:hover {
  color: #34495e;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
  .search-form .form-control {
    font-size: 1.2rem;
    padding: 1rem;
  }
  .search-form .btn {
    font-size: 1.2rem;
    padding: 1rem;
  }
}
