/* static/css/style.css */

/* ————— Smooth scroll eklendi ————— */
html {
  scroll-behavior: smooth;
}

/* Body’ye tam ekran arkaplan resmi */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  color: #fff;

  /* Arka plan resmi – sabit, tüm ekrana yayılıyor */
  background: url('../images/bg.png') no-repeat center center fixed;
  background-size: cover;
}

/* Sadece okuması kolay olsun diye üzerine hafif koyu katman */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Hero bölümüne biraz ekstra boşluk ve yazı boyutlandırma */
.hero, .text-center.py-5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.hero .display-4, .text-center.py-5 .display-4 {
  font-size: 3.5rem;
}
.hero .lead, .text-center.py-5 .lead {
  font-size: 1.25rem;
}

/* ———————— BURADAN SONRA EKLEYİN ———————— */

/* Navbar’daki logo (desktop) */
.navbar-logo {
  height: 80px;
  /* Logonun orijinal mavi tonlarını beyaza çevirir */
  filter: brightness(0) invert(1);
}

/* Demo Talep Et butonu */
.btn-demo {
  background: linear-gradient(135deg, #00BFFF 0%, #FF00FF 100%);
  border: none;
  border-radius: 30px;
  padding: 0.6rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.btn-demo:hover {
  opacity: 0.85;
}

/* Navbar toggler ikonu koyu arkaplanda görünür olsun */
.navbar-light .navbar-toggler-icon {
  filter: invert(1);
}

/* ———————— Fiyatlandırma için eklenen stiller ———————— */

/* Fiyat wrapper’a biraz boşluk */
.price-wrapper {
  margin-bottom: 1rem;
}

/* Üstü çizili eski fiyat – tam beyaz ve görünür */
.price-wrapper .original-price {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: #fff !important;
  opacity: 1 !important;
}

/* Üstü çizili etiketin çizgi rengi ve metin rengi */
.price-wrapper .original-price del {
  color: #fff !important;
  text-decoration-color: #fff;
}

/* Yeni fiyatın altındaki "USD/yıl" veya "USD/ay" ibaresini biraz küçült */
.price-wrapper .card-price small {
  font-size: 0.6em;
}

/* ———————— Bize Ulaşın Bölümü Stilleri ———————— */

#contact {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#contact .card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #fff;
  border-radius: 0.5rem;
}
#contact .card-body {
  padding: 2rem;
}
#contact .card-title {
  margin-top: 0.5rem;
  color: #fff;
}
#contact img {
  margin-bottom: 1rem;
}
#contact .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ccc;
  color: #fff;
}
#contact .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#contact .form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: #00BFFF;
  box-shadow: none;
}
#contact label {
  color: #fff;
  font-weight: 500;
}
#contact .btn-primary {
  background: #00BFFF;
  border-color: #00BFFF;
}

/* Mobil uyumluluk medya sorguları */

/* Tablet ve altı: logo 60px’e düşsün */
@media (max-width: 991px) {
  .navbar-logo {
    height: 60px;
  }
}

/* Küçük tablet ve büyük telefon: logo 50px, hero yazı küçülsün */
@media (max-width: 767px) {
  .navbar-logo {
    height: 50px;
  }
  .hero .display-4,
  .text-center.py-5 .display-4 {
    font-size: 2rem;
  }
  .hero .lead,
  .text-center.py-5 .lead {
    font-size: 1rem;
  }
}

/* Telefon boyutu: logo 40px, buton ve container padding ayarı */
@media (max-width: 575px) {
  .navbar-logo {
    height: 40px;
  }
  .btn-demo {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
