:root {
  /* 🎨 Arka plan renkleri */
  --color-bg: #ffffff;         /* Ana sayfa arka planı — her yerin zemin rengi */
  --color-surface: #f7f7f8;    /* Kart, kutu, bölüm arka planı — beyazdan biraz daha gri */

  /* 🖋️ Metin renkleri */
  --color-text: #111827;       /* Ana metin (başlıklar, paragraf) */
  --color-muted: #6b7280;      /* Açıklama metinleri, alt başlıklar */

  /* 💜 Ana vurgu renkleri (marka / link / buton) */
  --color-primary: #6d28d9;    /* En çok kullanılan vurgu (link, buton, ikon) */
  --color-primary-400: #8b5cf6; /* Daha açık ton (hover, küçük detay vurgusu) */
  --color-primary-600: #5b21b6; /* Daha koyu ton (aktif durum, buton tıklanmış hali) */

  /* 🌈 İkincil / yardımcı vurgular */
  --color-accent: #7c3aed;     /* Hover efekti, ikinci vurgu alanları (ör. alt çizgi animasyonu) */
  --color-accent-700: #4c1d95; /* Daha koyu accent — gölge veya gradient geçişi için */

  /* 🧱 Sınırlar ve gölgeler */
  --color-border: #e6e6f0;     /* Bölüm ayırıcı çizgiler, kart kenarları */
  --color-shadow: rgba(16, 24, 40, 0.06); /* Hafif gölge — kart altında derinlik hissi */

  /* ⚪️ Ters metin (koyu zemin üzerindeki yazı) */
  --color-on-primary: #ffffff; /* Butonun içindeki yazı rengi (koyu mor butonda beyaz metin) */

  /* 🔗 Link durumları */
  --color-link: var(--color-primary);      /* Normal link */
  --color-link-hover: var(--color-accent); /* Üzerine gelindiğinde renk değişimi */

  /* ✅ Durum renkleri (isteğe bağlı) */
  --color-success: #16a34a;   /* Başarılı mesajlar veya onay ikonları */
  --color-warning: #f59e0b;   /* Uyarı veya dikkat çeken alanlar */
  --color-danger: #ef4444;    /* Hata mesajları veya önemli uyarılar */
}

html, body {
  font-family: "Rubik", sans-serif;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-family: "Rubik", sans-serif;
}

p, ul, ul li {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  list-style-type: none;
}

/* Tüm butonlar için ortak ripple efekti */
button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Ripple efekti için pseudo element */
button::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

/* Hover durumunda ripple yayılması */
button:hover::before {
    width: 500px;
    height: 500px;
}

/* Buton içeriğinin ripple'ın üstünde kalması için */
button > * {
    position: relative;
    z-index: 1;
}

/* Tüm butonlar için ortak ripple efekti */
button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Ripple efekti için pseudo element */
button::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

/* Hover durumunda ripple yayılması */
button:hover::before {
    width: 500px;
    height: 500px;
}

/* Buton içeriğinin ripple'ın üstünde kalması için */
button > * {
    position: relative;
    z-index: 1;
}

#navbar-button::before {
    background: #6d28d9;
    z-index: -1;
}

#navbar-button {
    z-index: 1;
}

.project-button::before {
    background: #00ffd5;
    z-index: -1;
}

.project-button {
    z-index: 1;
}

.twitter::before {
    background: #00ffd5;
}

.instagram::before {
    background: #00ffd5;
}

.facebook::before {
    background: #00ffd5;
}

.linkedin::before {
    background: #00ffd5;
}

.email::before {
    background: #00ffd5;
}

button img {
    position: relative;
    z-index: 1;
}

.icon-wrapper {
    position: relative;
    z-index: 1;
}

#navbar .logo-image {
  cursor: pointer;
  height: auto;
  width: 50px;
}

#navbar {
  display: flex;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  justify-content: space-between;
  align-items: center;
  padding: 40px 100px 0px 100px;
}

#navbar a {
  text-decoration: none;
  color: black;
  transition: 0.3s;
  font-size: 17px;
}

#navbar a:hover {
  color: #6d28d9;
}

#navbar a:active {
  color: #8b5cf6;
}

#navbar-button {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 17px;
  padding: 10px 20px;
  margin-left: 15px;
  cursor: pointer;
  background-color: transparent;
  color: #6d28d9;
  border: 2px solid #6d28d9;
  border-radius: 100px;
  transition: 0.3s;
}

#navbar-button:hover {
  color: white;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

#hero {
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 70px 0px 0px 0px;
}

#main-h1 {
  font-size: 60px;
}

.main-paragraph {
  font-size: 20px;
}

.avatar {
  height: auto;
  width: 350px;
  margin: 50px 0px 0px 0px;
}

/* İllüstrasyon */
.illustrator {
  display: block;
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Mobilde daha da küçült */
@media (max-width: 767px) {
  .illustrator {
    max-width: 900px;
  }
}

/* About section */
#about {
  background-color: white;
  padding: 0;
  margin: 0;
}

/* Mor bölüm - üst kısım */
.about-container {
  background-color: #5422ca;
  padding: 80px 20px 120px 20px;
  margin: 0;
  text-align: center;
}

/* Kendini tanıtma */
.about-div {
  max-width: 900px;
  margin: 0 auto;
}

.main-h2 {
  font-size: 40px !important;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.main-about-paragraph {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

/* Kartların olduğu bölüm */
.cards-wrapper {
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: -100px auto 0 auto;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Kartlar */
.kimim-div,
.calisma-div,
.gitmek-div {
  padding: 50px 40px;
  text-align: center;
  border-right: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 600px; /* Tüm kartları aynı yükseklikte tutar */
}

.gitmek-div {
  border-right: none;
}

/* İkonlar için sabit alan */
.kimim-div lord-icon,
.calisma-div lord-icon,
.gitmek-div lord-icon {
  margin: 0 auto 25px auto;
  min-height: 60px;
  display: block !important;
  text-align: center;
  transform: translateX(0);
}

/* Konteynıra hover gelince ikonlar animasyon */
.kimim-div:hover lord-icon,
.calisma-div:hover lord-icon,
.gitmek-div:hover lord-icon {
  animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(-5px);
  }
  75% {
    transform: translateY(-8px);
  }
}

/* Başlıklar için sabit yükseklik */
.kimim-title,
.calisma-title,
.gitmek-title {
  font-size: 24px;
  font-weight: 700;
  color: #5b21b6;
  line-height: 1.3;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

/* Paragraflar için sabit yükseklik */
.kimim-paragraph,
.calisma-paragraph,
.gitmek-paragraph {
  font-size: 17px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 25px;
  height: 220px;
}

/* Alt başlıklar */
.kimim-maddeler,
.calisma-maddeler,
.gitmek-maddeler {
  font-size: 13px;
  font-weight: 700;
  color: #5b21b6;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 70px 0 15px 0;
}

/* Listeler */
.kimim-div ul,
.calisma-div ul,
.gitmek-div ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: center;
}

.kimim-div ul li,
.calisma-div ul li,
.gitmek-div ul li {
  list-style-type: none;
  font-size: 16px;
  color: #000000;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

/* Tablet ve üzeri - yan yana */
@media (min-width: 768px) {
  .cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main-h2 {
    font-size: 48px;
  }
  
  .main-about-paragraph {
    font-size: 20px;
  }
}

/* Mobil - alt alta */
@media (max-width: 767px) {
  .about-container {
    padding: 60px 20px 100px 20px;
  }
  
  .cards-wrapper {
    margin: -60px 20px 0 20px;
  }
  
  .kimim-div,
  .calisma-div,
  .gitmek-div {
    padding: 35px 25px;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }
  
  .gitmek-div {
    border-bottom: none;
  }
  
  .main-h2 {
    font-size: 32px;
  }
  
  .main-about-paragraph {
    font-size: 16px;
  }
}

/* Skills Bölümü */
#skills {
  background-color: white;
  padding: 100px 0;
  text-align: center;
}

#skills h2 {
  font-family: Poppins, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 60px;
}

.skills-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.skill-card {
  background: #f2f2f2;
  box-shadow: 0 6px 16px var(--color-shadow);
  border-radius: 16px;
  width: 320px;
  padding: 30px 25px 40px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(16, 24, 40, 0.1);
}

.skill-card h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.skill-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Progress Bar */
.progress-container {
  background: #dddddd;
  border-radius: 50px;
  height: 12px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-400));
  border-radius: 50px;
  transition: width 1.5s ease-out;
}

/* Scroll ile görünce dolsun */
.skill-card.visible .progress-bar {
  width: var(--progress);
}

/* Responsive ayarlar */
@media (max-width: 768px) {
  .skills-container {
    flex-direction: column;
    align-items: center;
  }

  .skill-card {
    width: 85%;
  }
}

.project-div {
  display: flex;
  flex-grow: 1;
  align-items: center;
  text-align: center;
  border: 1px solid #220054;
  background-color: #220054;
  margin: 20px 50px 0px 50px;
  padding: 50px;
  border-radius: 15px;
  color: white;
}

.project-title {
  padding-right: 10px;
  font-size: 30px;

}

.project-paragraph {
  padding-left: 100px;
  font-size: 17px;
  font-weight: 500;
}

/* iconlar için container */
.project-button .icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 5px;
}

/* normal icon */
.project-button .icon-wrapper img.call-me {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  opacity: 1;
  width: 100%;
  height: 100%;
}

/* hover icon */
.project-button .icon-wrapper img.call-me-hover {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  opacity: 0;
  width: 100%;
  height: 100%;
}

/* hover durumunda geçiş */
.project-button:hover .icon-wrapper img.call-me {
  opacity: 0;
}

.project-button:hover .icon-wrapper img.call-me-hover {
  opacity: 1;
}

.project-button {
  display: inline-flex;
  padding: 5px 20px 5px 20px;
  margin-left: 150px;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 2px solid #28e3c4;
  cursor: pointer;
  color: #ffffff;
  background-color: transparent;
  transition: 0.3s ease;
}

.project-button:hover {
  transition: 0.3s ease;
  color: #0d002b;
}

.project-footer {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 7%,
    #5422ca 7%,
    #5422ca 100%
  );
  margin: 0;
  padding: 0;
}

.project-footer {
  text-align: center;
}

.footer-logo {
  height: auto;
  width: 60px;
  margin-top: 80px;
  cursor: pointer;
}

.footer-paragraph {
  text-align: center;
  font-size: 25px;
  width: 70%;
  margin: auto auto 0 auto;
  padding-top: 50px;
  font-weight: 600;
  color: #c2c2c2;
  margin-bottom: 100px;
}

.footer-buttons {
  display: inline-flex;
  margin-bottom: 30px;
}

.twitter, .instagram, .facebook, .linkedin, .email {
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  border: 2px solid #ffffff;
  border-radius: 999px;
  margin: 7px;
  margin-bottom: 50px;
  background-color: transparent;
}

.twitter:hover, .instagram:hover, .facebook:hover, .linkedin:hover, .email:hover {
  border: 2px solid #00ffd5;
}

.social-icon {
  color: white;
  transition: all 0.3s ease;
}

.twitter:hover .social-icon, .instagram:hover .social-icon, .facebook:hover .social-icon, .linkedin:hover .social-icon, .email:hover .social-icon {
  fill: #000000;
}

.copyright {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  background-color: #5422ca;
  padding: 0 0 50px 0;
}

.copy-paragraph {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-size: 13px;
  color: white;
}

.made-logo {
  height: auto;
  width: 20px;
}

/* HAMBURGER MENÜ ANİMASYONU - TÜM EKRANLAR İÇİN */
.menu-icon {
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none; /* Varsayılanda gizli */
}

.menu-icon span,
.menu-icon span::before,
.menu-icon span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #111827;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon span::before,
.menu-icon span::after {
  content: '';
  left: 0;
}

.menu-icon span::before {
  top: -9px;
}

.menu-icon span::after {
  top: 9px;
}

/* X şekline dönüşüm */
.menu-icon.active span {
  background-color: transparent;
}

.menu-icon.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-icon.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* BUTON PNG SABİTLEME - TÜM EKRANLAR */
.project-button {
  min-width: 200px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.project-button .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 8px;
}

.project-button .icon-wrapper img.call-me,
.project-button .icon-wrapper img.call-me-hover {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  flex-shrink: 0;
  object-fit: contain;
}

/* HAMBURGER MENÜ ANİMASYONU - TÜM EKRANLAR İÇİN */
.menu-icon {
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none; /* Varsayılanda gizli */
}

.menu-icon span,
.menu-icon span::before,
.menu-icon span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #111827;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon span::before,
.menu-icon span::after {
  content: '';
  left: 0;
}

.menu-icon span::before {
  top: -9px;
}

.menu-icon span::after {
  top: 9px;
}

/* X şekline dönüşüm */
.menu-icon.active span {
  background-color: transparent;
}

.menu-icon.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-icon.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* BUTON PNG SABİTLEME - TÜM EKRANLAR */
.project-button {
  min-width: 200px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.project-button .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 8px;
}

.project-button .icon-wrapper img.call-me,
.project-button .icon-wrapper img.call-me-hover {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  flex-shrink: 0;
  object-fit: contain;
}

/* Küçük telefonlar için (max 480px) */
@media (max-width: 480px) {
  
  /* Navbar */
  #navbar {
    padding: 20px 20px 0 20px;
  }

  #navbar .logo-image {
    width: 40px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    align-items: center;
    text-align: center;
  }

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

  .nav-links a {
    margin: 10px 0;
    font-size: 16px;
    width: 100%;
  }

  #navbar-button {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    max-width: 250px;
    font-size: 16px;
  }

  .menu-icon {
    display: block;
  }

  /* Hero Section */
  #hero {
    margin: 40px 20px 0 20px;
  }

  #main-h1 {
    font-size: 32px;
    line-height: 1.2;
    padding: 0 10px;
  }

  .main-paragraph {
    font-size: 16px;
    padding: 0 10px;
  }

  .avatar {
    width: 250px;
    margin: 30px 0 0 0;
  }

  /* About Section */
  .about-container {
    padding: 40px 15px 80px 15px;
  }

  .main-h2 {
    font-size: 28px !important;
    padding: 0 10px;
  }

  .main-about-paragraph {
    font-size: 15px;
    line-height: 1.6;
  }

  .cards-wrapper {
    margin: -50px 15px 0 15px;
    border-radius: 20px;
  }

  .kimim-div,
  .calisma-div,
  .gitmek-div {
    padding: 30px 20px;
    min-height: auto;
  }

  .kimim-title,
  .calisma-title,
  .gitmek-title {
    font-size: 20px;
    min-height: auto;
    margin-bottom: 15px;
  }

  .kimim-paragraph,
  .calisma-paragraph,
  .gitmek-paragraph {
    font-size: 15px;
    height: auto;
    margin-bottom: 20px;
  }

  .kimim-maddeler,
  .calisma-maddeler,
  .gitmek-maddeler {
    font-size: 12px;
    margin: 30px 0 10px 0;
  }

  .kimim-div ul li,
  .calisma-div ul li,
  .gitmek-div ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  /* Skills Section */
  #skills {
    padding: 60px 20px;
  }

  #skills h2 {
    font-size: 28px;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .skill-card {
    width: 100%;
    max-width: 320px;
    padding: 25px 20px 35px;
  }

  .skill-card h3 {
    font-size: 1.2rem;
  }

  .skill-card p {
    font-size: 0.9rem;
  }

  /* Footer - Project Section */
  .project-div {
    flex-direction: column;
    margin: 20px 15px 0 15px;
    padding: 30px 20px;
  }

  .project-title {
    font-size: 24px;
    padding-right: 0;
    margin-bottom: 15px;
  }

  .project-paragraph {
    font-size: 15px;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .project-button {
    margin-left: 0;
    font-size: 16px;
    padding: 8px 20px;
    white-space: nowrap;
  }

  .project-button .icon-wrapper {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
  }

  .project-button .icon-wrapper img.call-me,
  .project-button .icon-wrapper img.call-me-hover {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    min-height: 35px !important;
    max-width: 35px !important;
    max-height: 35px !important;
  }

  /* Footer Social */
  .footer-logo {
    width: 50px;
    margin-top: 50px;
  }

  .footer-paragraph {
    font-size: 18px;
    width: 90%;
    padding-top: 30px;
    margin-bottom: 60px;
  }

  .footer-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .twitter, .instagram, .facebook, .linkedin, .email {
    height: 45px;
    width: 45px;
    margin: 5px;
  }

  .copyright {
    padding: 0 0 30px 0;
  }

  .copy-paragraph {
    font-size: 11px;
  }

  .made-logo {
    width: 18px;
  }
}

/* Orta boy telefonlar için (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  
  /* Navbar */
  #navbar {
    padding: 25px 40px 0 40px;
  }

  #navbar .logo-image {
    width: 45px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    align-items: center;
    text-align: center;
  }

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

  .nav-links a {
    margin: 12px 0;
    width: 100%;
  }

  #navbar-button {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    max-width: 250px;
  }

  .menu-icon {
    display: block;
  }

  /* Hero Section */
  #hero {
    margin: 50px 30px 0 30px;
  }

  #main-h1 {
    font-size: 45px;
  }

  .main-paragraph {
    font-size: 18px;
  }

  .avatar {
    width: 300px;
    margin: 40px 0 0 0;
  }

  /* About Section */
  .about-container {
    padding: 50px 30px 100px 30px;
  }

  .main-h2 {
    font-size: 36px !important;
  }

  .main-about-paragraph {
    font-size: 17px;
  }

  .cards-wrapper {
    margin: -70px 30px 0 30px;
  }

  /* Skills Section */
  #skills {
    padding: 80px 30px;
  }

  #skills h2 {
    font-size: 32px;
  }

  .skill-card {
    width: 90%;
    max-width: 400px;
  }

  /* Footer */
  .project-div {
    flex-direction: column;
    margin: 20px 30px 0 30px;
    padding: 40px 30px;
  }

  .project-title {
    font-size: 26px;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .project-paragraph {
    font-size: 16px;
    padding-left: 0;
    margin-bottom: 25px;
  }

  .project-button {
    margin-left: 0;
    font-size: 18px;
    white-space: nowrap;
  }

  .footer-paragraph {
    font-size: 22px;
    width: 85%;
  }
}

/* Tablet için (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  
  /* Navbar */
  #navbar {
    padding: 30px 50px 0 50px;
  }

  /* Hero */
  #main-h1 {
    font-size: 50px;
  }

  .avatar {
    width: 320px;
  }

  /* Footer */
  .project-div {
    margin: 20px 40px 0 40px;
    padding: 45px 35px;
  }

  .project-paragraph {
    padding-left: 50px;
  }

  .project-button {
    margin-left: 80px;
  }
}

/* Yatay mod (landscape) telefonlar için */
@media (max-height: 600px) and (orientation: landscape) {
  
  #hero {
    margin: 30px 0 0 0;
  }

  #main-h1 {
    font-size: 36px;
  }

  .main-paragraph {
    font-size: 16px;
  }

  .avatar {
    width: 200px;
    margin: 20px 0 0 0;
  }

  .about-container {
    padding: 40px 20px 80px 20px;
  }

  .footer-paragraph {
    margin-bottom: 50px;
  }
}

/* Progress bar container */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 9999;
  pointer-events: none;
}

/* Progress bar dolması */
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6d28d9, #7c3aed, #8b5cf6);
  box-shadow: 0 2px 10px rgba(109, 40, 217, 0.3);
  transition: width 0.1s ease-out;
}

/* Alternatif: Gradient animasyonlu (opsiyonel) */
.scroll-progress-bar.animated {
  background: linear-gradient(
    90deg,
    #28e3c4 0%,
    #00ffd5 25%,
    #28e3c4 50%,
    #00ffd5 75%,
    #28e3c4 100%
  );
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* HAKKIMDA SAYFASI */

/* Genel stil */
.hakkimda-png {
  width: 100%;
  max-width: 500px; /* Büyük ekran için maksimum genişlik */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Mobil ekranlar için */
@media (max-width: 768px) {
  .hakkimda-png {
    max-width: 250px; /* Mobilde daha küçük */
  }
}

@media (max-width: 480px) {
  .hakkimda-png {
    max-width: 180px; /* Küçük telefonlar için daha küçük */
  }
}


/* Kartların olduğu bölüm */
.hakkimda-cards-wrapper {
  background-color: #ffffff;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 sütun yapar */
  max-width: 1200px;
  margin: -100px auto 0 auto;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* kenarlık düzgün dursun */
}

/* Kartlar */
.pratik-div,
.merakli-div,
.enerji-div,
.detay-div {
  padding: 50px 40px;
  text-align: center;
  border-right: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 300px; /* tüm kartlar aynı yükseklikte */
  box-sizing: border-box;
}

/* Sağ ve alt kenarlıkları düzenle */
.pratik-div:nth-child(2),
.enerji-div:nth-child(4) {
  border-right: none;
}
.enerji-div,
.detay-div {
  border-bottom: none;
}

/* İkonlar */
.pratik-div svg,
.merakli-div svg,
.enerji-div svg,
.detay-div svg {
  border: 2px solid #28e3c4;
  border-radius: 999px;
  padding: 12px 25px 12px 25px;
  background-color: #28e3c4;
  margin: 0 auto 0 auto;
  min-height: 60px;
  display: block !important;
  text-align: center;
  transform: translateX(0);
}

/* Başlıklar */
.pratik-title,
.merakli-title,
.enerji-title,
.detay-title {
  font-size: 24px;
  font-weight: 700;
  color: #0d002b;
  line-height: 1.3;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  width: 100%;
}

/* Paragraflar */
.pratik-paragraph,
.merakli-paragraph,
.enerji-paragraph,
.detay-paragraph {
  font-size: 17px;
  line-height: 1.7;
  color: #000000;
  margin: 0 0 25px 0;
  height: 220px;
}

/* Mobil uyum */
@media (max-width: 800px) {
  .hakkimda-cards-wrapper {
    grid-template-columns: 1fr; /* mobilde tek sütun */
  }

  .pratik-div,
  .merakli-div,
  .enerji-div,
  .detay-div {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }

  .detay-div {
    border-bottom: none;
  }
}

/* Genel bölüm stili */
#tanitim {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

/* İç div */
.tanitim-div {
  display: flex;
  flex-wrap: wrap; /* Küçük ekranlarda alt alta düşmesi için */
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
}

/* Her bir özellik kutusu */
.tanitim-div > div {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  flex: 1 1 220px; /* Responsive genişlik */
  max-width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover efekti */
.tanitim-div > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* İkon stili */
.tanitim-div svg {
  margin-bottom: 15px;
  width: 50px;
  height: 50px;
  fill: #7c3aed;
}

/* Başlık stili */
.tanitim-div h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

/* Paragraf stili */
.tanitim-div p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Tüm sayfa için scroll bar */
::-webkit-scrollbar {
  width: 12px; /* Scroll bar genişliği */
}

/* Scroll bar arka planı (track) */
::-webkit-scrollbar-track {
  background: #f7f7f8; /* Açık gri arka plan */
  border-radius: 10px;
}

/* Scroll bar tutacağı (thumb) */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #6d28d9 0%, #7c3aed 50%, #8b5cf6 100%);
  border-radius: 10px;
  border: 2px solid #f7f7f8; /* Kenarlardan biraz boşluk */
  transition: all 0.3s ease;
}

/* Scroll bar hover efekti */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #5b21b6 0%, #6d28d9 50%, #7c3aed 100%);
  border: 2px solid #e6e6f0;
  box-shadow: 0 0 10px rgba(109, 40, 217, 0.3);
}

/* Scroll bar aktif (tıklanmış) hali */
::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #4c1d95 0%, #5b21b6 50%, #6d28d9 100%);
}

/* Firefox için scroll bar */
* {
  scrollbar-width: thin; /* Firefox'ta ince scroll bar */
  scrollbar-color: #6d28d9 #f7f7f8; /* Thumb rengi ve track rengi */
}

    /* Form sayfasına özel stiller */
    .contact-hero {
      text-align: center;
      padding: 80px 20px 60px 20px;
      background: linear-gradient(135deg, #5422ca 0%, #6d28d9 100%);
      color: white;
    }

    .contact-hero h1 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
      animation: fadeInUp 0.8s ease;
    }

    .contact-hero p {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      margin: 0 auto;
      animation: fadeInUp 1s ease;
    }

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

    .contact-container {
      max-width: 1200px;
      margin: -40px auto 80px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .contact-form-section {
      background: white;
      padding: 50px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      animation: slideInLeft 0.8s ease;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .contact-info-section {
      padding: 0;
      animation: slideInRight 0.8s ease;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      font-size: 16px;
      font-weight: 600;
      color: #111827;
      margin-bottom: 10px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 15px 18px;
      border: 2px solid #e6e6f0;
      border-radius: 10px;
      font-family: 'Rubik', sans-serif;
      font-size: 16px;
      color: #111827;
      transition: all 0.3s ease;
      box-sizing: border-box;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: #6d28d9;
      box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 150px;
    }

    .submit-btn {
      width: 100%;
      padding: 16px 30px;
      background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
      color: white;
      border: none;
      border-radius: 100px;
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(109, 40, 217, 0.3);
    }

    .submit-btn:active {
      transform: translateY(0);
    }

    .info-card {
      background: white;
      padding: 35px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .info-card:last-child {
      margin-bottom: 0;
    }

    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .info-card-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #28e3c4 0%, #00ffd5 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .info-card-icon svg {
      width: 28px;
      height: 28px;
      color: #0d002b;
    }

    .info-card h3 {
      font-size: 20px;
      color: #111827;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .info-card p {
      font-size: 16px;
      color: #6b7280;
      line-height: 1.6;
      margin: 0;
    }

    .info-card a {
      color: #6d28d9;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .info-card a:hover {
      color: #7c3aed;
    }

    .success-message {
      display: none;
      background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
      color: white;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 25px;
      text-align: center;
      font-weight: 600;
      animation: slideDown 0.5s ease;
    }

    .success-message.show {
      display: block;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive tasarım */
    @media (max-width: 991px) {
      .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .contact-hero h1 {
        font-size: 36px;
      }

      .contact-hero p {
        font-size: 18px;
      }

      .contact-form-section {
        padding: 35px 25px;
      }

      .contact-info-section {
        padding: 35px 25px;
      }

      .info-card {
        margin-bottom: 20px;
      }
    }

    @media (max-width: 480px) {
      .contact-hero {
        padding: 60px 15px 40px 15px;
      }

      .contact-hero h1 {
        font-size: 28px;
      }

      .contact-hero p {
        font-size: 16px;
      }

      .contact-form-section {
        padding: 30px 20px;
      }

      .contact-info-section {
        padding: 30px 20px;
      }

      .info-card {
        padding: 25px 20px;
      }
    }




    /* ============================================
   1. LOADING ANIMASYONU (Sayfa Yüklenirken)
   ============================================ */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6d28d9 0%, #5422ca 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Loading Logo */
.loader-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Loading Spinner */
.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #28e3c4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Loading Text */
.loader-text {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  letter-spacing: 2px;
}

/* ============================================
   2. SAYFA GEÇİŞ ANİMASYONU
   ============================================ */

body {
  animation: fadeIn 0.6s ease-in;
}

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

/* ============================================
   3. GELİŞMİŞ HOVER EFEKTLERİ
   ============================================ */

/* Kartlara daha fazla depth */
.skill-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(109, 40, 217, 0.25);
}

.kimim-div:hover,
.calisma-div:hover,
.gitmek-div:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(109, 40, 217, 0.15);
  transition: all 0.3s ease;
}

.pratik-div:hover,
.merakli-div:hover,
.enerji-div:hover,
.detay-div:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(109, 40, 217, 0.15);
  transition: all 0.3s ease;
}

/* ============================================
   4. GRADIENT TEXT BAŞLIKLAR
   ============================================ */

#main-h1 {
  background: linear-gradient(135deg, #6d28d9 0%, #28e3c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ============================================
   5. SCROLL REVEAL ANİMASYONLARI
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   6. BACK TO TOP BUTONU
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(109, 40, 217, 0.4);
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* ============================================
   7. İYİLEŞTİRİLMİŞ NAVBAR
   ============================================ */

#navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
}

#navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

/* ============================================
   8. TOOLTIP EFEKTİ (Sosyal Medya Butonları)
   ============================================ */

.footer-buttons button {
  position: relative;
}

.footer-buttons button::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.footer-buttons button:hover::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* ============================================
   9. PULSE ANİMASYONU (CTA Butonları)
   ============================================ */

#navbar-button,
.project-button {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(109, 40, 217, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(109, 40, 217, 0);
  }
}

#navbar-button:hover,
.project-button:hover {
  animation: none;
}

/* ============================================
   10. SKELETON LOADER (Resimler Yüklenirken)
   ============================================ */

img {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

img.loaded {
  animation: none;
  background: none;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ============================================
   11. RESPONSIVE İYİLEŞTİRMELER
   ============================================ */

@media (max-width: 480px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .loader-logo {
    width: 60px;
    height: 60px;
  }
  
  .loader-spinner {
    width: 50px;
    height: 50px;
  }
  
  .loader-text {
    font-size: 16px;
  }
}



/* Hikaye Bölümü Stilleri */
#hikaye {
  background: linear-gradient(135deg, #f7f7f8 0%, #ffffff 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

#hikaye::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hikaye-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hikaye-content {
  background: white;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  animation: fadeInUp 0.8s ease;
}

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

/* İkon */
.hikaye-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Başlık */
.hikaye-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.hikaye-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6d28d9, #28e3c4);
  border-radius: 2px;
}

/* Metin */
.hikaye-text {
  margin-bottom: 50px;
}

.hikaye-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
  text-align: justify;
}

.hikaye-text p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #6d28d9;
}

/* İstatistikler */
.hikaye-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 40px;
  border-top: 2px solid #f3f4f6;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #f9f9fb 0%, #ffffff 100%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(109, 40, 217, 0.1);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #6d28d9 0%, #28e3c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  #hikaye {
    padding: 60px 15px;
  }
  
  .hikaye-content {
    padding: 40px 30px;
  }
  
  .hikaye-title {
    font-size: 32px;
  }
  
  .hikaye-text p {
    font-size: 16px;
    text-align: left;
  }
  
  .hikaye-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .hikaye-content {
    padding: 30px 20px;
  }
  
  .hikaye-title {
    font-size: 26px;
  }
  
  .hikaye-text p {
    font-size: 15px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 12px;
  }
}