/* ============================================================
   MARKALAR SAYFASI — markalar.css
   Header ve footer stilleri header-footer.css'ten gelir
   ============================================================ */

body {
  margin: 0;
  padding: 0;
}

/* ============================================================
   SECTION 1: HERO
   Figma: Group 305
   Sol %41  → #004175 düz mavi + başlık (786 / 1920)
   Sağ %59  → markalarımız.png + kaplama (1134 / 1920)
   ============================================================ */
.brands-hero {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 93px; /* header yüksekliği */
  height: 339px; /* Figma: 339px */
  overflow: hidden;
}

/* Sol panel — Figma: 786px / 1920px ≈ %41 */
.brands-hero__left {
  flex: 0 0 35%;
  background: #004175;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.brands-hero__title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -1px;
}

/* Sağ panel — Figma: 1134px / 1920px ≈ %59
   background: linear-gradient dark overlay + markalarımız.png (VEYA markalar.png) */
.brands-hero__right {
  flex: 1;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

/* Gradients overlay */
.brands-hero__right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0) 55.54%
    ),
    linear-gradient(0deg, rgba(0, 65, 117, 0.2), rgba(0, 65, 117, 0.2));
  pointer-events: none;
  z-index: 2;
}

.brands-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  position: relative;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .brands-hero {
    flex-direction: column;
    height: auto;
    margin-top: 70px;
  }

  .brands-hero__left {
    flex: none;
    padding: 40px 28px;
    height: 160px;
  }

  .brands-hero__right {
    display: none;
  }
}

/* ============================================================
   SECTION 2: MARKALAR LİSTESİ
   ============================================================ */
.brand-list-section {
  background: #ffffff;
  padding: 120px 0;
}

.brand-list-inner {
  max-width: 1102px;
  margin: 0 auto;
  padding: 0 42px;
  display: flex;
  flex-direction: column;
  gap: 120px; /* Her marka arası boşluk */
}

/* Tek Bir Marka Satırı */
.brand-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 167px; /* Sol ve sağ arası gap */
}

/* Sol (Metin) */
.brand-row__text {
  flex: 0 0 468px; /* Vizyon bölümündeki gibi standart 468px */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.brand-row__label {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 5px;
  color: #5480a3;
  text-transform: uppercase;
}

.brand-row__title {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #161616;
  margin: 0;
  letter-spacing: -1px;
}

.brand-row__desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: #474747;
  margin: 0;
}

/* Buton "İncele" */
.brand-row__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #004175;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.brand-row__btn:hover {
  background: #002d52;
}

/* Sağ (Görsel) */
.brand-row__visual {
  flex: 1;
}

.brand-row__visual img {
  width: 100%;
  aspect-ratio: 1 / 1; /* Kare format zorunlu */
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* ============================================================
   RESPONSIVE (MARKALAR LİSTESİ)
   ============================================================ */
@media (max-width: 1024px) {
  .brand-row {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .brand-list-inner {
    gap: 80px;
  }
  .brand-row {
    flex-direction: column-reverse; /* Mobilde resim üstte */
    gap: 24px;
  }
  .brand-row__text {
    flex: none;
    width: 100%;
  }
}
