/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styling */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #0f172a 0%, #0a0f1f 100%);
  color: #e2e8f0;
  padding-top: 400px;
}

/* Sticky, dark header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent; /* Arka planı sayfa ile aynı yap */
  padding: 20px 20px;
  box-shadow: none;        /* Gölgeyi kaldır */
  border-bottom: none;     /* Çizgiyi kaldır */
  text-align: center;
  z-index: 1000;
}

/* Header text */
header h1 {
  font-size: 2.3rem;
  color: #ffffff;
  margin-bottom: 5px;
}

header p {
  font-size: 1.1rem;
  color: #cccccc;
}

/* Content container */
.container {
  max-width: 900px;
  margin: 0 auto;
}

/* Sections with dark card style */
section {
  background-color: transparent; /* Arka plan kaldırıldı */
  padding: 0;                   /* İstersen boşlukları azaltabilirsin */
  margin-bottom: 30px;          /* Alt boşluk kalsın */
  border-radius: 0;             /* Kutu köşeleri düz */
  box-shadow: none;             /* Gölge kaldırıldı */
}

/* Section titles */
section h2, section h3 {
  margin-bottom: 15px;
  color: #f0f0f0;
}

/* About section text */
.about p {
  margin-bottom: 15px;
}

/* Skills section with darker pills */
.skills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.skills li {
  background-color: #2c2c2c;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.95rem;
  color: #e0e0e0;
}

/* Projects list */
.projects ul {
  list-style: disc;
  padding-left: 20px;
}

.projects li {
  margin-bottom: 15px;
}

/* Contact info */
.contact p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact a {
  color: #6fa3ff;
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  color: #999;
}