@import url("/assets/css/base/tokens.css");

/* ===============================
      HAKKIMIZDA (section)
   =============================== */
#hakkimizda {
  background: #fff;
  color: #000;
  padding: 100px 40px;
  --btn: #1e90ff;
  --ink: #ffffff;
}
.about-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.about-text {
  flex: 1 1 500px;
  text-align: left;
}
.about-media {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
}

.about-kicker {
  color: var(--btn);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
.about-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #000;
}
.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}
.about-text p:last-of-type {
  margin-bottom: 30px;
}

.about-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* CTA buton */
.about-btn {
  padding: 14px 28px;
  border: 2px solid var(--btn);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: var(--btn);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}
.about-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--btn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}
.about-btn:hover {
  color: #000;
  border-color: var(--btn);
  box-shadow: 0 0 12px var(--btn), 0 0 24px var(--btn), 0 0 36px var(--btn);
}
.about-btn:hover::before {
  transform: scaleX(1);
}

/* Video kutusu */
.about-video {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}
.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
