
@import url('https://fonts.googleapis.com/css2?family=Ancizar+Serif:ital,wght@0,300..900;1,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --backgroundimage: url('../images/arkaplanboss.jpg'); /* kendi arka plan görselinle değiştir */
  --backgroundimage2: url('../images/urunarkaplan.jpg'); /* kendi arka plan görselinle değiştir */
  --backgroundimage3: url('../images/burcarka.jpg'); /* kendi arka plan görselinle değiştir */
  --backgroundimage4: url('../images/arkaplan5.jpg'); /* kendi arka plan görselinle değiştir */
  --backgroundimage5: url('../images/urundetay.png'); /* kendi arka plan görselinle değiştir */
  --backgroundimage6: url('../images/sekarkaplan.png'); /* kendi arka plan görselinle değiştir */
}



/* Genel Stil */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #fdf8f3;
  color: #5e3b1e;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  font-size: 3.8rem;
  font-weight: 700;
  color: #faece1;
}
header img{
  width: 220px;
  height: 220px;
}

/* Ana Sayfa */
.ana-sayfa {
   background-image: linear-gradient(#0f121f42, #0e112041), var(--backgroundimage);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
  min-height: 100vh;
}

.secim-kutulari {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7rem;
  padding: 2rem 1rem;
}

/* Her bir seçim kutusu */
.secim-kutu {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 4/5;
  background-image: linear-gradient(#ecececcb, #ebebebd3);
  border: #8b6749 1px solid;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.secim-kutu:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  background-color: #bea8925b;
}

/* Resim */
.secim-kutu img {
  border-radius: 10pt;
  max-width: 70%;
  height: auto;
  margin-bottom: 1rem;
}

/* Yazı */
.secim-kutu p {
  color: #613b3b;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
}
/* Burç Sayfası */
.burc-body{ 
  min-height: 100vh; /* burada düzeltme yapıldı */
  background-image: linear-gradient(#0f121f42, #0e112041), var(--backgroundimage3);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.burc-container {
  margin-top: 15pt ;
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.burc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 4.5rem;
  max-width: 800px;
  width: 100%;
}

.burc-card {
  width: 150px;
  height: 150px;
  background-image: linear-gradient(#e7d5c1f1, #ecdcc9f1);
  border-radius: 15px;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.burc-card:hover {
  transform: scale(1.05);
  background-color: #a36f42;
}

.burc-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 0.6rem;
}

.burc-card p {
  font-size: 1.4rem;
  font-weight: bold;
  color: #613b3b;
}
/* Ürün Sayfası */
.burc-urun {
  min-height: 100vh; /* Tüm ekranı kapsar */
  background-image: linear-gradient(#0f121f42, #0e112041), var(--backgroundimage4);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.urun-container {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.urun-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  width: 100%;
}

.urun-card {
  margin-top: 25pt;
  background-image: linear-gradient(#e7d5c1f1, #ecdcc9f1);
  border-radius: 15px;
  text-align: center;
  padding: 6rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, background-color 0.3s;
}

.urun-card:hover {
  transform: scale(1.03);
  background-color: #cf8646;
}

.urun-card img {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.562);
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

.urun-card p {
  color: #613b3b;
  font-size: 2rem;
  font-weight: bold;
}

.kutular-body { 
  min-height: 100vh; /* burada düzeltme yapıldı */
  background-image: linear-gradient(#0f121f7a, #0e112081), var(--backgroundimage5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 40px 20px;
  color: #3e2a1c;
}

.page-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #faece1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 sütun */
  gap: 70px;
  justify-items: center;
  align-items: start;
}

.gift-box {
  background-image: linear-gradient(#f8f8f8f1, #f3f3f3f1);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  max-width: 260px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.gift-box img {
  width: 80%;
  height: 200px;
  box-shadow: 0 4px 20px #5f5f5fb7;
  object-fit: cover;
  border-radius: 8px;
}

.gift-box h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  color: #613b3b;
}

.gift-box p {
  font-size: 13px;
  color: #644e3e;
}

.gift-box button {
  margin-top: 10px;
  padding: 8px 14px;
  background-color: #b12704e7;
  color: #dfdfdf;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gift-box button:hover {
  background-color: #d41717ec;
}


/* Responsive - Tüm ekranlara uyumlu tasarım */
@media (max-width: 1024px) {
  .detay-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .kutu-gorsel img {
    max-width: 90%;
    margin-bottom: 20px;
  }

  .burc-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .kutu-detaylar {
    margin-left: 0;
  }
  .urun-card {
    padding: 3rem;
  }

  .secim-kutu {
    width: 90%;
    height: auto;
  }

  .secim-kutulari {
    gap: 4rem;
  }
header img{
  width: 200px;
  height: 200px;
}
  
  .box-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  }
  .gift-box h3 {
    font-size: 16px;
  }

  .gift-box p {
    font-size: 12px;
  }

}

@media (max-width: 768px) {
  header {
    font-size: 2.4rem;
    text-align: center;
    padding: 1rem;
  }

  .page-title {
    font-size: 26px;
  }

  .urun-card img {
    height: 20px;
  }

  .urun-card {
    padding: 2rem;
  }

  .burc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .urun-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .secim-kutulari {
    gap: 2rem;
  }

   .secim-kutu {
    max-width: 60%;
    aspect-ratio: auto;
    padding: 1rem;
  }

  .secim-kutu img {
    max-width: 80%;
  }

  .secim-kutu p {
    font-size: 1.4rem;
  }

  .box-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gift-box {
    max-width: 220px;
    padding: 12px;
  }

  .gift-box h3 {
    font-size: 18px;
  }

  .gift-box p {
    font-size: 13px;
  }

  .gift-box img {
    width: 55%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .burc-card {
    width: 100px;
    height: 100px;
  }
header {
  font-size: 1.8rem;
  font-weight: 700;
  color: #faece1;
}
  .burc-card img {
    width: 50px;
    height: 50px;
  }

  .burc-card p {
    font-size: 1rem;
  }

  .urun-card img {
    height: 150px;
  }

  .urun-card {
    padding: 1.5rem;
  }

  .kutu-baslik {
    font-size: 22px;
  }

  .kutu-fiyat {
    font-size: 16px;
  }

  .sepete-ekle {
    font-size: 14px;
    padding: 10px 20px;
  }

  .detay-container {
    padding: 10px;
  }

  .secim-kutulari {
    gap: 1rem;
  }

  .secim-kutu {
    max-width: 55%;
    aspect-ratio: auto;
    padding: 1rem;
  }
  .box-grid {
    grid-template-columns: 1fr;
  }

  .gift-box {
    max-width: 90%;
    padding: 10px;
  }

  .gift-box h3 {
    font-size: 16px;
  }

  .gift-box p {
    font-size: 12px;
  }

  .gift-box img {
    width: 50%;
  }
}

/* Responsive Medya Sorguları */
@media (max-width: 768px) {
  .urun-card {
    padding: 1.5rem;
  }

  .urun-card img {
    height: 180px;
  }

  .urun-card p {
    font-size: 1.2rem;
  }
  header img{
  width: 180px;
  height: 180px;
}
}

@media (max-width: 480px) {
  .urun-grid {
    grid-template-columns: 1fr;
  }

  .urun-card {
    padding: 1rem;
  }

  .urun-card img {
    height: 180px;
  }

  .urun-card p {
    font-size: 1rem;
  }
  header img{
  width: 150px;
  height: 150px;
}
}