@font-face {
  font-family: "CustomFont";
  src: url("MarkPro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "CustomFontBold";
  src: url("MarkProBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "CustomFontMedium";
  src: url("MarkProMedium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  /* Font Aileleri */
  --font-primary: "CustomFont", Arial, sans-serif;
  --font-primary-bold: "CustomFontBold", Arial, sans-serif;
  --font-primary-medium: "CustomFontMedium", Arial, sans-serif;

  /* Font Boyutları */
  --font-size-big-bold: 90px;
  --font-size-big-bold-2: 72px;
  --font-size-big-bold-3: 64px;
  --font-size-big-regular: 80px;
  --font-size-big-regular-2: 72px;

  --font-size-mid-bold: 40px;
  --font-size-mid-bold-2: 56px;
  --font-size-mid-medium: 40px;
  --font-size-mid-medium-2: 56px;
  --font-size-mid-medium-3: 32px;
  --font-size-mid-regular: 40px;
  --font-size-mid-regular-2: 32px;

  --font-size-small-bold: 24px;
  --font-size-small-bold-2: 20px;
  --font-size-small-medium-: 24px;
  --font-size-small-regular: 24px;
  --font-size-small-regular-2: 20px;

  --font-size-xsmall-bold: 18px;
  --font-size-xsmall-bold-2: 16px;
  --font-size-xsmall: 18px;
  --font-size-xxsmall: 10px;

  /* Renkler */
  --text-color-primary: #ec298f;
  --text-color-primary-light: #ffebf6;
  --text-color-light: #f6f7ff;
  --text-color-dark: #282a3d;
  --text-color-dark-mid-2: #4d5176;
  --text-color-dark-mid: #5e617d;
  --text-color-dark-mid-3: #8b8fc0;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  /* height: 100%; */
  overflow-x: hidden;
  background-color: white;
  font-family: var(--font-primary);
}

#hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 8;
}

#circle {
  position: absolute;
  z-index: 2; /* Yuvarlak arka plandan üstte */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 7;
  width: 100%;
}
.burger-menu {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}
.menu-container {
  display: flex;
  width: 75%;
  align-items: center;
  justify-content: space-between;
  /* gap: 24px; */
}
#hero {
  position: relative;
  z-index: 2; /* Yuvarlak arka plandan üstte */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 8;
}

#hero img {
  width: 100%;
  height: auto; /* Görsel oranlı genişlik */
  transform: scale(0.1); /* Küçük başlar */
  transform-origin: center; /* Ölçeklenme merkezi */
  transition: transform 2s ease-in-out; /* Görsel büyüme animasyonu */
}
#circle img {
  width: 500%;
  height: auto; /* Görsel oranlı genişlik */
  transform: scale(0.1); /* Küçük başlar */
  transform-origin: center; /* Ölçeklenme merkezi */
  transition: transform 2s ease-in-out; /* Görsel büyüme animasyonu */
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  /* height: 100%; */
  background-color: white; /* Arka plan beyaz */
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Ana İçerik */
#main-content {
  display: block;
  position: relative;
  z-index: 2;
  max-width: 100vw;
}

.content-section {
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-align: center;
}
.content-section-1 {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-align: center;
}
.content-section h1 {
  font-size: 2rem;
  color: #333;
}

.content-section p {
  font-size: 1.2rem;
  color: #555;
}

.content-section.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 95vh; /* Tam ekran yüksekliği */
  width: 100vw;
  padding: 20px;
  position: relative;
  z-index: 1;
  background-image: url("app-header-bg.png"); /* Sadece bu bölümde arka plan resmi */
  background-size: cover; /* Görsel ekran boyutuna göre ölçeklenir */
  background-position: center; /* Görseli ortala */
  background-repeat: no-repeat; /* Görseli tekrar ettirme */
  color: #fff; /* Yazılar için beyaz renk */
}

.logo-container {
  width: 150px;
  height: 50px;

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-image {
  transform: translateX(10%);
  transform: translateY(10%);
  width: 104px;
  height: auto;
  object-fit: contain;
  position: absolute;
}
.middle-logo-image {
  /* transform: translateX(10%);
    transform: translateY(10%); */
  width: 20%;
  height: auto;
  object-fit: contain;
  position: relative;
  justify-content: center;
  margin-bottom: 5%;
}

.navbar {
  transform: translateY(-30%);
  position: fixed; /* Navbar'ı ekranın en üstüne sabitler */
  padding: 10px 50px; /* Sol ve sağdan boşluk ekler */
  top: 30px; /* Sayfanın en üstüne hizalar */
  left: 0;
  width: 100%; /* Ekran genişliğini kaplar */
  box-sizing: border-box; /* Padding'i genişliğin içine dahil eder */
  color: var(--text-color-primary); /* Yazı rengi */
  display: flex;
  justify-content: space-between; /* Elemanları sola ve sağa hizalar */
  align-items: center; /* Dikeyde ortalar */
  z-index: 1; /* Diğer elemanların üzerinde görünmesi için */
  transition: transform 0.3s ease-in-out; /* Animasyon ekleyin */
}
.navbar.hidden {
  transform: translateY(-100%); /* Navbar'ı ekranın dışına taşır */
}

.logo-container {
  width: 150px; /* Logo kapsayıcısının genişliği */
  height: 50px; /* Logo kapsayıcısının yüksekliği */
  border-radius: 50%; /* Yuvarlak arka plan */
  display: flex; /* İçeriği hizalamak için flexbox */
  justify-content: center; /* Yatayda ortalar */
  align-items: center; /* Dikeyde ortalar */
  position: relative; /* Diğer elemanlara göre konumlandırma için */
}
.logo-image {
  /* transform: translateX(10%); */
  transform: translateY(10%);
  width: 104px; /* PNG resmin genişliği (kapsayıcıya göre) */
  height: auto; /* Oranlı yükseklik */
  object-fit: contain; /* Görselin kutuya sığmasını sağlar */
  position: absolute; /* Arka plan içinde serbestçe konumlanır */
}
.navbar .nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.navbar .nav-links li {
  font-size: var(--font-size-xsmall);
}
.navbar .nav-links li a {
  text-decoration: none;
  color: var(--text-color-primary); /* Yazı rengi */
  transition: color 0.3s;
}
.navbar .marketplace-btn {
  padding: 10px 20px;
  background-image: url("marketplace.png");
  display: inline-block; /* Butonları satır içinde hizala */
  width: 150px; /* Buton genişliği */
  height: 56px; /* Buton yüksekliği */
  cursor: pointer;
  background-repeat: no-repeat; /* Arka plan tekrar etmez */
  background-position: center; /* Arka planı ortalar */
  border: none; /* Kenarlık kaldırılır */
  cursor: pointer; /* Buton üzerinde imleç değişir */
  background-size: contain;
  background-color: transparent;
}
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.burger .line {
  width: 25px;
  height: 3px;
  background-color: white;
}

.hero-content-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.text-content {
  flex: 1;
  margin-right: 20px;
}

.text-content-everything {
  font-size: 56px; /* Yazı boyutu */
  line-height: 1; /* Satır yüksekliği */
  align-items: center;
  justify-content: center;
  color: black; /* Yazı rengi */
  padding: 10px 20px; /* Yazının etrafına boşluk ekler */
  border-radius: 10px; /* Kenarları yuvarlar */
  display: inline-block; /* Arka planın sadece yazıya uygulanmasını sağlar */
  text-align: center; /* Yazıyı hizalar */
}

.text-content-rest {
  font-size: 56px; /* Yazı boyutu */
  line-height: 1; /* Satır yüksekliği */
  color: #fff; /* Yazı rengi */
  font-weight: bold;
}

.text-content span {
  color: #fff;
  font-size: 56px;
}

.text-content p {
  font-size: 24px;
  line-height: 1;
  margin: 20px 0;
  color: #fff;
}

.need-and-buttons {
  display: flex; /* Öğeleri yatayda hizalar */
  align-items: center; /* Yükseklik olarak ortalar */
  gap: 20px; /* "need" ve butonlar arasında boşluk */
}

.buttons {
  display: flex; /* Butonları yatayda hizalar */
  gap: 10px; /* Butonlar arasında boşluk */
  border-radius: 10px; /* Kenarları yuvarlar */
  z-index: 2;
}

.btn {
  display: inline-block; /* Butonları satır içinde hizala */
  width: 120px; /* Buton genişliği */
  height: 56px; /* Buton yüksekliği */
  background-repeat: no-repeat; /* Arka plan tekrar etmez */
  background-position: center; /* Arka planı ortalar */
  border: none; /* Kenarlık kaldırılır */
  cursor: pointer; /* Buton üzerinde imleç değişir */
  background-size: cover;
}

.btn.app-store {
  background-image: url("apple.png");
}

.btn.google-play {
  background-image: url("google.png");
}

.btn.download-app {
  background-image: url("download-app-copy.png");
  background-position: center;
  width: 180px;
  /* height: 70px; */
}

.hero-images .dog-image {
  position: absolute; /* Görseli serbestçe konumlandırmak için */
  top: 40%; /* Yüksekliğin %50'sine hizala */
  transform: translate(-80%, -75%); /* Tam merkezleme için */
  width: 463px; /* Genişlik (isteğe bağlı) */
  height: auto; /* Oranlı yükseklik */
  z-index: 0; /* Diğer elemanların üzerinde görünür */
}

.hero-images {
  position: relative;
  display: flex;
  justify-content: flex-end; /* Yatayda sağa hizala */
  align-items: flex-end; /* Dikeyde alta hizala */
  height: 100%; /* Hero content'in tamamını kaplar */
  width: 100%; /* Genişlik ekran boyutuna göre ayarlanır */
  flex: 1 1 45%;
}

.phone-image {
  position: absolute;
  bottom: 0;
  right: 15%;
  width: auto;
  height: auto;
  max-width: 300px;
  max-height: 80vh;
  object-fit: contain;
  z-index: 2;
}

.parallax-section {
  margin-top: 150px !important;
  text-align: center;
  /* padding: 50px 20px; */

  width: 100vw; /* Parallax bölümünün genişliği */
  /* min-height: 70vh; */
  height: 80vw;
  position: relative; /* Diğer elemanlardan bağımsız bir düzen için */
  margin: 0 auto; /* Yatayda ortalamak için */
  display: block; /* Ortalamayı garanti eder */
}
.navbar.hidden {
  transform: translateY(-100%); /* Navbar'ı ekranın dışına taşır */
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.vertical-slider {
  display: flex;
  /* height: 130vh; */
  overflow: hidden;
  /* background-color: transparent; */
  background-image: url("app-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
  margin-top: -16%;
  position: relative;
}

.slider-left {
  flex: 1;
  height: 80vh;
  overflow-y: auto; /* Scroll yapılabilir */
  padding: 20px;
  box-sizing: border-box;
  background-color: transparent;
  margin-top: 16%;
}

.slider-left::-webkit-scrollbar {
  display: none; /* Scroll bar'ı gizle */
}
.li-last {
  margin-right: 20%;
}
.li-button {
  position: absolute;
  right: 0;
}
.slider-left {
  -ms-overflow-style: none; /* Internet Explorer ve Edge için */
  scrollbar-width: none; /* Firefox için */
}

.text-slide {
  font-size: 24px;
  color: #000000;
  margin: 20px 0;
  padding: 50px;
  background-color: transparent;
  border-radius: 8px;
  opacity: 0.3; /* Varsayılan olarak %30 görünür */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.text-slide.active {
  opacity: 1; /* Aktif olan tamamen görünür */
  transform: scale(1.05); /* Hafif büyüme efekti */
}

.slider-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  position: relative;
  margin-top: 18%;
}

.image-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0; /* Varsayılan olarak %30 görünür */
  transition: opacity 0.5s ease-in-out;
}

.image-slide.active {
  opacity: 1; /* Aktif olan tamamen görünür */
}
.services_title {
  width: 60%;
}
.text-slide p {
  margin-top: 10%;
}
.app-description {
  font-size: var(--font-size-xsmall-bold) !important;
}
.app-header {
  font-size: var(--font-size-small-bold) !important;
  font-family: var(--font-primary-bold);
}
.burger-menu {
  z-index: 5;
  display: none;
  font-size: 30px;
  color: black;
  cursor: pointer;
}
.footer-items {
  background-size: contain;
  background-position: center;
  background-image: url("footer-bg-services.png");
}
@media screen and (max-width: 450px) {
  .menu-container {
    display: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    position: absolute;
    top: 110px;
    right: 10px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: 100px !important;
  }

  .menu-container.open {
    display: flex !important;
  }
  .navbar {
    z-index: 99;
    padding: 0px;
  }
  .nav-links {
    padding-left: 0px !important;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .navbar .nav-links li a {
    color: black;
  }
  .nav-links li {
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
  }
  .text-content-everything {
    font-size: var(--font-size-small-regular);
  }
  .content-section.hero-content {
    background-size: contain !important;
    height: 45vh;
    z-index: 5;
  }
  .vertical-slider {
    margin-top: -40%;
    height: 50vh;
  }
  .app-description {
    font-size: var(--font-size-xxsmall) !important;
  }
  .app-header {
    font-size: var(--font-size-xsmall-bold) !important;
  }
  .image-slide {
    top: 20%;
    width: 100%;
    height: 60%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .text-slide {
    padding: 0px;
  }
  .slider-left {
    height: 45vh;
  }
  .marketplace-wrapper {
    width: 100%;
    margin-top: 16px;
  }

  .burger-menu {
    display: block;
    margin-right: 20px;
  }
  .navbar .marketplace-btn {
    padding: 10px 32px;
    margin-left: 10px;
  }
  .navbar .nav-links {
    gap: 10px;
  }
  .navbar .nav-links li a {
    font-size: 10px;
  }
  .navbar .nav-links li {
    font-size: 10px;
  }
}
