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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #F2F2F7; /* textLight */
  background: #141414; /* background */
}

/* Logo */
.logo img {
  height: 120px;
  width: auto;
  display: block;
}

/* Navbar */
.navbar {
  background: #191919; /* ustbar */
  color: #F2F2F7;
  height: 70px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}

/* Menü */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  font-size: 12px;
}

.nav-links li a {
  color: #F2F2F7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #F9A825; /* primary */
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #F2F2F7;
}

/* Mobil menü */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #191919;
    padding: 15px;
    border-radius: 8px;
    gap: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  }

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

  .hamburger {
    display: block;
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #F9A825, #FF6F00);
  color: #F2F2F7;
  padding: 4rem 1rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(20px); }
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  max-width: 1000px;
  margin: 0 auto;
}

.hero p {
  margin: 1.5rem auto 2.5rem;
  font-size: 1.2rem;
  max-width: 900px;
  line-height: 1.6;
}

.hero .highlight {
  color: #000;
  background: #fff3cd;
  padding: 0 6px;
  border-radius: 4px;
}

/* CTA Butonlar */
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 1.5rem;
}

.store-buttons img {
  height: 55px;
  transition: transform 0.2s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .store-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .store-buttons img {
    height: 45px;
  }
}

/* Özellikler */
.features {
  padding: 40px 40px;
  text-align: center;
}

.features h2 {
  font-size: 28px;
  font-weight: 700;
  color: #F9A825;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  gap: 30px;
  width: 100%;
}

/* Mobil: 1 kolon */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet: 2 kolon */
@media (min-width: 769px) and (max-width: 1199px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Masaüstü: 3 kolon (3+3 olacak) */
@media (min-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #2a2a2a;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-6px);
}
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.feature-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}





/* Grid responsive */
@media (max-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.4;
    padding: 0 1rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Nasıl Çalışır */
.howitworks {
  padding: 4rem 1rem;
  background: #191919;
  text-align: center;
}

.howitworks h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #F9A825;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.step {
  background: #1E1E24;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s ease;
  color: #F2F2F7;
}

.step:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #1E1E24, #141414);
}

/* İletişim */
.contact {
  padding: 8rem 1rem;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #F9A825;
}

.contact p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: #9E9EAE;
}

.contact a {
  color: #F9A825;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #000;
  text-align: center;
  font-size: 0.9rem;
  color: #9E9EAE;
  margin-top: 2rem;
}

.footer .social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer .social-links a {
  color: #F2F2F7;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer .social-links a:hover {
  color: #F9A825;
}

/* Blog Yazıları */
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 20px;
}

.blog-post {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin-bottom: 40px;
  animation: fadeIn .5s ease-in-out;
}

.blog-post h1 {
  font-size: 32px;
  color: #f9a825;
  margin-bottom: 10px;
}

.blog-post h2 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #fff;
}

.blog-post h3 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 8px;
  color: #ccc;
}

.blog-post p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}

.blog-post img {
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.meta {
  background: #2a2a2a;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 14px;
  color: #bbb;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #f9a825;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  transition: background .3s;
}

.cta-btn:hover {
  background: #d48f00;
  color: #fff;
}

@keyframes fadeIn {
  from {opacity:0; transform: translateY(20px);}
  to {opacity:1; transform: translateY(0);}
}
