/* Ana stil dosyası */
:root {
  --primary: #0468D7;
  --secondary: #2CBFF4;
  --accent: #FB8C00;
  --text: #2D3748;
  --light: #F7FAFC;
  --dark: #1A202C;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible; /* Hover efektlerinin görünmesi için */
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
  overflow: visible; /* Hover efektlerinin görünmesi için */
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 1s ease-in;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--text);
  animation: fadeIn 1.2s ease-in;
}

.bio {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 2rem;
  color: var(--text);
  animation: fadeIn 1.4s ease-in;
  line-height: 1.7;
  font-style: italic;
  opacity: 0.9;
}

.flutter-logo {
  width: 120px;
  margin-bottom: 1.5rem;
  animation: float 6s ease-in-out infinite;
}

.tech-stack {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
  animation: fadeIn 1.5s ease-in;
  padding: 1rem 0; /* Tech itemlerin yukarı çıkması için padding ekle */
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative; /* Hover efekti için positioning */
  z-index: 1; /* Diğer elementlerin üstünde görünmesi için */
}

.tech-item:hover {
  transform: translateY(-10px);
  z-index: 10; /* Hover'da en üstte olması için */
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  animation: float 6s ease-in-out infinite;
}

.tech-item:nth-child(1) .tech-icon,
.tech-item:nth-child(1) .flutter-icon {
  animation-delay: 0s;
}

.tech-item:nth-child(2) .tech-icon {
  animation-delay: 1s;
}

.tech-item:nth-child(3) .tech-icon {
  animation-delay: 2s;
}

.tech-item:nth-child(4) .tech-icon {
  animation-delay: 3s;
}

.tech-item:nth-child(5) .tech-icon {
  animation-delay: 4s;
}

.tech-logo {
  height: 3rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.flutter-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  animation: float 6s ease-in-out infinite;
}

.btn-container {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeIn 1.8s ease-in;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 14px rgba(4, 104, 215, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(4, 104, 215, 0.4);
}

.social-links-container {
  display: flex;
  gap: 1rem;
  margin-left: 1rem;
}

.social-links-container .social-link {
  color: var(--primary);
  font-size: 1.5rem;
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-links-container .social-link:hover {
  transform: translateY(-5px);
  background-color: var(--primary);
  color: white;
}

.app-store-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  animation: fadeIn 2s ease-in;
}

.store-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: transform 0.3s ease;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.store-link:hover {
  transform: translateY(-5px);
}

.store-icon {
  font-size: 1.8rem;
  margin-right: 0.8rem;
}

.apple-icon {
  color: #000;
}

.google-icon {
  color: #4285F4;
}

.store-link img.google-play {
  height: 60px;
}

.dev-name {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--accent);
  animation: fadeIn 1.1s ease-in;
}

.footer {
  margin-top: auto;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
}
