@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;
}
.selected_page {
  font-family: var(--font-primary-bold);
}
body {
  margin: 0;
  padding: 0;
}
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  /* height: 101vh; */
  overflow-x: hidden;
  background-color: white;
  font-family: "CustomFont", Arial, sans-serif; /* Default font */
}
.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; */
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: white; /* Arka plan beyaz */
  font-family: "CustomFont", Arial, sans-serif; /* Default font */
  overflow-x: hidden;
  scroll-behavior: smooth;
  justify-content: center;
  align-items: center;
}

/* Ana İçerik */
#main-content {
  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("roadmap/roadmap_header.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 */
}
.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: white; /* 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: white;
  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: space-between;
  align-items: center;
  width: 100%;
  /* max-width: 1200px; */
  margin-top: 50px;
  padding-left: 10%;
}
.text-content {
  display: flex;
  gap: 10px;
  margin: 5px;
  flex-direction: row; /* Yan yana dizilmesi için eklendi */
  border-style: solid;
  border-color: var(--text-color-dark-mid-3);
  border-radius: 5px; /* Kenarları yuvarlar */
  border-width: 1px;
  background-color: #fff;
}

.text-content-everything {
  font-size: var(--font-size-big-regular);
  line-height: 1; /* Satır yüksekliği */

  color: var(--text-color-primary); /* Yazı rengi */
  background-color: #fff; /* Arka plan rengi */
  padding: 10px 20px; /* Yazının etrafına boşluk ekler */

  display: inline-block; /* Arka planın sadece yazıya uygulanmasını sağlar */
  text-align: center; /* Yazıyı hizalar */
}

.text-content-rest {
  font-size: var(--font-size-big-regular);
  line-height: 1.2; /* Satır yüksekliği */
  color: #fff; /* Yazı rengi */
}

.text-content span {
  color: #fff;
  font-size: var(--font-size-big-regular);
}

.text-content p {
  font-size: var(--font-size-small-regular);
  line-height: 1;
  margin: 20px 0;
  color: #fff;
}

.buttons {
  display: flex; /* Butonları yatayda hizalar */
  gap: 10px; /* Butonlar arasında boşluk */
  border-radius: 10px; /* Kenarları yuvarlar */
  z-index: 2;
}
.header-text {
  font-size: var(--font-size-big-bold-3);
  font-family: var(--font-primary-bold);
}
.header-text-inner {
  position: relative;
  width: 70%;
  left: 15%;
  font-size: var(--font-size-small-medium-);
  font-family: var(--font-primary);
}

.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 */
}
.container-1 {
  aspect-ratio: 1327/1009;
  width: 70%;
  min-height: 250px; /* Görselin orijinal yüksekliği */
  align-items: center;
  padding: 50px;
  margin: auto;
  display: flex;
  background-size: contain; /* Orijinal oranları korur */
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(how-to-use/content.png);
}
.container-2 {
  aspect-ratio: 1287/1118;
  width: 70%;
  min-height: 250px; /* Görselin orijinal yüksekliği */
  align-items: center;
  padding: 50px;
  margin: auto;
  display: flex;
  background-size: contain; /* Orijinal oranları korur */
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(how-to-use/key-visual.png);
}

.container-3 {
  aspect-ratio: 1272/766;
  width: 70%;
  min-height: 250px; /* Görselin orijinal yüksekliği */
  align-items: center;
  padding: 50px;
  margin: auto;
  display: flex;
  background-size: contain; /* Orijinal oranları korur */
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(how-to-use/walking-pawy.png);
}

.container-5 {
  aspect-ratio: 1135/1102;
  width: 70%;
  min-height: 250px; /* Görselin orijinal yüksekliği */
  align-items: center;
  padding: 50px;
  margin: auto;
  display: flex;
  background-size: contain; /* Orijinal oranları korur */
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(how-to-use/claim.png);
  margin-bottom: 50px;
}
.heading-container-2 {
  font-size: 20px;
  text-align: center; /* Center-align all the rows */
}
html,
body {
  /* height: 100%; Sayfanın tamamını kapsaması için */
  margin: 0; /* Varsayılan boşlukları kaldır */
  display: flex;
  flex-direction: column; /* Dikey düzen */
}

.discover,
.title,
.stats,
.image-section-2,
.discover-btn-2,
.text-section-2,
.container-2,
.card-2,
.container-3,
.card-3,
.text-section-3,
.image-section-3,
.container-5,
.text-section-5,
.heading-container-2,
.container-7,
.container-4,
.left-section,
.right-section {
  opacity: 0; /* Başlangıçta görünmez */
  transform: translateY(50px); /* Hafif aşağıda başlar */
  transition: opacity 1.6s ease, transform 1.6s ease; /* Animasyon */
}
.parallax-active {
  opacity: 1; /* Görünür hale gelir */
  transform: translateY(0); /* Yukarı doğru hareket eder */
}
.hidden {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.active {
  opacity: 1;
}
@media screen and (max-width: 1450px) {

}
@media screen and (max-width: 1382px) {
  .logo {
    width: 200px; /* Logo genişliği */
    height: 138px; /* Logo yüksekliği */
  }

}
@media screen and (max-width: 1295px) {

  .logo {
    width: 160px; /* Logo genişliği */
    height: 100px; /* Logo yüksekliği */
  }

  .hero-images .dog-image {
    width: 380px;
    height: auto;
    transform: translate(-58%, -60%);
  }
  .phone-slider-container {
    max-width: 260px;
    max-height: 520px;
  }
  .text-section-3 p {
    font-size: var(--font-size-mid-regular);
  }
  .heading-container {
    font-size: var(--font-size-mid-regular-2);
    text-align: center;
  }
  .heading-2,
  .left-text {
    font-size: 46px;
  }
  .heading-1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1150px) {
  .text-content-everything,
  span.text-content-rest,
  span.youand {
    font-size: 40px;
  }
  .hero-images .dog-image {
    width: 320px;
    height: auto;
    transform: translate(-70%, -82%);
  }
  .hero-images .phone-image {
    height: 45vh;
    width: auto;
    left: 30%;
  }

  .btn {
    width: 100px; /* Buton genişliği */
    height: 48px; /* Buton yüksekliği */
  }
  .btn.download-app {
    width: 150px;
  }
  .text-content p,
  .discover,
  .arrow {
    font-size: 20px;
  }
  .title {
    font-size: 46px;
  }
  .paw {
    width: 71px; /* Paw genişliği */
    height: 71px; /* Paw yüksekliği */
  }
  .stat-item {
    padding: 20px;
    width: 140px;
  }
  .stats {
    width: 90%;
  }
  .number {
    font-size: 30px;
  }

  .logo {
    width: 140px; /* Logo genişliği */
    height: 80px; /* Logo yüksekliği */
  }

  .polar-container {
    margin-top: 45px;
  }
  .text-section-2 h1 {
    font-size: var(--font-size-small-regular);
    margin-bottom: 15px;
    color: #333;
  }

  .text-section-2 p {
    font-size: var(--font-size-xsmall);
    margin-bottom: 10px;
    color: #666;
  }
  .card-2 {
    right: -20%;
  }
  .card-2 img {
    width: 80%;
  }
  .discover-btn-2 {
    width: 60%;
  }
  .heading-container {
    font-size: var(--font-size-mid-regular-2);
    text-align: center;
  }
  .text-section-3 p {
    font-size: var(--font-size-mid-regular);
  }
  .heading-2,
  .left-text {
    font-size: 44px;
  }
  .heading-1 {
    font-size: 26px;
  }
  .text-section-5 {
    margin-top: 30px;
  }
  .slider-text {
    font-size: var(--font-size-small-medium-);
  }
}
@media screen and (max-width: 1030px) {
  .content-section.hero-content {
    height: 45vh;
  }

  .logo {
    width: 120px; /* Logo genişliği */
    height: 60px; /* Logo yüksekliği */
  }

  .polar-container {
    margin-top: 45px;
  }
  .text-section-2 h1 {
    font-size: var(--font-size-xsmall);
    margin-bottom: 15px;
    color: #333;
  }

  .text-section-2 p {
    font-size: var(--font-size-xxsmall);
    margin-bottom: 10px;
    color: #666;
  }
  .card-2 img {
    width: 80%;
  }
  .discover-btn-2 {
    width: 60%;
  }
  .heading-container {
    font-size: var(--font-size-small-regular);
    text-align: center;
  }
  .text-section-3 p {
    font-size: var(--font-size-small-regular);
  }
  .heading-2,
  .left-text {
    font-size: var(--font-size-mid-regular);
  }
  .heading-1 {
    font-size: var(--font-size-small-medium-);
  }
  .text-section-5 {
    margin-top: 30px;
  }
  .slider-text {
    font-size: var(--font-size-small-medium-);
  }
}

@media screen and (max-width: 940px) {
  .text-content-everything,
  span.text-content-rest,
  span.youand {
    font-size: 34px;
  }
  .btn {
    width: 80px; /* Buton genişliği */
    height: 30px; /* Buton yüksekliği */
  }
  .btn.download-app {
    width: 130px;
  }
  .hero-images .dog-image {
    width: 270px;
    height: auto;
    transform: translate(-85%, -82%);
  }
  .hero-images .phone-image {
    height: 45vh;
    width: auto;
    left: 10%;
  }
  .phone-slider-container {
    max-width: 230px;
    max-height: 450px;
    right: 10%;
  }
  .text-content p,
  .discover,
  .arrow {
    font-size: 18px;
  }
  .title {
    font-size: 40px;
  }
  .paw {
    width: 61px; /* Paw genişliği */
    height: 61px; /* Paw yüksekliği */
  }
  .stat-item {
    padding: 10px;
    width: 60px;
  }
  .stats {
    width: 70%;
  }
  .number {
    font-size: 26px;
  }
}

@media screen and (max-width: 850px) {
  .text-content-everything,
  span.text-content-rest,
  span.youand {
    font-size: 34px;
  }
  .phone-slider-container {
    max-width: 200px;
    max-height: 400px;
    right: 10%;
  }
  .btn {
    width: 80px; /* Buton genişliği */
    height: 30px; /* Buton yüksekliği */
  }
  .btn.download-app {
    width: 130px;
  }
  .hero-images .dog-image {
    width: 230px;
    height: auto;
    transform: translate(-90%, -82%);
  }
  /* .hero-images .dog-image {
      width: 55%;
      height: auto;
      transform: translate(-90%, -82%);
  } */
  .content-section.hero-content {
    height: 45vh;
  }
  .hero-images .phone-image {
    height: 45vh;
    width: auto;
    left: 10%;
  }
  .text-content p,
  .discover,
  .arrow {
    font-size: 16px;
  }
  .title {
    font-size: 34px;
  }
  .card-3 img {
    width: 35%;
  }
  .paw {
    width: 31px; /* Paw genişliği */
    height: 31px; /* Paw yüksekliği */
  }
  .polar-top-left {
    top: 45px; /* Yukarı hareket ettir */
    left: -30px; /* Sola hareket ettir */
  }

  .polar-bottom-right {
    bottom: 40px; /* Aşağı hareket ettir */
    left: 170px; /* Sağa hareket ettir */
  }
  .stat-item {
    padding: 10px;
    width: 40px;
  }
  .stats {
    width: 50%;
  }
  .number {
    font-size: 20px;
  }
}
/* @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #444;
      position: absolute;
      top: 60px;
      right: 0;
      width: 200px;
      padding: 10px;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .burger {
      display: flex;
    }
  } */
@media screen and (max-width: 440px) {
  .content-section.hero-content {
    padding: 0px;
  }
  .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;
  }

  .marketplace-wrapper {
    width: 100%;
    margin-top: 16px;
  }

  .burger-menu {
    display: block;
    margin-right: 20px;
  }

  .header-text {
    font-size: var(--font-size-small-bold);
  }
  .header-text-inner {
    font-size: var(--font-size-xxsmall);
  }
  .content-section.hero-content {
    height: 25vh;
  }

  .logo {
    width: 50px; /* Logo genişliği */
    height: 28px; /* Logo yüksekliği */
  }

  .navbar .marketplace-btn {
    padding: 10px 32px;
    margin-left: 10px;
  }

  .parallax-section {
    margin-top: 10px !important;
    width: 100vw;
    height: 100vw;
  }
  .navbar .nav-links {
    gap: 10px;
  }
  .navbar .nav-links li a {
    font-size: 10px;
  }
  .navbar .nav-links li {
    font-size: 10px;
  }
  .logo-image {
    width: 60px;
  }

  .container-2 {
    margin-top: 50px !important;
    padding-top: 20px !important;
  }


  .heading-1 {
    text-align: justify; /* Metni hizala */
    font-size: 10px; /* Yazı boyutu */
    line-height: 1.5; /* Satır aralığı */
    height: 35%;
  }
  .heading-2 {
    font-size: 12px; /* Yazı boyutu */
  }

  .heading-container-2 {
    font-size: 8px;
    text-align: center; /* Center-align all the rows */
  }
  .container-7 {
    margin-top: 50px !important;
    height: 100%;
  }

 
}
