/* =====================================================
   SITE.CSS — Genel stil + import yönetimi
   ===================================================== */

/* ------------------------------
   Diğer CSS dosyaları
------------------------------ */
@import url('./navbar.css');
@import url('./footer.css');
@import url('./contact.css');
@import url('./services.css');
@import url('./about.css');
@import url('./index.css');


/* ------------------------------
   Genel Stil
------------------------------ */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fafafa;
  scroll-behavior: smooth;
}

.container {
  padding: 20px;
  max-width: 1100px;
  margin: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ------------------------------
   Hero Bölümü (Ana Sayfa)
------------------------------ */
.hero-section {
  background: linear-gradient(to right, #003366, #005fa3);
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 🔹 Profesyonel renk geçişli başlık */
/* 🔹 Profesyonel renk geçişli başlık (daha estetik sürüm) */
.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(
    115deg,
    #e0f7ff 0%,
    #00b4ff 25%,
    #007bff 50%,
    #004aad 75%,
    #00e1ff 100%
  );
  background-size: 250% 250%;
 
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  animation: gradientShift 8s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero-title:hover {
  transform: scale(1.03);
}

/* 🔹 Işık akışı ve canlı geçiş animasyonu */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.btn-primary {
  background: #ffcc00;
  color: #003366;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: #ffe066;
  transform: scale(1.05);
}

.btn-secondary {
  background: #003366;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin-top: 15px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: #005fa3;
  transform: translateY(-2px);
}

/* ------------------------------
   Özellikler Bölümü
------------------------------ */
.features-section {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.features-section h2 {
  color: #003366;
  margin-bottom: 40px;
  font-size: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.feature-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.feature-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #003366;
  margin-bottom: 10px;
  font-weight: 600;
}

/* ------------------------------
   Responsive Düzen
------------------------------ */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }

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

  .about-section h2 {
    font-size: 1.7rem;
  }

  .features-grid {
    gap: 20px;
  }
}
