/* Genel Ayarlar */
body {
  background-color: #f3f4f6; /* bg-gray-100 */
  color: #1f2937; /* text-gray-800 */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header */
.header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* rgba formatına çevrildi */
  position: sticky;
  top: 0;
  z-index: 50;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700; /* font-bold */
  color: #2563eb; /* blue-600 */
  text-decoration: none;
}

/* Menü */
.desktop-menu {
  display: flex;
  gap: 1.5rem; /* space-x-6 */
  align-items: center;
}

.menu-link {
  color: #374151; /* gray-700 */
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: #2563eb; /* blue-600 */
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-btn {
  background: none;
  border: none;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
}

.dropdown-btn:hover {
  color: #2563eb;
}

.dropdown-icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.dropdown-content {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* rgba formatı */
  border-radius: 0.375rem;
  min-width: 160px;
  display: none;
  flex-direction: column;
  z-index: 100;
}

.dropdown-content.show {
  display: flex;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #eff6ff; /* blue-50 */
  color: #2563eb;
}
