/**
 * BK Banner - Modüler sayfa hero/banner bileşeni
 * Farklı projelerde tekrar kullanılabilir, ek CSS kütüphanesine bağımlı değildir.
 * Ön ek: bk-banner
 */

/* -------------------------------------------------------------------------
   Wrapper & layout
   ------------------------------------------------------------------------- */
.bk-banner {
  position: relative;
  width: 100%;
}

.bk-banner__shape {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.bk-banner__shape img {
  display: block;
  max-width: 100%;
  height: auto;
}

.bk-banner__container {
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.bk-banner__inner {
  padding-top: 195px;
  padding-bottom: 20px;
}

.bk-banner__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -15px;
  margin-right: -15px;
}

.bk-banner__col {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* -------------------------------------------------------------------------
   Title box & breadcrumb
   ------------------------------------------------------------------------- */
.bk-banner__title-box {
  width: 100%;
}

.bk-banner__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.bk-banner__breadcrumb-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  text-transform: uppercase;
  color: #141414;
  margin-right: 15px;
}

.bk-banner__breadcrumb-text a {
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}

.bk-banner__breadcrumb-text a:hover {
  text-decoration: underline;
}

/* Subtitle "pre" modifier: küçük kare ikon (::before) */
.bk-banner__breadcrumb-text.bk-banner__breadcrumb-text--pre::before {
  content: "";
  height: 8px;
  width: 8px;
  margin-right: 12px;
  border-radius: 4px;
  display: inline-block;
  transform: translateY(-2px);
  vertical-align: middle;
  background-color: #DBB800;
}

.bk-banner__breadcrumb-icon {
  margin-right: 75px;
  flex-shrink: 0;
}

.bk-banner__breadcrumb-icon svg {
  display: block;
}

/* -------------------------------------------------------------------------
   Main heading (h1)
   ------------------------------------------------------------------------- */
.bk-banner__heading {
  font-size: 70px;
  font-weight: 400;
  line-height: 1;
  color: #111013;
  letter-spacing: -4.8px;
  margin: 0;
  padding-bottom: 30px;
  font-family: var(--tp-ff-body, 'Inter', sans-serif);
}

.bk-banner__heading .bk-banner__heading-shape {
  margin-left: 4px;
  display: inline-block;
}

/* -------------------------------------------------------------------------
   Responsive: 1200px - 1399px
   ------------------------------------------------------------------------- */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bk-banner__heading {
    font-size: 70px;
  }
}

/* -------------------------------------------------------------------------
   Responsive: 992px - 1199px
   ------------------------------------------------------------------------- */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bk-banner__shape {
    display: none;
  }

  .bk-banner__inner {
    padding-bottom: 20px;
  }

  .bk-banner__heading {
    font-size: 60px;
  }
}

/* -------------------------------------------------------------------------
   Responsive: 768px - 991px (tablet)
   ------------------------------------------------------------------------- */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bk-banner__shape {
    display: none;
  }

  .bk-banner__inner {
    padding-top: 195px;
    padding-bottom: 20px;
  }

  .bk-banner__breadcrumb {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .bk-banner__breadcrumb-icon {
    margin-right: 0;
  }

  .bk-banner__heading {
    font-size: 50px;
    letter-spacing: -1.8px;
  }

  .bk-banner__heading .bk-banner__heading-shape {
    display: none;
  }
}

/* -------------------------------------------------------------------------
   Responsive: max 767px (mobile)
   ------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .bk-banner__shape {
    display: none;
  }

  .bk-banner__inner {
    padding-top: 120px;
    padding-bottom: 10px;
  }

  .bk-banner__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .bk-banner__row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .bk-banner__col {
    padding-left: 15px;
    padding-right: 15px;
  }

  .bk-banner__breadcrumb-text {
    font-size: 11px;
  }

  .bk-banner__breadcrumb-icon {
    display: none;
  }

  .bk-banner__heading {
    font-size: 33px;
    letter-spacing: normal;
    padding-bottom: 10px;
  }

  .bk-banner__heading .bk-banner__heading-shape {
    display: none;
  }

  .bk-banner__heading br {
    display: none;
  }
}

/* -------------------------------------------------------------------------
   Responsive: max 575px (small mobile)
   ------------------------------------------------------------------------- */
@media (max-width: 575px) {
  .bk-banner__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .bk-banner__row {
    margin-left: -12px;
    margin-right: -12px;
  }

  .bk-banner__col {
    padding-left: 12px;
    padding-right: 12px;
  }
}
