/* Genel Stiller */
:root {
    --primary-color: #daa520e6;
    --text-color: #ffffff;
    --bg-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar Stilleri */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    width: 32px;
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.store-links {
    display: flex;
    gap: 1rem;
}

.store-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
}

.mobile-nav-link,
.mobile-store-link {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0.5rem 0;
}

.mobile-store-link {
    color: var(--primary-color);
}

/* Hero Section Stilleri */
.hero {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.store-badges {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.store-badge {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.store-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

.app-store-badge {
    height: 48px;
}

.play-store-badge {
    height: 60px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }
} 
/* === FeaturesSection (Nasıl Çalışır?) === */
.features-section {
    background: linear-gradient(180deg, #18181b 0%, #23232a 100%);
    padding: 80px 0 60px 0;
    position: relative;
  }
  
  .features-header {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .features-label {
    color: #daa520e6;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
  }
  
  .features-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 18px;
    letter-spacing: -1px;
  }
  
  .features-desc {
    color: #bdbdbd;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 0;
    font-weight: 400;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 48px auto 0 auto;
  }
  
  .feature-card {
    background: rgba(30, 30, 32, 0.95);
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
    padding: 36px 28px 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(80,80,80,0.18);
    transition: box-shadow 0.3s, transform 0.3s;
  }
  
  .feature-card:hover {
    box-shadow: 0 6px 32px 0 rgba(255, 215, 0, 0.10);
    transform: translateY(-6px) scale(1.03);
    border-color: #daa520e655;
  }
  
  .feature-icon {
    background: rgba(255, 215, 0, 0.10);
    border-radius: 10px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
  
  .feature-card h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .feature-card p {
    color: #bdbdbd;
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 400;
  }
  
  .feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .feature-card li {
    color: #daa520e6;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .feature-card li .tick {
    color: #daa520e6;
    font-size: 1.1em;
    margin-right: 8px;
  }
  
  .features-cta {
    text-align: center;
    margin-top: 40px;
  }
  
  .cta-btn {
    background: #daa520e6;
    color: #18181b;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 38px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 2px 12px 0 rgba(255, 215, 0, 0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: inline-block;
  }
  
  .cta-btn:hover {
    background: #fffbe6;
    color: #18181b;
    transform: scale(1.04);
  }
  
  /* Responsive */
  @media (max-width: 1100px) {
    .features-grid {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  }
  @media (max-width: 700px) {
    .features-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .features-section {
      padding: 48px 0 32px 0;
    }
  }

  /* === AppShowcase (Uygulama Tanıtımı) === */
.appshowcase-section {
  background: linear-gradient(180deg, #23232a 0%, #18181b 100%);
  padding: 80px 0 60px 0;
  position: relative;
  text-align: center;
}

.appshowcase-header {
  margin-bottom: 40px;
}

.appshowcase-label {
  color: #daa520e6;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.appshowcase-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.appshowcase-title .text-primary {
  color: #daa520e6;
}

.appshowcase-desc {
  color: #bdbdbd;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 0;
  font-weight: 400;
}

.appshowcase-img-wrap {
  display: flex;
  justify-content: center;
  margin: 40px 0 32px 0;
}

.appshowcase-img {
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.18);
  width: 60%;
  height: auto;
}

.appshowcase-download {
  margin-top: 24px;
}

.appshowcase-soon {
  display: inline-block;
  background: #23232a;
  color: #daa520e6;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 28px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.appshowcase-badges {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 18px 0 18px 0;
}

.appshowcase-badge img {
  height: 54px;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
}

.appshowcase-badge img:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 24px 0 rgba(255,215,0,0.10);
}

.appshowcase-badge-apple img {
  height: 43px;
  margin-top:5px;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
}

.appshowcase-badge-apple img:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 24px 0 rgba(255,215,0,0.10);
}

.appshowcase-info {
  color: #bdbdbd;
  font-size: 1rem;
  margin: 0 0 18px 0;
}

.appshowcase-btn {
  background: #daa520e6;
  color: #18181b;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 38px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(255, 215, 0, 0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}

.appshowcase-btn:hover {
  background: #fffbe6;
  color: #18181b;
  transform: scale(1.04);
}

/* Responsive */
@media (max-width: 900px) {
  .appshowcase-img {
    max-width: 90vw;
  }
}
@media (max-width: 600px) {
  .appshowcase-section {
    padding: 40px 0 30px 0;
  }
  .appshowcase-title {
    font-size: 1.5rem;
  }
  .appshowcase-img {
    max-width: 100vw;
  }
}
/* === SocialMediaSection === */
.socialmedia-section {
  background: linear-gradient(180deg, #18181b 0%, #23232a 100%);
  padding: 80px 0 60px 0;
  text-align: center;
}

.socialmedia-header {
  margin-bottom: 40px;
}

.socialmedia-label {
  color: #daa520e6;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.socialmedia-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.socialmedia-title .text-primary {
  color: #daa520e6;
}

.socialmedia-desc {
  color: #bdbdbd;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 0;
  font-weight: 400;
}

.socialmedia-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 40px 0 32px 0;
  flex-wrap: wrap;
}

.socialmedia-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  transition: transform 0.2s, color 0.2s;
}

.socialmedia-link:hover {
  color: #daa520e6;
  transform: translateY(-6px) scale(1.06);
}

.socialmedia-icon-bg {
  background: rgba(255, 215, 0, 0.10);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
  transition: background 0.2s;
}

.socialmedia-link:hover .socialmedia-icon-bg {
  background: #daa520e622;
}

.socialmedia-contact-card {
  background: #23232a;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
  padding: 32px 24px;
  max-width: 480px;
  margin: 40px auto 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.socialmedia-contact-icon {
  background: rgba(255, 215, 0, 0.10);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.socialmedia-contact-info {
  flex: 1;
  text-align: left;
}

.socialmedia-contact-info h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.socialmedia-contact-info p {
  color: #bdbdbd;
  font-size: 1rem;
  margin-bottom: 12px;
}

.socialmedia-contact-btn {
  background: #daa520e6;
  color: #18181b;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(255, 215, 0, 0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}

.socialmedia-contact-btn:hover {
  background: #fffbe6;
  color: #18181b;
  transform: scale(1.04);
}

/* === FooterSection === */
.footer-section {
  background: #18181b;
  color: #fff;
  padding: 48px 0 24px 0;
  text-align: center;
}

.footer-content {
  max-width: 700px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-title {
  color: #daa520e6;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-desc {
  color: #bdbdbd;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.footer-copyright {
  border-top: 1px solid #23232a;
  padding-top: 18px;
  margin-top: 18px;
}

.footer-copyright p {
  color: #bdbdbd;
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 700px) {
  .socialmedia-links {
    flex-direction: column;
    gap: 18px;
  }
  .socialmedia-contact-card {
    flex-direction: column;
    gap: 12px;
    padding: 24px 10px;
  }
}