/* === PAGE BASE === */
.home{
  min-height: 100vh;
  background:
    radial-gradient(1000px 600px at 20% 10%, rgba(108, 78, 135, 0.18), transparent 55%),
    radial-gradient(900px 500px at 80% 30%, rgba(74, 140, 110, 0.10), transparent 55%),
    linear-gradient(180deg, #fbfaf8 0%, #f4efe8 50%, #fbfaf8 100%);
}

/* === HERO === */
.home-hero{
  margin-top: 80px; /* header fixed */
  position: relative;
  padding: 90px 60px 70px;
  overflow: hidden;
}

.hero-glow{
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 40%, rgba(108, 78, 135, 0.35), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(74, 140, 110, 0.18), transparent 55%);
  filter: blur(30px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner{
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker{
  letter-spacing: 6px;
  font-weight: 600;
  color: #4c2f64;
  opacity: 0.9;
  margin-bottom: 14px;
}

.hero-title{
  font-size: 3rem;
  line-height: 1.15;
  color: #2f1c3f;
  margin-bottom: 18px;
}

.hero-subtitle{
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #5f526c;
}

.hero-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #6c4e87, #3d1f5e);
  box-shadow: 0 12px 30px rgba(61, 31, 94, 0.18);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.hero-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(61, 31, 94, 0.22);
}

/* === SECTION HEAD === */
.collections-wrap{
  padding: 10px 60px 140px;
}

.section-head{
  max-width: 980px;
  margin: 0 auto 26px;
  text-align: left;
}

.section-head h2{
  font-size: 1.8rem;
  color: #2f1c3f;
  margin-bottom: 8px;
}

.section-head p{
  color: #6b5a7a;
  line-height: 1.8;
}

/* === GRID 2'li === */
.collections-grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 sütun */
  gap: 28px;
}

/* === CARD === */
.collection-card{
  position: relative;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  transform: translateY(0);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
  background: #111;
}

.collection-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.14);
}

.card-media{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}

.card-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%),
    radial-gradient(circle at 30% 20%, rgba(108, 78, 135, 0.35), transparent 55%);
}

.card-content{
  position: absolute;
  inset: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badge{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: .4px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.badge.live{
  background: rgba(74, 140, 110, 0.18);
  border-color: rgba(74, 140, 110, 0.28);
}

.badge.soon{
  background: rgba(255, 255, 255, 0.12);
}

.tag{
  font-size: 0.85rem;
  opacity: 0.9;
}

.collection-card h3{
  font-size: 1.9rem;
  letter-spacing: 2px;
  margin-top: 8px;
}

.collection-card p{
  margin-top: 10px;
  max-width: 90%;
  line-height: 1.7;
  opacity: 0.92;
}

.card-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.cta-text{
  font-weight: 600;
  letter-spacing: 0.5px;
}

.arrow{
  font-size: 1.4rem;
  opacity: 0.9;
}

/* Yakında kartlar tıklanmasın */
.collection-card.is-soon{
  cursor: default;
}
.collection-card.is-soon:hover{
  transform: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.collection-card.is-soon .card-media{
  filter: grayscale(0.25) saturate(0.75);
}

/* Bilgilendirme notu */
.note{
  max-width: 1100px;
  margin: 22px auto 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(108, 78, 135, 0.10);
  color: #5f526c;
}

.note code{
  background: rgba(61, 31, 94, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
}

/* === RESPONSIVE === */
@media (max-width: 900px){
  .collections-grid{
    grid-template-columns: 1fr; /* mobil/tablet 1 sütun */
  }
  .home-hero{
    padding: 70px 24px 50px;
  }
  .collections-wrap{
    padding: 10px 24px 140px;
  }
  .hero-title{
    font-size: 2.2rem;
  }
}