:root {
  --primary-color: #2d2d2d;
  --secondary-color: #575757;
  --background-color: #f8f9fa;
  --accent-color: #3a86ff;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "League Spartan", "Poppins", Arial, sans-serif;
  font-weight: 500;
  background: transparent !important;
  color: var(--primary-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


/* ÖZEL CURSOR */
.custom-cursor {
  display: none !important;
}

/* NAVBAR */
.navbar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem 2.5rem;
  position: relative;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  width: auto;
  max-width: 98vw;
  min-width: 320px;
  overflow-x: auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.navbar-logo {
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.navbar-menu {
  display: inline-flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-menu a {
  color: #3b4d25;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  font-size: 1.1rem;
}

.navbar-menu a:hover {
  color: #3b4d25;
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2.5px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(
    90deg,
    #4285f4 0%,
    #34a853 33%,
    #fbbc05 66%,
    #ea4335 100%
  );
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-menu a:hover::after {
  width: 100%;
  background: linear-gradient(
    90deg,
    #4285f4 0%,
    #34a853 33%,
    #fbbc05 66%,
    #ea4335 100%
  );
}

/* HERO SECTION */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0 5%;
  gap: 0;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  background: none !important;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
}

.photo-container {
  width: 400px;
  min-width: 400px;
  display: flex;
  justify-content: center;
}

.profile-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.profile-photo-wrapper {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-photo-wrapper::before {
  content: "";
  position: absolute;
  top: -4px;
  top: -7px;
  left: -7px;
  width: 490px;
  height: 490px;
  border-radius: 50%;
  background: conic-gradient(
    #bfe6fd 0deg 36deg,
    /* Bebek mavisi */ transparent 36deg 72deg,
    #f9c6d3 72deg 108deg,
    /* Pudra pembesi */ transparent 108deg 144deg,
    #fff9c6 144deg 180deg,
    /* Limon sarısı */ transparent 180deg 216deg,
    #c6ffe6 216deg 252deg,
    /* Mint yeşili */ transparent 252deg 288deg,
    #e3c6ff 288deg 324deg,
    /* Lila */ transparent 324deg 360deg
  );
  z-index: 1;
  animation: rotateBorder 3s linear infinite;
  filter: blur(4px) brightness(1.08);
  box-shadow: 0 0 12px 2px #fff7;
  border: 2px solid var(--background-color);
  background-color: var(--background-color);
}
@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.profile-photo {
  position: relative;
  z-index: 2;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: 0 4px 24px rgba(90, 45, 38, 0.13);
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.profile-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
}

.profile-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2d2d2d;
  white-space: nowrap;
  line-height: 1.3;
}

.divider {
  font-size: 2rem;
  color: #575757;
  margin: 0 0.5rem;
}

.subtitle {
  font-size: 1.5rem;
  color: #575757;
  font-weight: 500;
  white-space: nowrap;
}

.text-content {
  align-items: center;
  text-align: center;
  margin-left: 0;
  padding-left: 0;
}

.text-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: var(--primary-color);
  white-space: normal;
}

.text-content h1 span {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.4s forwards;
}

.text-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.text-content p {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--secondary-color);
  line-height: 1.6;
  display: block;
}

.text-content p:last-child {
  margin-bottom: 0;
}

.text-content span {
  display: inline-block;
  white-space: pre;
}

/* ANIMASYONLAR */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-sidebar a {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s forwards;
}
.social-sidebar a:nth-child(1) {
  animation-delay: 0.1s;
}
.social-sidebar a:nth-child(2) {
  animation-delay: 0.2s;
}
.social-sidebar a:nth-child(3) {
  animation-delay: 0.3s;
}

.button-row a {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s forwards;
}
.button-row a:nth-child(1) {
  animation-delay: 0.4s;
}
.button-row a:nth-child(2) {
  animation-delay: 0.5s;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding-top: 4rem;
    align-items: center;
  }

  .profile-photo-wrapper {
    width: 300px;
    height: 300px;
  }
  .profile-photo-wrapper::before {
    width: 324px;
    height: 324px;
    top: -12px;
    left: -12px;
   
  }

  .text-content h1 {
    font-size: 2.8rem;
  }

  .text-content {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    width: auto;
    min-width: unset;
    max-width: 98vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-logo {
    font-size: 1.5rem;
  }

  .navbar-menu {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .navbar-menu a {
    font-size: 1rem;
  }

  .profile-photo-wrapper {
    width: 250px;
    height: 250px;
  }
  .profile-photo-wrapper::before {
    width: 274px;
    height: 274px;
    top: -12px;
    left: -12px;
   
  }

  .text-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }

  .text-content h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .text-content p {
    font-size: 0.98rem;
    margin-bottom: 0.8rem;
  }

  .profile-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .profile-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-title,
  .subtitle {
    white-space: normal;
  }
}

.main-title-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2.5rem;
}
.main-title-container h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: var(--primary-color);
  white-space: nowrap;
}
.sub-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.sub-content h2,
.sub-content p {
  margin-left: auto;
  margin-right: auto;
}

.spartan-desc {
  font-family: "League Spartan", "Poppins", Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  word-break: break-word;
  word-wrap: break-word;
  margin: 0;
}

.subtitle-row {
  font-size: 1.7rem;
  color: #575757;
  font-weight: 500;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  white-space: normal;
  display: block;
  width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.desc-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.button-row {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
}

.btn {
  width: 136px;
  height: 48px;
  border-radius: 8px;
  font-family: "League Spartan", "Poppins", Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-solid {
  background: #f8beed;
  color: #fff;
  border: 2px solid #f8beed;
}
.btn-solid:hover {
  background: #e09ad2;
  color: #fff;
  border-color: #e09ad2;
}

.btn-outline {
  background: transparent;
  color: #f8beed;
  border: 2px solid #f8beed;
}
.btn-outline:hover {
  background: #f8beed;
  color: #fff;
  border-color: #e09ad2;
}

@media (max-width: 768px) {
  .button-row {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    align-items: stretch;
  }
  .btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  
}

.social-sidebar {
  position: absolute;
  left: 30px;
  top: 485px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-left: 0;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding: 4px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(180, 180, 200, 0.08);
  outline: none;
}
.social-icon svg {
  display: block;
  margin: auto;
}
.social-icon.linkedin:hover {
  background: #e6f4fa;
  box-shadow: 0 0 12px #0077b544;
}
.social-icon.medium:hover {
  background: #e6f9f0;
  box-shadow: 0 0 12px #00ab6c44;
}
.social-icon.github:hover {
  background: #f3e6fa;
  box-shadow: 0 0 12px #a259ff44;
}


/* --- RENKLİ BULUTLAR --- */
.colorful-clouds {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}
.cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.92;
  pointer-events: none;
  transition: opacity 0.5s, filter 0.5s;
}
.cloud1 {
  width: 260px;
  height: 260px;
  left: 5vw;
  top: 10vh;
  background: radial-gradient(
      circle at 60% 40%,
      #fff 0%,
      #d1a6f7 40%,
      #ffd59c 70%,
      transparent 90%
    ),
    radial-gradient(
      circle at 80% 60%,
      #f7a6c6 0%,
      #ffe6f0 60%,
      transparent 100%
    );
  animation: cloudMove1 36s linear infinite alternate;
}
.cloud2 {
  width: 200px;
  height: 200px;
  left: 60vw;
  top: 20vh;
  background: radial-gradient(
      circle at 40% 60%,
      #fff 0%,
      #8fd6f7 40%,
      #8ff7d1 70%,
      transparent 90%
    ),
    radial-gradient(
      circle at 60% 40%,
      #8ff7e6 0%,
      #e6fff6 60%,
      transparent 100%
    );
  animation: cloudMove2 44s linear infinite alternate;
}
.cloud3 {
  width: 300px;
  height: 300px;
  left: 30vw;
  top: 60vh;
  background: radial-gradient(
      circle at 50% 50%,
      #fff 0%,
      #fff1a6 40%,
      #ffd59c 70%,
      transparent 90%
    ),
    radial-gradient(
      circle at 70% 60%,
      #fffbe6 0%,
      #fffad6 60%,
      transparent 100%
    );
  animation: cloudMove3 52s linear infinite alternate;
}
.cloud4 {
  width: 180px;
  height: 180px;
  left: 80vw;
  top: 70vh;
  background: radial-gradient(
      circle at 60% 40%,
      #fff 0%,
      #8ff7d1 40%,
      #8fd6f7 70%,
      transparent 90%
    ),
    radial-gradient(
      circle at 40% 60%,
      #a6c6f7 0%,
      #e6f0ff 60%,
      transparent 100%
    );
  animation: cloudMove4 40s linear infinite alternate;
}
.cloud5 {
  width: 220px;
  height: 220px;
  left: 10vw;
  top: 80vh;
  background: radial-gradient(
      circle at 40% 60%,
      #fff 0%,
      #ffb3b3 40%,
      #ffd59c 70%,
      transparent 90%
    ),
    radial-gradient(
      circle at 60% 40%,
      #fffbe6 0%,
      #ffe6e6 60%,
      transparent 100%
    );
  animation: cloudMove5 48s linear infinite alternate;
}
.cloud6 {
  width: 160px;
  height: 160px;
  left: 70vw;
  top: 5vh;
  background: radial-gradient(
      circle at 60% 40%,
      #fff 0%,
      #b3a6f7 40%,
      #8fd6f7 70%,
      transparent 90%
    ),
    radial-gradient(
      circle at 40% 60%,
      #d1a6f7 0%,
      #e6e6ff 60%,
      transparent 100%
    );
  animation: cloudMove6 42s linear infinite alternate;
}
@keyframes cloudMove1 {
  0% {
    transform: translateX(0) scale(1);
  }
  100% {
    transform: translateX(520px) scale(1.12);
  }
}
@keyframes cloudMove2 {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-380px) scale(1.09);
  }
}
@keyframes cloudMove3 {
  0% {
    transform: translateX(0) scale(1);
  }
  100% {
    transform: translateX(-540px) scale(1.15);
  }
}
@keyframes cloudMove4 {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(390px) scale(1.13);
  }
}
@keyframes cloudMove5 {
  0% {
    transform: translateX(0) scale(1);
  }
  100% {
    transform: translateX(400px) scale(1.08);
  }
}
@keyframes cloudMove6 {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(410px) scale(1.14);
  }
}

.custom-cursor,
.navbar,
.hero,
.profile-row,
.profile-photo-wrapper {
  position: relative;
  z-index: 1000;
}

.stats-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3.5rem;
  margin: 20px auto 80px auto;
  max-width: 1200px;
  width: 95%;
  position: relative;
  z-index: 1100;
}
.stat-box {
  flex: 1 1 0;
  background: rgba(248, 190, 237, 0.38);
  border-radius: 1.7rem;
  box-shadow: 0 6px 32px rgba(90, 45, 38, 0.09);
  padding: 3.5rem 1.5rem 3.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  opacity: 1;
  transform: none;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  perspective: 600px;
}
.stat-box.visible {
  opacity: 1;
  transform: translateY(0);
}
.stat-number {
  font-size: 4.2rem;
  font-weight: 700;
  color: #e09ad2;
  margin-bottom: 2.1rem;
  font-family: "League Spartan", "Poppins", Arial, sans-serif;
  letter-spacing: 0.01em;
  text-align: center;
}
.stat-label {
  font-size: 1.55rem;
  color: #3b4d25;
  font-weight: 500;
  text-align: center;
  margin-top: 0;
  font-family: "League Spartan", "Poppins", Arial, sans-serif;
  display: block;
}
.stat-number:hover,
.stat-label:hover {
  cursor: pointer;
}
.stat-box:nth-child(1) .stat-label {
  position: relative;
  left: -10px;
}
.stat-box:nth-child(2) .stat-label {
  position: relative;
  left: -10px;
}
.stat-box:hover {
  transform: scale(1.01) translateY(-8px);
  box-shadow: 0 12px 40px 0 rgba(224, 154, 210, 0.18),
    0 2px 8px 0 rgba(90, 45, 38, 0.1);
  background: linear-gradient(120deg, #fff 60%, #fbe3f3 100%);
  filter: brightness(1.04) saturate(1.08);
  z-index: 2;
}
.stat-box:hover .stat-number {
  color: #d16ba5;
  text-shadow: 0 2px 16px #f8beed88, 0 0 8px #fff4;
  transition: color 0.3s, text-shadow 0.3s;
}
.stat-box:hover .stat-label {
  color: #e09ad2;
  letter-spacing: 0.04em;
  transition: color 0.3s, letter-spacing 0.3s;
}
.stat-box:active {
  transform: scale(0.98) perspective(600px) rotateX(18deg) translateY(2px);
  box-shadow: 0 2px 12px 0 rgba(224, 154, 210, 0.1),
    0 1px 4px 0 rgba(90, 45, 38, 0.08);
  filter: brightness(0.98) saturate(0.98);
}
@media (max-width: 900px) {
  .stats-section {
    flex-direction: column;
    gap: 2.2rem;
    margin: 40px auto 40px auto;
    align-items: stretch;
  }
  .stat-box {
    padding: 2.5rem 1rem 2.2rem 1rem;
  }
  .stat-number {
    font-size: 2.7rem;
    margin-bottom: 1.5rem;
  }
  .stat-label {
    font-size: 1.15rem;
  }
}

.about-section {
  width: 90%;
  max-width: 1300px;
  min-height: 480px;
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: linear-gradient(120deg, #fff 60%, #fbe3f3 100%);
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(90, 45, 38, 0.1);
  position: relative;
  overflow: hidden;
  opacity: 0.5;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, filter 0.4s,
    transform 0.4s;
  z-index: 1200;
}
.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-section:hover {
  box-shadow: 0 14px 44px 0 rgba(90, 45, 38, 0.13);
  filter: brightness(1.02) saturate(1.04);
  transform: translateY(-6px) scale(1.008);
}
.about-left {
  min-width: 120px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 64px 0 64px 0;
  position: relative;
}
.about-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 4rem;
  font-weight: 900;
  color: #f8beed;
  font-family: "League Spartan", "Poppins", Arial, sans-serif;
  letter-spacing: 0.13em;
  text-shadow: 0 4px 22px #fff7, 0 0 16px #f8beed88, 0 0 2px #fff4;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  filter: none;
  transition: text-shadow 0.3s, filter 0.3s;
}
.about-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 80px 72px 56px;
}
.about-intro {
  font-size: 1.9rem;
  font-style: italic;
  font-weight: 600;
  color: #3b4d25;
  margin-bottom: 1.3rem;
  font-family: "League Spartan", "Poppins", Arial, sans-serif;
}
.about-divider {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, #e7b8d6 0%, #fff 100%);
  border-radius: 1px;
  margin: 0.9rem 0 1.5rem 0;
}
.about-summary {
  font-size: 1.35rem;
  color: #575757;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    width: 99%;
    min-width: 0;
    padding: 0;
  }
  .about-left {
    flex-direction: row;
    min-width: 0;
    max-width: unset;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 0 0 24px;
  }
  .about-vertical {
    writing-mode: horizontal-tb;
    font-size: 2.5rem;
    margin-bottom: 0;
    margin-right: 0.7rem;
    text-shadow: 0 2px 6px #fbe3f377;
  }
  .about-right {
    padding: 32px 10px 36px 10px;
  }
}

.skills-section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 0 auto;
  padding: 0 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  position: relative;
}
.skills-title {
  color: #f8beed;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  margin-bottom: 0.7rem;
  margin-left: 6px;
}
.skills-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #232a36;
  margin-bottom: 2.2rem;
  margin-left: 2px;
  font-family: "League Spartan", "Poppins", Arial, sans-serif;
}
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 32px;
  justify-content: flex-start;
}
.skills-last-row {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 18px;
}
.skill-box {
  background: #fdf6fa;
  border-radius: 1.2rem;
  border: 1.5px solid #f8beed;
  box-shadow: 0 2px 10px 0 #f8beed22;
  min-width: 170px;
  min-height: 120px;
  max-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 10px 18px 10px;
  transition: box-shadow 0.25s, transform 0.25s, background 0.25s, border 0.25s;
  cursor: pointer;
}
.skill-box:hover {
  box-shadow: 0 8px 32px 0 #f8beed44;
  background: #f8beed11;
  border: 1.5px solid #f8beed;
  transform: translateY(-6px) scale(1.03);
}
.skill-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}
.skill-box span {
  font-size: 1.08rem;
  color: #232a36;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  text-align: center;
}
.skill-box .skill-icon[alt="Javascript"] {
    /* margin-bottom: 0px; */
}

.skill-icon[alt="Javascript"] {
    width: 90px;
    /* height: 90px; */
}

.skill-box .skill-icon[alt="Javascript"] + span {
    margin-top: 0.25rem;
    display: inline-block;
}
@media (max-width: 900px) {
  .social-sidebar {
    display: none;
  }
  .skills-heading {
    font-size: 1.4rem;
  }
  .skills-grid {
    gap: 18px 12px;
    justify-content: center;
    align-items: center;
  }
  .skills-last-row {
    gap: 12px;
  }
  .skill-box {
    min-width: 120px;
    min-height: 90px;
    padding: 14px 4px 12px 4px;
  }
  .skill-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 7px;
  }
  .skill-box span {
    font-size: 0.97rem;
  }
}

/* Pixel font için Google Fonts bağlantısı eklenmeli, ancak burada CSS ile font-family ayarlanacak */
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");

@font-face {
  font-family: "basis33";
  src: url("https://fonts.cdnfonts.com/s/17309/Basis33.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.site-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: rgba(255, 210, 230, 0.6); /* Biraz daha koyu açık pembe */
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
  min-height: 120px;
  position: relative;
  z-index: 1;
  padding: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.typewriter-box {
  background: transparent;
  border-radius: 18px;
  padding: 32px 48px;
  margin: 32px 0 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  max-width: 90vw;
  min-height: 64px;
}

.typewriter-box span,
.typewriter-cursor {
  font-family: "Pixelify Sans", monospace;
  font-size: 2.6rem;
  color: #222e50;
  letter-spacing: 2px;
}

.typewriter-cursor {
  display: inline-block;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}


@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: 3rem;
    gap: 3rem;
  }
  .navbar-logo {
    font-size: 2.2rem;
  }
  .navbar .navbar-menu {
    flex-direction: row;
  }
  .hero {
    min-height: 100vh;
    padding: 2rem 5%;
    justify-content: flex-start;
    margin-top: 120px;
    padding-top: 2rem;
  }

  .profile-row {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .profile-photo-wrapper,
  .profile-photo {
    width: 220px;
    height: 220px;
    min-width: 220px;
  }

  .profile-photo-wrapper::before {
    width: 230px;
    height: 230px;
    top: -5px;
    left: -5px;
  }

  .profile-info {
    align-items: center;
    text-align: center;
  }

  .main-title {
    font-size: 2.2rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .subtitle-row {
    font-size: 1.2rem;
    text-align: center;
    white-space: normal;
    word-spacing: normal;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
  }

  .spartan-desc {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    margin: 0px !important;
  }

  .button-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    width: 100%;
  }

  .btn {
    width: 100% !important;
    height: 44px;
    font-size: 1rem;
  }

  .stats-section {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .stat-box {
    width: 100%;
    max-width: 350px;
    padding: 4rem 1rem;
    box-shadow: 0 4px 24px rgba(90, 45, 38, 0.08);
    transform: translateY(0);
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .about-section {
    height: 70vh;
    width: 100%;
    border-radius: 0px;
  }
  .about-section .about-right {
    justify-content: center;
  }
  .about-section .about-intro{
    font-size: 1.2rem;
  }
  .about-section .about-summary {
    font-size: 1rem;
  }


  .skills-section {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    
  }

  .skills-title {
    font-size: 4rem;
    margin-left: 0;
  }
  .skill-box{
    gap: 1rem;
  }

  .site-footer #typewriter-text {
    font-size: 1.5rem;
  }
  .desc-group{
    gap: 0.5rem;
  }
}


@media (max-width: 480px) {
  .hero {
    padding: 1rem 5%;
    min-height: 85vh;
  }

  .profile-photo-wrapper,
  .profile-photo {
    width: 180px;
    height: 180px;
    min-width: 180px;
  }

  .profile-photo-wrapper::before {
    width: 190px;
    height: 190px;
  }

  .main-title {
    font-size: 1.8rem;
  }

  .subtitle-row {
    font-size: 1rem;
  }

  .spartan-desc {
    font-size: 0.9rem;
  }

  .btn {
    width: 180px;
    height: 40px;
    font-size: 0.9rem;
  }

  .about-section .about-intro {
    font-size: 1.2rem !important;
  }
}


@media (max-width: 358px) {
  .subtitle-row {
    font-size: 0.8rem;
  }
  .about-section .about-intro {
    font-size: 0.95rem !important;
  }
  .about-section{
    height: 90vh;
  }
}

@media (max-width: 1199px) {
  .social-sidebar {
    left: 1.2rem;
  }
  .social-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
  .social-icon svg {
    width: 20px;
    height: 20px;
  }
  .social-sidebar {
    display: none;
  }
}

@media (max-width: 899px) {
  .social-sidebar {
    display: none;
  }
}

@media (max-width: 1477px) {
  .social-sidebar {
    display: none;
  }
}

@media (max-width: 1484px) {
  .social-sidebar {
    display: none;
  }
}

@media (max-width: 1525px) {
  .social-sidebar {
    display: none;
  }
}

/* Scrollbar tasarımı */
::-webkit-scrollbar {
  width: 4px;
  background: #fff0fa;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #e09ad2 40%, #f8beed 100%);
  border-radius: 8px;
  min-height: 40px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(120deg, #d16ba5 40%, #f8beed 100%);
}
::-webkit-scrollbar-corner {
  background: #fff0fa;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #e09ad2 #fff0fa;
}
