/* Google Fonts'tan fontları dahil etmek için */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/**********************************************
 * PERLA SECTION
 **********************************************/

/* Ana Bölüm */
.perla-section {
  max-width: 1315px; /* Sabit genişlik */
  margin-top: 108px;
  width: calc(100% - 54px); /* Sağdan 54px daha fazla boşluk */
  display: flex;
  gap: 108px; /* Sol resim ile sağ içerik arası */
  align-items: flex-start;
  margin: 0 auto; /* Sağdan ve soldan eşit boşluk */
  padding: 0 20px 0 0; /* Sağdaki ekstra boşluk */
  position: relative;
}
a {
  text-decoration: none; /* Alt çizgiyi kaldırır */
  color: #1E1E1E;
}


/* Sol Resim */
.perla-image {
  width: 610px;
  height: 511px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.perla-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Sağ İçerik */
.perla-content {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Vienvay ile Perla Collection arasındaki boşluk */
  justify-content: flex-start;
  margin-top: 50px; /* Yazıları aşağıya yaklaştır */
}

/* Başlık */
.title {
  color: #1E1E1E;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 200% */
  letter-spacing: -2px;
  margin: 0;
}

/* Alt Başlık */
.subtitle {
  color: #1E1E1E;
  font-family: "Noto Serif JP", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 120% */
  letter-spacing: -2px;
  margin: 0;
}

/* Açıklama */
.description {
  width: 470px;
  height: auto;
  color: #1E1E1E;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 160% */
  letter-spacing: -2px;
  margin: 16px 0; /* Buton ile arası boşluk */
}

/* Satın Al Butonu */
.buy-button {
  display: inline-flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #1E1E1E;
  background: transparent;
  color: #1E1E1E;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px; /* Fotoğraf altından 24px içeride başlasın */
}

.buy-button:hover {
  background: #1E1E1E;
  color: #FFF;
}

/* Mouse Takip Dairesi */
.mouse-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px; /* Daire boyutu */
  height: 100px;
  background: rgba(0, 0, 0, 0.8); /* Daire rengi */
  border-radius: 50%;
  pointer-events: none; /* Tıklanabilir değil */
  mix-blend-mode: difference; /* Renkleri tersine çevir */
  transform: translate(-50%, -50%); /* Dairenin merkezi fareyi takip etsin */
  z-index: 9999;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Hover efekti için */
.perla-section:hover .mouse-circle {
  background: white; /* Hover sırasında daire rengi */
}


/**********************************************
 * MEDIA QUERIES
 **********************************************/
 
/* Tablet (1024px ve altı) */
/* Geniş Tablet (1200px ve altı) */
@media (max-width: 1200px) {
  .perla-section {
      flex-direction: column; /* İçeriklerin dikey hizalanması */
      align-items: center; /* Merkezi hizalama */
      gap: 40px; /* Dikey boşluk */
      padding: 0 16px; /* Sağ ve sol boşluk */
  }

  .perla-image {
      
      border-radius: 16px;
  }

  .perla-content {
      text-align: center; /* Metinlerin ortalanması */
  }

  .title {
      font-size: 28px;
  }

  .subtitle {
      font-size: 36px;
      margin-top: 16px;
  }

  .description {
      font-size: 18px;
      line-height: 28px;
      margin-top: 20px;
  }

  .buy-button {
      padding: 12px 24px;
      font-size: 14px;
      margin-top: 24px;
  }
}

/* Tablet (1024px ve altı) */
@media (max-width: 1024px) {
  .perla-section {
      max-width: 960px;
      gap: 80px; /* Sol resim ile sağ içerik arası azaldı */
      padding: 0 16px; /* Sağdan ve soldan boşluk azaltıldı */
  }

  .perla-image {
      width: 500px;
      height: 420px;
  }

  .perla-content {
      margin-top: 24px;
  }

  .title {
      font-size: 26px;
  }

  .subtitle {
      font-size: 40px;
      margin-top: 12px; /* Vienvay ile Perla Collection arası */
  }

  .description {
      font-size: 20px;
      line-height: 30px;
      margin-top: 18px; /* Perla Collection ile Lorem arasında */
  }

  .buy-button {
      padding: 12px 24px;
      font-size: 14px;
      margin-top: 24px;
  }
}

/* Genel Mobil (767px ve altı) */
@media (max-width: 767px) {
  .perla-section {
      flex-direction: column;
      max-width: 100%;
      gap: 40px; /* Dikey boşluk */
      align-items: center;
      padding: 0 16px;
  }

  .perla-image {
      width: 100%;
      height: auto;
     
      border-radius: 16px;
  }

  .perla-content {
      align-items: center;
      text-align: center;
  }

  .title {
      font-size: 22px;
  }

  .subtitle {
      font-size: 32px;
      margin-top: 12px; /* Vienvay ile Perla Collection arası */
  }

  .description {
      font-size: 18px;
      line-height: 28px;
      width: 100%;
      margin-top: 18px; /* Perla Collection ile Lorem arasında */
  }

  .buy-button {
      padding: 10px 20px;
      font-size: 12px;
      margin-top: 24px;
  }
}

/* Küçük Mobil (480px ve altı) */
@media (max-width: 480px) {
  .perla-section {
      padding: 0 20px;
  }

  .perla-image {
      width: calc(100% - 40px); /* Sağdan ve soldan 20px boşluk */
      height: auto;
      border-radius: 16px;
  }

  .title {
      font-size: 18px;
      margin-bottom: 12px; /* Vienvay ile Perla Collection arası */
  }

  .subtitle {
      font-size: 26px;
      margin-bottom: 12px; /* Vienvay ile Perla Collection arası */
  }

  .description {
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 18px; /* Perla Collection ile Lorem arasında */
  }

  .buy-button {
      padding: 8px 16px;
      font-size: 10px;
      margin-top: 24px;
  }
}
