/* =========================================================
   ABOUT - Otkrij više o nama (Figma 1301:2807)
   Centered head + 3 image link cards
   ========================================================= */

.about-otkrij {
  position: relative;
  background: #f5f4ef;
  padding: 86px 0 100px;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 60px;
}

.about-otkrij::before {
  content: "";
  position: absolute;
  inset: -66px 0 0 0;
  background-image: var(--about-otkrij-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.about-otkrij .container,
.about-otkrij .row,
.about-otkrij .col-12 {
  position: relative;
  z-index: 1;
}

/* Head */
.about-otkrij__head {
  max-width: 474px;
  margin: 0 auto 60px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.about-otkrij__subtitle {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 11.2px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #191d23;
}

.about-otkrij__title {
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  font-size: clamp(34px, 3.125vw, 60px);
  line-height: 1.177;
  letter-spacing: -3.6px;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(155deg, #191d23 26.5%, #796220 83.8%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Grid */
.about-otkrij__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.about-otkrij__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 444px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2.5px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  isolation: isolate;
}

.about-otkrij__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.about-otkrij__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(25, 29, 35, 0) 0%,
    rgba(25, 29, 35, 0.37) 47%,
    rgba(25, 29, 35, 0.66) 69%,
    rgba(25, 29, 35, 0.85) 81%,
    rgba(25, 29, 35, 0.92) 100%
  );
}

.about-otkrij__card-label {
  position: relative;
  z-index: 3;
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 35.2px;
  letter-spacing: -1.28px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

.about-otkrij__card:hover .about-otkrij__card-bg {
  transform: scale(1.06);
}

.about-otkrij__card:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .about-otkrij {
    padding: 70px 0 80px;
    margin-bottom: 15px;
  }
  .about-otkrij__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about-otkrij__card {
    height: 320px;
  }
  .about-otkrij__card-label {
    font-size: 26px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .about-otkrij__card {
    height: 260px;
  }
  .about-otkrij__card-label {
    font-size: 22px;
  }
}
