/* Genel Stil */
body {
  font-family: monospace;
  background: #fafafa;
  color: #222;
  text-align: center;
  word-break: break-word;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20%;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 5px;
}

header .logo {
  font-size: 22px;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: black;
  font-size: 14px;
}


/* Responsive for mobile */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 10px 5%;
  }

  .header-left {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  nav a {
    font-size: 16px;
  }
}

main {
  flex: 1;
}

/* Profil Bölümü */
.profile {
  margin: 40px auto;
  max-width: 800px;
}

.profile-img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
}

.profile h2 {
  margin-top: 20px;
  font-size: 26px;
}

.profile p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}

/* Sosyal Linkler */
.socials {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials img {
  width: 24px;
  height: 24px;
  filter: invert(0.3);
  transition: 0.3s;
}

.socials img:hover {
  filter: invert(0);
}

/* Coffee Button */
.coffee {
  margin: 20px 0;
}

.coffee-btn {
  background: #ffd43b;
  color: black;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.coffee-btn:hover {
  background: #ffc107;
}

/* Footer */
footer {
  margin-top: auto;
  padding-top: 10%;
  font-size: 12px;
  color: gray;
}