/* Genel reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Header ve nav */
.topbar {
  background-color: #333;
  color: #fff;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav {
  list-style: none;
  display: flex; /* yan yana */
  gap: 20px;     /* aralarında boşluk */
}

.nav li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav li a:hover {
  background-color: #555; /* üzerine gelince */
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-text {
  max-width: 500px;
}

.hero-img {
  max-width: 250px;
  border-radius: 10px;
}

/* Diğer bölümler */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.projects .project {
  margin-bottom: 20px;
}

/* Footer */
.site-footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
}
