:root {
  /* Renkler */
  --text-gradient-yellowspe: linear-gradient(to right, hsl(45.07deg 93.61% 42.94%), hsl(32.05deg 65.77% 43.53%));
  --talentbg: hsl(0, 0%, 22%);
  --eerie-black-1: hsl(240, 2%, 13%);
  --eerie-black-2: hsl(240, 2%, 12%);
  --smoky-black: hsl(0, 0%, 7%);
  --white-1: hsl(0, 0%, 100%);
  --white-2: hsl(0, 0%, 98%);
  --orange-yellow-crayola: #ba7625;
  --light-gray: hsl(0, 0%, 84%);

  /* Yazı tipi */
  --ff-poppins: 'Poppins', sans-serif;

  /* Geçişler */
  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease-in-out;
}

/* Sıfırlama */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a { text-decoration: none; }

li { list-style: none; }

img, ion-icon, a, button, time, span { display: block; }

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input, textarea {
  width: 100%;
  background: none;
  font: inherit;
}

::selection {
  background: var(--orange-yellow-crayola);
  color: var(--smoky-black);
}

:focus { outline-color: var(--orange-yellow-crayola); }

html { font-family: var(--ff-poppins); }

body { background: var(--smoky-black); }

/* Tekrar eden stiller */
article {
  background: var(--eerie-black-2);
  border: 1px solid var(--talentbg);
  border-radius: 20px;
  padding: 15px;
  margin-top: 15px;
  margin-bottom: 15px; 
}

.separator {
  width: 100%;
  height: 1px;
  background: var(--talentbg);
  margin: 16px 0;
}

article { display: none; }

article.pri {
  display: block;
  animation: fade 0.5s ease backwards;
}

@keyframes fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.h1, .h2, .h3, .h4, .h5 {
  color: var(--white-2);
  text-transform: capitalize;
  font-size: 16px;
}

.article-title {
  position: relative;
  padding-bottom: 7px;
}

.article-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--text-gradient-yellowspe);
  border-radius: 3px;
}

/* Navbar */
.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: hsla(240, 1%, 17%, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 12px 12px 0 0;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding-bottom: 4px;
  padding-left: 7px;
}

.social-item .social-link {
  color: var(--light-gray-70);
  font-size: 18px;
}


.social-item .social-link:hover { color: var(--light-gray); }

/* Hakkında */
.about .article-title { margin-bottom: 15px; }

.about-text {
  color: var(--light-gray);
  line-height: 1.6;
}

.about-text p { margin-bottom: 15px; }

/* Talent */
.talent-title { margin-bottom: 20px; }

.talent-list { padding: 20px; }

.talent-item:not(:last-child) { margin-bottom: 15px; }

.talent .title-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.talent .title-wrapper data {
  color: var(--light-gray);
}

.talent-progress-bg {
  background: var(--talentbg);
  width: 100%;
  height: 8px;
  border-radius: 10px;
}

.talent-progress-fill {
  background: var(--text-gradient-yellowspe);
  height: 100%;
  border-radius: inherit;
}

/* Responsive */
@media (min-width: 450px) {
  article { 
    width: 520px; 
    margin-inline: auto; 
    padding: 30px; 
  }

  .article-title { padding-bottom: 15px; }

  .article-title::after {
    width: 40px;
    height: 5px;
  }

  .logo-box { border-radius: 30px; }

  .logo-box img { width: 120px; }

  .info-content .name { margin-bottom: 15px; }

  .info-content .title { padding: 5px 18px; }

  .info_sub-btn {
    top: -30px;
    right: -30px;
    padding: 10px 15px;
  }

  .navbar { border-radius: 20px 20px 0 0; }

  .navbar-list { gap: 20px; }

  .about .article-title { margin-bottom: 20px; }

  .about-text { margin-bottom: 40px; }
}

@media (min-width: 1024px) {
  primary { margin-bottom: 60px; }

  .pri-content {
    position: relative;
    width: max-content;
    margin: auto;
  }
}

@media (min-width: 1250px) {
  body::-webkit-scrollbar { width: 20px; }

  body::-webkit-scrollbar-track { background: var(--smoky-black); }

  body::-webkit-scrollbar-thumb {
    border: 5px solid var(--smoky-black);
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 20px;
  }

  body::-webkit-scrollbar-thumb:hover { background: hsla(0, 0%, 100%, 0.15); }

  body::-webkit-scrollbar-button { height: 60px; }

  article { min-height: 100%; }

  primary {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
  }

  .pri-content {
    min-width: 75%;
    width: 75%;
    margin: 0;
  }

  .logo-box img { width: 160px; }

  .info-content .name {
    white-space: nowrap;
    text-align: center;
  }

  .info-content .title { margin: auto; }

  .social-list { justify-content: left; }
}