/* HERO */
.page-hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #0b1220;
}

.page-hero-media{
  position: absolute;
  inset: 0;
}

.page-hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  transform: scale(1.02);
}

.page-hero-content{
  position: relative;
  padding: 56px 0 48px;
  color: #fff;
}

.hero-kicker{
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: .02em;
  color: rgba(255,255,255,.8);
}

.page-hero-content h1{
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.hero-lead{
  margin: 0 0 16px;
  max-width: 65ch;
  color: rgba(255,255,255,.85);
}

/* CONTENT */
.about-section{
  padding: 22px 0 44px;
}

.about-section .container{
  width: min(1400px, calc(100% - 32px));
}

/* Kart içi alt yapı */
.card h2{
  margin: 0 0 12px;
}

.feature{
  padding: 10px 0;
  border-top: 1px dashed var(--border);
}

.feature:first-of-type{
  border-top: 0;
  padding-top: 0;
}

.feature h3{
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--text);
}

.feature p{
  margin: 0;
  color: #111827;
}

.divider{
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

@media (max-width: 900px){
  .page-hero-content{ padding: 44px 0 40px; }
}

/* CONTENT - section bands */
.about-section{
  padding: 0;               /* bandlar kendi paddingini alacak */
}

/* her blok full width */
.about-block{
  position: relative;
  padding: clamp(22px, 3vw, 44px) 0;
  border-top: 1px solid rgba(17,24,39,.08);
}

/* ilk bandın üst çizgisini istemiyorsan */
.about-block:first-child{
  border-top: 0;
}

/* içerik hizası */
.about-block .container{
  width: min(1100px, calc(100% - 32px));
}

/* başlıklar */
.about-block h2{
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 1.3vw, 1.45rem);
}

/* feature çizgileri (section hissi) */
.about-feature{
  padding: 12px 0;
  border-top: 1px dashed rgba(17,24,39,.16);
}
.about-feature:first-of-type{
  border-top: 0;
  padding-top: 0;
}
.about-feature h3{
  margin: 0 0 6px;
  font-size: 1rem;
}
.about-feature p{
  margin: 0;
  color: rgba(17,24,39,.78);
}

/* koyu band (2. blok gibi) */
.about-block--dark{
    background:
    linear-gradient(90deg,
      rgba(25, 38, 65, 0.702) 45%,
      #294479 90%);
  color: #fff;
}
.about-block--dark p{
  color: rgba(255,255,255,.86);
}
.about-block--dark .about-feature{
  border-top-color: rgba(255,255,255,.18);
}

/* 1. blok için hero ile uyumlu “soft gradient” band (kart değil, band) */
.about-block--heroish{
  background: #fff;
  color: #000000;
}
.about-block--heroish h2,
.about-block--heroish .about-feature h3{
  color: rgba(0, 0, 0, 0.8);
}
.about-block--heroish p{
  color: rgba(73, 73, 73, 0.86);
}
.about-block--heroish .about-feature{
  border-top-color: rgba(255,255,255,.18);
}
/* Resimli blok */
.about-block--image{
  position: relative;
  background: url("../assets/bilder/produkte/kofte.png") center/cover no-repeat;
  padding: clamp(200px, 3vw, 44px) 0;
}

/* Resmin üstüne okunabilirlik overlay */
.about-block--image::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.28) 15%,
    rgba(0,0,0,.10) 90%
  );
  pointer-events:none;
}
.about-block--image > .container{
  position: relative;
  z-index: 1;
}

/* Blur panel (metin kutusu) */
.blur-panel{
  max-width: 75ch;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(17,24,39,.18);            /* yarı saydam */
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  color: #fff;
}

/* panel içi metin */
.about-block--image .blur-panel h2{
  margin: 0 0 10px;
  color: rgba(255,255,255,.96);
}
.about-block--image .blur-panel p{
  margin: 0 0 10px;
  color: rgba(255,255,255,.86);
}
.about-block--image .blur-panel p:last-child{ margin-bottom: 0; }