/* =========================================
   TEMEL TEMA RENKLERİ
   (Sitede kullandığımız ana renk değişkenleri)
========================================= */
:root {
  --primary: #38BDF8;        /* Buton / vurgu rengi */
  --primary-dark: #1E2A44;   /* Logo ile uyumlu koyu mavi */

  --bg-dark: #0F172A;        /* Hero / footer arka plan */
  --bg-header: #0B1120;      /* Üst menü arka plan */

  --text-main: #1F2933;      /* Ana metin rengi (koyu gri) */
  --text-muted: #6B7280;     /* Açıklama metin rengi (orta gri) */

  --card-bg: #1E293B;        /* Hizmet / proje kartlarının rengi */
}

/* =========================================
   GENEL AYARLAR
   (Reset + temel tipografi)
========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: #f5f7fa;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================================
   HEADER / MENÜ
========================================= */
.header {
  background: var(--bg-header);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

/* Logo ve yanındaki yazı grubu */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 1.42rem;
  font-weight: 700;
}

/* “Bilişim” yazısının görünümü */
.logo-bilisim {
  color: #eef2f7;
  font-weight: 600;
  letter-spacing: 0.015em;
  margin-left: 2px;
}

/* Logo altındaki küçük slogan */
.logo-tagline {
  font-size: 0.76rem;
  color: #9ca3af;
  margin-top: 3px;
  letter-spacing: 0.07em;
}

.z-index-999{
  z-index: 999;
}

.z-index-0{
  z-index: 0 !important;
}

/* Üst menü linkleri */
.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

/* Menü hover / aktif efekti */
.nav-links a:hover,
.nav-links a.active {
  background: rgba(148, 163, 184, 0.3);
}

/* Mobil menü butonu (hamburger) */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #4b5563;
  color: #e5e7eb;
  border-radius: 0.375rem;
  padding: 0.2rem 0.5rem;
  font-size: 1.1rem;
}

/* =========================================
   HERO BÖLÜMÜ (En üstteki büyük alan)
========================================= */
.hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, #0B1120 0%, #020617 100%);
  color: #F1F5F9;
  position: relative;
  overflow: hidden;
}

/* Hero üzerinde hafif grid dokusu */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1 1 260px;
}

.hero-text h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #F9FAFB;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.05rem;
  color: #CBD5E1;
  max-width: 580px;
  margin-bottom: 1.5rem;
}

/* Ana CTA butonu */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.35);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: #0EA5E9;
  box-shadow: 0 6px 30px rgba(56, 189, 248, 0.5);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.97);
}

/* Hero sağındaki iletişim kutusu */
.hero-box {
  flex: 0 1 260px;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 1rem;
  padding: 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #E5E7EB;
}

.hero-box h3,
.hero-box strong {
  color: #F9FAFB;
}

.hero-box p {
  margin: 0.2rem 0;
  white-space: nowrap;
}

/* =========================================
   GENEL BÖLÜM YAPISI
   (.section ve .section-alt tüm sayfa blokları)
========================================= */

/* Standart bölümler – soft mavi gradient + PNG doku */
.section {
  padding: 3rem 0;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.96), rgba(234, 236, 240, 0.96)),
    url("images/datacenter-bg.png") center/cover fixed no-repeat;
}

/* Alternatif bölümler – biraz daha gri/soft ton (datacenter için override gelecek) */
.section-alt {
  padding: 3rem 0;
  background:
    linear-gradient(180deg, rgba(229, 231, 235, 0.96), rgba(214, 219, 225, 0.96)),
    url("images/datacenter-bg.png") center/cover fixed no-repeat;
}

/* Bölüm başlıkları */
.section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================================
   GRID – HİZMETLER / PROJELER / ÇÖZÜM ORTAKLARI
========================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Hizmet / proje kartları */
.card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 1.8rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #CBD5E1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.45);
  border-color: rgba(56, 189, 248, 0.8);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #F9FAFB;
}

.card p {
  color: #E5E7EB;
  line-height: 1.6;
}

/* Çözüm ortakları gibi teknoloji kartları için ekstra hover */
.tech-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-card:hover {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.15);
}

/* =========================================
   HAKKIMIZDA BÖLÜMÜ
========================================= */
.about {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: start;
}

/* Sağdaki kutular (Kurumsal Yaklaşım / Neden Win Bilişim) */
.about-box {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.about-box ul {
  list-style: disc;
  margin-left: 1.2rem;
  margin-top: 0.5rem;
}

/* Sağ sütun iç içe kutular */
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Hakkımızda hero başlık alanı */
.about-hero h1 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
}

.about-hero .section-subtitle {
  max-width: 720px;
  margin: 0.5rem auto 1.5rem;
}

/* Anahtar kelime pill’leri */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #e5f5ff;
  color: #0f172a;
  font-size: 0.85rem;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

/* Zaman çizelgesi (timeline) */
.timeline {
  margin-top: 2rem;
  border-left: 2px solid rgba(148, 163, 184, 0.5);
  padding-left: 1.5rem;
}

.timeline-item {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-year {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

/* Timeline üzerindeki nokta */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.25);
}

/* Hakkımızda istatistik kutuları */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.stat-item {
  background: #0f172a;
  color: #e5e7eb;
  padding: 1.1rem 1.3rem;
  border-radius: 0.9rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #e5e7eb;
}

.about-note {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
}

/* =========================================
   REFERANSLAR / ÇÖZÜM ORTAKLARI PILL’LERİ
========================================= */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Çözüm ortakları için küçük kart görünümlü pill’ler */
.logo-placeholder {
  min-width: 140px;
  text-align: center;
  padding: 0.8rem 1.2rem;
  border-radius: 0.75rem;
  background: #050227a0;                        /* Koyu lacivert yarı şeffaf arka plan */
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.06);
  font-weight: 600;
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* =========================================
   İLETİŞİM BÖLÜMÜ
========================================= */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: start;
}

.contact-info {
  list-style: none;
  margin-top: 1rem;
}

.contact-info li {
  margin-bottom: 0.4rem;
}

/* İletişim formunun arka planı */
.contact-form {
  background: #050227a0;                       /* Datacenter resmi üzerinde koyu kutu */
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(19, 131, 9, 0.08); /* Hafif gölge (yeşil tonda ama çok düşük) */
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Form input / textarea stilleri */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #ffffff;
  font: inherit;
  background: rgba(15, 23, 42, 0.85);
  color: #e5f2ff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.85);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

/* İletişim bölümünde yazıları daha okunur yapmak için */
#iletisim {
  position: relative;
  color: #e5f2ff;
}

#iletisim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);          /* Datacenter üstüne koyu overlay */
  z-index: 1;
}

#iletisim > .container {
  position: relative;
  z-index: 2;
}

#iletisim h2,
#iletisim p,
#iletisim li,
#iletisim strong,
#iletisim a {
  color: #e5f2ff;
}

/* Başlıkta hafif glow efekti */
#iletisim h2 {
  text-shadow: 0 0 14px rgba(15, 23, 42, 0.9);
}

/* =========================================
   FOOTER (ALT BANT)
========================================= */
.footer {
  background: var(--bg-dark);
  padding: 1.5rem 0;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 3 sütunun hizalanması (sol yazı, orta logo, sağ ikonlar) */
.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.footer-left {
  justify-content: flex-start;
}

.footer-center {
  justify-content: center;
}

.footer-center img {
  height: 38px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer-center img:hover {
  opacity: 1;
}

.footer-right {
  justify-content: flex-end;
  gap: 0.75rem;
}

/* Sosyal medya ikonları (SVG) */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #cbd5e1;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.2s;
}

.social-svg rect,
.social-svg path,
.social-svg circle {
  fill: none;
  stroke: #cbd5e1;
}

/* Hover’da mavi vurgu */
.social-icon:hover .social-svg rect,
.social-icon:hover .social-svg path,
.social-icon:hover .social-svg circle {
  stroke: var(--primary);
}

/* =========================================
   DATA CENTER ARKA PLAN + “YANIP SÖNEN”
   MAVİ IŞIK EFECTİ (CSS ANİMASYONU)
========================================= */

/* Data center görseli kullanmak istediğimiz bölümler:
   - Hizmetler (#hizmetler)
   - Öne Çıkan Projeler (#projeler) -> .section-alt
   - Çözüm Ortaklarımız (#referanslar)
   - İletişim (#iletisim) -> .section-alt */
.section-alt,
#hizmetler,
#referanslar {
  position: relative;
  background:
    url("images/datacenter-bg.png") center/cover fixed no-repeat;
  overflow: hidden;
}

/* Tüm bu bölümlere mavi “yanıp sönme” efekti bindir */
.section-alt::after,
#hizmetler::after,
#referanslar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(0, 180, 255, 0.35),
    transparent 70%
  );
  mix-blend-mode: screen;
  animation: blink 1.8s infinite ease-in-out;   /* GIF benzeri sürekli nefes alan glow */
  pointer-events: none;
}

/* Mavi ışık “nefes alma” animasyonu */
@keyframes blink {
  0%, 100% { opacity: 0.12; }
  50%      { opacity: 0.55; }
}

/* =========================================
   MOBİL UYUMLULUK
========================================= */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  /* Mobilde açılır kapanır menü */
  .nav-links {
    position: absolute;
    top: 56px;
    right: 5%;
    background: var(--bg-header);
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
    display: none;
  }

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

  .nav-toggle {
    display: block;
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 1.9rem;
  }

  .timeline {
    border-left: none;
    padding-left: 0;
  }

  .timeline-item::before {
    display: none;
  }

  .footer-flex {
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    justify-content: center;
  }
}

/* =========================================
   HEADER MARQUEE (KESİNTİSİZ AKAN YAZI)
========================================= */

.header-marquee {
  width: 100%;
  background: rgba(0, 10, 40, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 6px 0;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  gap: 80px;
  width: max-content;          /* 💥 kritik */
  animation: marqueeLoop 18s linear infinite;
  will-change: transform;
}

.marquee-text {
  font-size: 0.85rem;
  color: #38BDF8;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ================================
   HAKKIMIZDA SAYFASI – DATACENTER ARKA PLANINI KALDIR
================================= */
#hakkimizda-icerik.section-alt,
#hakkimizda-hero.section,
.about-hero.section {
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.96), rgba(234, 236, 240, 0.96)),
    url("images/soft-gradient-bg.png") center/cover no-repeat !important;
}

#hakkimizda-icerik.section-alt::after {
  display: none !important;
}
/* ================================
   HAKKIMIZDA SAYFASI – ÖZEL ARKA PLAN
================================ */

/* Body'yi özel ID ile hedefliyoruz */
#hakkimizda-body {
  background: url("images/hakkimizda.png") center/cover fixed no-repeat !important;
  position: relative;
  min-height: 100vh;
}

/* Koyu overlay – yazılar çok daha net okunur */
#hakkimizda-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);   /* %55 koyu — profesyonel görünüm */
  z-index: 0;
}

/* Sayfa içeriği overlay’in üzerinde olsun */
#hakkimizda-body > * {
  position: relative;
  z-index: 1;
}

/* Hakkımızda kutularına cam efekti */
#hakkimizda-body .about-box,
#hakkimizda-body .card {
  background: rgba(15, 23, 42, 0.78);  /* Cam koyu */
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

/* Yazı renklerini daha görünür yap */
#hakkimizda-body h1,
#hakkimizda-body h2,
#hakkimizda-body p,
#hakkimizda-body li,
#hakkimizda-body strong {
  color: #e9f5ff !important;
}

#hakkimizda-body .timeline-year {
  color: #38BDF8 !important;
}

/* Arka planda datacenter efekti sadece diğer sayfalarda aktif olsun */
#hakkimizda-body .section,
#hakkimizda-body .section-alt {
  background: transparent !important;
  box-shadow: none !important;
}

/* Datacenter blink efektini tamamen kaldırıyoruz */
#hakkimizda-body .section::after,
#hakkimizda-body .section-alt::after {
  display: none !important;
}
/* ============================
   Hakkımızda kutularındaki başlıkların görünmesi için
============================ */
#hakkimizda-body .about-box h3 {
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
}
