/* Genel Ayarlar */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f5f5;
  color: #222;
  text-align: center;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  padding: 12px 0;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #0056b3;
}

.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #0056b3;
}

.nav-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: white;
    margin-top: 10px;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }
}


.lang-btn {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0056b3;
  background-color: white;
  border: 2px solid #0056b3;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background-color: #0056b3;
  color: white;
  transform: scale(1.05);
}

.lang-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.3);
}

/* Ana Sayfa / Hero Bölümü */
.hero {
  max-width: 700px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
}

.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid #0056b3;
  object-fit: cover;
  margin-bottom: 20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Tanıtım Paragrafı */
.intro {
  max-width: 600px;
  margin: 0 auto 20px auto;
  padding: 0 16px;
  font-size: 1.05rem;
  color: #333;
}

/* Butonlar */
.button-group {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 8px;
  transition: background-color 0.3s ease;
  font-size: 0.95rem;
}

.btn.primary {
  background-color: #0056b3;
  color: #fff;
}

.btn.primary:hover {
  background-color: #003e82;
}

.btn.secondary {
  background-color: #444;
  color: #fff;
}

.btn.secondary:hover {
  background-color: #222;
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
  .navbar ul li {
    margin: 10px;
  }

  .intro {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
  }
}

/* Sayfa İçeriği */
.content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 16px;
  text-align: left;
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  color: #0056b3;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.section ul {
  padding-left: 20px;
}

.section li {
  margin-bottom: 12px;
}

.project-card {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Proje */

.project-card h3 {
  color: #0056b3;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

.contact-info {
  margin-bottom: 30px;
  font-size: 1.05rem;
  color: #333;
}

.contact-info p {
  margin: 10px 0;
}

.email {
  font-family: monospace;
  color: #0056b3;
  user-select: all;
}

.footer {
  background-color: #f0f0f0;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 60px;
}