/* Genel Stil Ayarları */
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background-color: #4A5A2F; /* Çok Koyu Sarımsı Gri */
  color: #000000; /* Siyah Yazı */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  position: relative;
  overflow-x: hidden;
  padding: 20px 0;
  box-sizing: border-box;
}

/* Pipeline Loading Animation */
.pipeline-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.5s ease;
}

.pipeline-container {
  background: #2d2d2d;
  padding: 40px;
  border-radius: 16px;
  min-width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #404040;
}

.pipeline-title {
  font-size: 24px;
  font-weight: 600;
  color: #9CAF88;
  margin-bottom: 30px;
  text-align: center;
}

.pipeline-stages {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
}

.stage {
  background: #404040;
  color: #888;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  flex: 1;
  text-align: center;
  transition: all 0.3s ease;
}

.stage.active {
  background: #9CAF88;
  color: #000;
  transform: scale(1.05);
}

.pipeline-bar {
  background: #404040;
  height: 8px;
  border-radius: 4px;
  margin: 20px 0;
  overflow: hidden;
}

.pipeline-progress {
  background: linear-gradient(90deg, #9CAF88, #8FB28F);
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 4px;
}

.pipeline-status {
  color: #9CAF88;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top: 15px;
  min-height: 24px;
}

#main-content {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 480px) {
  .pipeline-container {
    min-width: 320px;
    padding: 30px 20px;
    margin: 0 20px;
  }
  
  .pipeline-title {
    font-size: 20px;
  }
  
  .stage {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* İçerik Container */
.container {
  width: 90%;
  max-width: 420px;
  padding: 40px 35px;
  border-radius: 24px;
  background-color: #000000; /* Siyah Arka Plan */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    max-width: 350px;
    padding: 30px 25px;
    margin: 0 20px;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 320px;
    padding: 25px 20px;
    margin: 0 15px;
  }
}

/* Profil Fotoğrafı */
.profile-pic {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #9CAF88;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(156, 175, 136, 0.15);
}

.profile-pic:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(156, 175, 136, 0.25);
}

@media (max-width: 480px) {
  .profile-pic {
    width: 110px;
    height: 110px;
    border: 3px solid #9CAF88;
  }
}

/* Başlık */
h1 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 600;
  color: #FFFFFF; /* Beyaz Yazı */
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
    margin-top: 15px;
  }
}

/* Kısa Biyografi */
.bio {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 35px;
  margin-top: 5px;
  color: #FFFFFF; /* Beyaz Yazı */
  line-height: 1.5;
  letter-spacing: 0.01em;
}

@media (max-width: 480px) {
  .bio {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

/* Link Butonları */
.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.links a {
  display: block;
  background: #9CAF88; /* Çok Yumuşak Pastel Yeşil Zemin */
  color: #000000; /* Siyah Yazı */
  padding: 18px 28px;
  border-radius: 16px;
  font-weight: 500;
  font-size: 17px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 15px rgba(156, 175, 136, 0.15);
}

.links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.links a:hover::before {
  left: 100%;
}

@media (max-width: 480px) {
  .links {
    gap: 12px;
  }
  
  .links a {
    padding: 16px 22px;
    font-size: 16px;
  }
  
  .contact {
    margin-top: 20px;
    padding-top: 15px;
  }
  
  .mail-button {
    padding: 10px 18px !important;
    font-size: 14px !important;
  }
}

/* Link Hover Efekti */
.links a:hover {
  background: #000000; /* Siyah Arka Plan */
  color: #FFFFFF; /* Beyaz Yazı */
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(156, 175, 136, 0.15);
}

.mail-button {
  display: inline-block;
  background: rgba(156, 175, 136, 0.12) !important;
  color: #9CAF88 !important;
  border: 2px solid #9CAF88;
  padding: 14px 24px !important;
  border-radius: 14px !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-decoration: none !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 0 20px rgba(156, 175, 136, 0.15) !important;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
}

.mail-button:hover {
  background: #9CAF88 !important;
  color: #000000 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(156, 175, 136, 0.3) !important;
}

.mail-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.mail-button:hover::before {
  left: 100%;
}

/* DevOps Arka Plan İkonları */
.devops-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.08;
  overflow: hidden;
}

.devops-icon {
  position: absolute;
  font-size: 60px;
  color: #9CAF88;
  opacity: 0.05;
  animation: float 20s infinite linear;
}

.devops-icon:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.devops-icon:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: -5s;
}

.devops-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: -10s;
}

.devops-icon:nth-child(4) {
  bottom: 15%;
  right: 10%;
  animation-delay: -15s;
}

.devops-icon:nth-child(5) {
  top: 50%;
  left: 5%;
  animation-delay: -8s;
}

.devops-icon:nth-child(6) {
  top: 70%;
  right: 5%;
  animation-delay: -12s;
}

.devops-icon:nth-child(7) {
  top: 35%;
  left: 80%;
  animation-delay: -3s;
}

.devops-icon:nth-child(8) {
  top: 80%;
  left: 40%;
  animation-delay: -7s;
}

.devops-icon:nth-child(9) {
  top: 15%;
  left: 50%;
  animation-delay: -11s;
}

.devops-icon:nth-child(10) {
  bottom: 40%;
  right: 25%;
  animation-delay: -4s;
}

.devops-icon:nth-child(11) {
  top: 60%;
  left: 15%;
  animation-delay: -9s;
}

.devops-icon:nth-child(12) {
  bottom: 20%;
  left: 60%;
  animation-delay: -6s;
}

.devops-icon:nth-child(13) {
  top: 25%;
  left: 30%;
  animation-delay: -14s;
}

.devops-icon:nth-child(14) {
  bottom: 50%;
  right: 40%;
  animation-delay: -2s;
}

.devops-icon:nth-child(15) {
  top: 45%;
  right: 8%;
  animation-delay: -16s;
}

.devops-icon:nth-child(16) {
  bottom: 35%;
  left: 5%;
  animation-delay: -1s;
}

.devops-icon:nth-child(17) {
  top: 55%;
  left: 65%;
  animation-delay: -13s;
}

.devops-icon:nth-child(18) {
  bottom: 10%;
  right: 50%;
  animation-delay: -18s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0px) rotate(360deg);
  }
}
