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

html, body { height: 100%; }

body.download-page {
  background: #ffffff;
  color: #0d2b5c;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* main içeriği esnesin */
main.page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* -------------------------
   NAVBAR
--------------------------*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d2b5c;
  padding: 10px 20px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif; /* ✅ aynı font */
}

.logo a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.logo img {
  height: 40px;
  margin-right: 8px;
}

.logo span {
  font-size: 1.2rem;
  font-weight: bold;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  line-height: 1;
}

.navbar nav a.active {
  font-weight: 600;
  text-decoration: none; /* ✅ alt çizgi yok */
}

.navbar nav a.active::after {
  display: none; /* ✅ çizgi tamamen kaldırıldı */
}

/* Dil seçici */
.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.language-selector .lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.language-selector img {
  width: 24px;
  height: auto;
  display: block;
}

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

  .navbar nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 15px;
    margin-top: 10px;
    line-height: 1;
  }

   .navbar nav a {
    font-size: 0.9rem;   /* ✅ biraz küçüldü */
    padding: 6px 0;      /* ✅ üst-alt boşluk eklendi */
  }

  .language-selector {
    margin-top: 8px;
    justify-content: center;
    width: 100%;
  }
}

/* -------------------------
   SAYFA BAŞLIĞI
--------------------------*/
.page-hero {
  text-align: center;
  padding: 40px 20px 20px;
  margin-top: 25px; 
}

.page-hero h1 {
  font-size: 2rem;
  color: #0d2b5c;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: #444;
}

/* -------------------------
   İNDİRME KARTLARI
--------------------------*/
.download-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  margin: 24px auto 0;
  padding: 0 16px 40px;
  flex-wrap: wrap;
}

.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f6f8;
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: auto;       /* ✅ içerik kadar genişlik */
  min-width: 220px;  /* ✅ çok daralmaması için alt limit */
  max-width: 100%;   /* ✅ responsive bozulmasın */
}

.download-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.download-card i {
  font-size: 40px;
  color: #0d2b5c;
  margin-bottom: 12px;
}

.download-card h3 {
  margin: 8px 0 8px;
  font-size: 1.2rem;
  color: #0d2b5c;
}

.download-card p {
  margin: 0 0 14px;
  color: #44556b;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Buton */
.download-btn {
  display: inline-block;
  padding: 12px 18px;
  background: #0d2b5c;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-top: auto;
}

.download-btn:hover {
  background: #0b2450;
}

/* Responsive Kartlar */
@media (max-width: 700px) {
  .download-cards {
    flex-direction: column;
    align-items: center;
  }
  .download-card {
    width: 100%;
    max-width: 420px;
  }
}

.features {
  list-style: none;
  padding: 0;
}
.features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
}
.features .icon-check {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23003366" viewBox="0 0 24 24"><path d="M9 16.2l-3.5-3.5 1.4-1.4L9 13.4l7.1-7.1 1.4 1.4L9 16.2z"/></svg>') no-repeat center;
  background-size: contain;
}


/* -------------------------
   FOOTER
--------------------------*/
footer {
  background: #0d2b5c;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: bold;
}
