/* base.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background-color: #111;
    color: #f0f0f0;
}

a {
    color: inherit;
    text-decoration: none;
}
.site-header {
  background-color: #111;
  padding: 15px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin-right: 30px;
  white-space: nowrap;
}

.kategori-menu {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.kategori-menu a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
}

.kategori-menu a:hover {
  color: orange;
}

.arama-formu-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.arama-formu-header input[type="text"] {
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background-color: #2b2b2b;
  color: #fff;
}

.arama-formu-header button {
  padding: 8px 14px;
  background-color: #ff4500;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.arama-formu-header button:hover {
  background-color: #ffa500;
}

