/* Genel Stiller */
body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Header */

/* Sticky header */
.main-header {
  position: sticky;
  top: 0;
  background: #ffffff; /* net beyaz */
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}

/* Flex düzen */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  height: 40px;
}

/* Menü */
.navbar {
  display: flex;
  gap: 20px;
}

.navbar a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ff6f91;
}
.navbar a.active {
  color: #ff6f91;
  font-weight: bold;
  border-bottom: 2px solid #ff6f91;
}
.navbar a:hover,
.navbar a.active {
  color: #ff6f91;
  font-weight: bold;
  border-bottom: 2px solid #ff6f91;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #ff6f91;
  cursor: pointer;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .navbar {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #ffffff;
    flex-direction: column;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #ffebee, #e3f2fd);
  text-align: center;
  padding: 4rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.store-buttons .btn {
  flex-shrink: 0;
}

.huawei-badge img {
  height: 50px;
  display: block;
}

.google-badge img {
  height: 50px;
  display: block;
}


.btn {
  display: inline-block;
  background-color: #ff4081;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e91e63;
}

/* Özellikler */
.features {
  padding: 4rem 0;
  background-color: #fafafa;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature {
  background-color: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
}

.feature img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}

.feature p {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.feature img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover img {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Screenshot Galerisi */
.screenshots {
  padding: 4rem 0;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.screenshot-gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.screenshot-gallery img:hover {
  transform: scale(1.05);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #777;
}

.breadcrumb a {
  text-decoration: none;
  color: #555;
}

.breadcrumb a:hover {
  color: #ff4081;
}

.breadcrumb span {
  color: #ff4081;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #666;
}

footer a {
  color: #666;
  text-decoration: none;
  margin-left: 1rem;
}

footer a:hover {
  color: #ff4081;
}

.category-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.gallery .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.gallery .feature {
  background-color: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.gallery .feature:hover {
  transform: translateY(-4px);
}

.gallery .feature img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 8px;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #ff4081;
  color: #ff4081;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #ff4081;
  color: white;
}

.pagination {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-link {
  padding: 8px 12px;
  background: #fffafc;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
}

.page-link.active {
  background: #ff6f91;
  color: white;
  font-weight: bold;
}

.page-link.disabled {
  color: #aaa;
  background: #f9f9f9;
  cursor: default;
  pointer-events: none;
}

.about-section {
  padding: 0 0 3rem 0;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #444;
}
.about-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff4081;
}
.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: #777;
}
.breadcrumb a {
  text-decoration: none;
  color: #555;
}
.breadcrumb a:hover {
  color: #ff4081;
}
.about-section p {
  margin-bottom: 1.5rem;
}
.about-section span {
  color: #ff4081;
  font-weight: 600;
}

.iletisim-section {
  padding: 3rem 0;
  font-size: 1.1rem;
  color: #444;
}
.iletisim-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff4081;
}
.iletisim-section p {
  margin-bottom: 2rem;
}
.form-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
form {
  flex: 1;
  min-width: 300px;
  display: grid;
  gap: 1rem;
  max-width: 600px;
}
input,
textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}
input[type="submit"] {
  background-color: #ff4081;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
input[type="submit"]:hover {
  background-color: #e73370;
}
.preview-box {
  flex: 1;
  max-width: 300px;
}
.preview-box img {
  width: 100%;
  display: none;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.tesekkur-kutusu {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #fce4ec;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: #d81b60;
  font-size: 1.1rem;
}

.footer-links-mini {
  text-align: center;
  font-size: 0.95rem;
  color: #777;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  margin-top: 3rem;
}
.footer-links-mini a {
  color: #777;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-links-mini a:hover {
  color: #000;
}
.features-home {
  padding: 4rem 0;
  background-color: #fff8fb;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box {
  flex: 0 0 calc(25% - 15px);
  box-sizing: border-box;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}
.feature-box h3 {
  font-size: 1.3rem;
  color: #ff4081;
  margin-bottom: 0.8rem;
}
.feature-box p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}


@media (max-width: 480px) {
  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .features-grid {
    padding: 20px 10px;
    gap: 16px;
  }

  .feature-box h3 {
    font-size: 16px;
  }

  .feature-box p {
    font-size: 14px;
  }
}


.paylas-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.paylas-container {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  background: #fff0f5;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255, 182, 193, 0.2);
  width: 100%;
}

.paylas-baslik {
  font-weight: 500;
  color: #333;
  font-size: 15px;
}

.paylas-container a svg {
  width: 24px;
  height: 24px;
  fill: #999;
  transition: transform 0.3s ease, fill 0.3s ease;
  cursor: pointer;
}

.paylas-container a:hover svg {
  transform: scale(1.25);
  fill: #ff6f91;
}
@media (max-width: 600px) {
  .paylas-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .paylas-wrapper {
    justify-content: center;
  }
}


.filtre-form {
  margin: 20px auto;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}

.filtre-form select {
  background: #fff0f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
}

.filtre-ust-kutu {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0;
  padding-right: 20px;
}

.filtre-ust-kutu {
  margin: 20px 0;
  text-align: center;
}

.filtre-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.btn-filtre {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background-color: #f3f3f3;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s ease;
}

.btn-filtre:hover {
  background-color: #ffe4ec;
}

.btn-filtre.active {
  background-color: #ffb6c1;
  color: #fff;
  font-weight: bold;
}

/* Mobil uyum */
@media (max-width: 600px) {
  .filtre-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-filtre {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}


.bos-kategori-uyari {
  text-align: center;
  padding: 50px 20px;
  background: #fff0f5;
  border: 2px dashed #ffb3c6;
  border-radius: 16px;
  margin-top: 40px;
  color: #444;
  font-size: 16px;
}

.bos-kategori-uyari .btn-geri {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #ff6f91;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.bos-kategori-uyari .btn-geri:hover {
  background: #ff3366;
}

@media (max-width: 768px) {
  .filtre-ust-kutu {
    justify-content: center;
    padding-right: 0;
  }
}

.app-screenshots {
  margin-top: 60px;
  text-align: center;
}

.app-screenshots h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #444;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr); /* Mobilde 2 sütun */
  }
}

@media (max-width: 480px) {
  .screenshot-grid {
    grid-template-columns: 1fr; /* Küçük ekranlarda tam genişlik */
  }
}


.screenshot-grid img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 6px;
}

.screenshot-grid img:hover {
  transform: scale(1.04);
}