/** Freshio Home 13-inspired centered footer for Dose Gida. */

.yatbt-site-footer {
  position: relative;
  overflow: hidden;
  color: var(--yatbt-section-text, #fff);
  background: var(--yatbt-section-background, #174b2e);
}

.yatbt-footer-main {
  position: relative;
  z-index: 1;
  padding-top: clamp(54px, 5vw, 78px);
}

.yatbt-footer-logo-row {
  display: flex;
  justify-content: center;
  padding-bottom: clamp(42px, 4.5vw, 66px);
}

.yatbt-footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.yatbt-footer-brand-logo {
  display: block;
  width: clamp(230px, 22vw, 320px);
  max-width: 100%;
  height: auto;
}

.yatbt-footer-brand-name {
  color: #174b2e;
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  font-weight: 760;
}

.yatbt-footer-columns {
  display: grid;
  align-items: start;
  gap: clamp(34px, 5vw, 86px);
  padding-bottom: clamp(62px, 6vw, 92px);
  grid-template-columns: repeat(2, minmax(130px, 1fr)) minmax(220px, 1.25fr) repeat(2, minmax(130px, 1fr));
}

.yatbt-footer-column {
  min-width: 0;
}

.yatbt-footer-contact {
  text-align: center;
}

.yatbt-footer-label {
  margin: 0 0 21px;
  color: var(--yatbt-section-text, #fff);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.yatbt-footer-menu {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yatbt-footer-menu a {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  color: color-mix(in srgb, var(--yatbt-section-text, #fff) 55%, transparent);
  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.yatbt-footer-menu a:hover,
.yatbt-footer-menu a:focus-visible {
  color: var(--yatbt-section-accent, #97ce73);
  transform: translateX(3px);
}

.yatbt-footer-contact > p {
  display: grid;
  justify-items: center;
  gap: 1px;
  max-width: 255px;
  margin: 0 auto 17px;
  color: color-mix(in srgb, var(--yatbt-section-text, #fff) 80%, transparent);
  font-size: 11px;
  line-height: 1.55;
}

.yatbt-footer-contact > p strong {
  color: var(--yatbt-section-text, #fff);
  font-weight: 650;
}

.yatbt-footer-contact a {
  text-decoration: none;
}

.yatbt-footer-contact .yatbt-footer-accent-link {
  color: var(--yatbt-section-accent, #97ce73);
  font-size: 13px;
  font-weight: 730;
}

.yatbt-footer-contact p:nth-of-type(4) .yatbt-footer-accent-link {
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.yatbt-footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.yatbt-footer-socials a {
  display: grid;
  width: 18px;
  height: 18px;
  color: var(--yatbt-section-text, #fff);
  place-items: center;
  transition: color 180ms ease, transform 180ms ease;
}

.yatbt-footer-socials a:hover,
.yatbt-footer-socials a:focus-visible {
  color: var(--yatbt-section-accent, #97ce73);
  transform: translateY(-2px);
}

.yatbt-footer-socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.yatbt-footer-bottom {
  display: grid;
  min-height: 78px;
  align-items: center;
  gap: 24px;
  padding: 22px 0 24px;
  border-top: 1px solid color-mix(in srgb, var(--yatbt-section-text, #fff) 13%, transparent);
  color: color-mix(in srgb, var(--yatbt-section-text, #fff) 57%, transparent);
  font-size: 10px;
  grid-template-columns: 1fr auto 1fr;
}

.yatbt-footer-bottom p {
  margin: 0;
}

.yatbt-footer-developer {
  display: grid;
  min-width: 120px;
  min-height: 34px;
  text-align: center;
  place-items: center;
}

.yatbt-footer-developer-logo {
  display: block;
  width: auto;
  max-width: clamp(120px, 11vw, 155px);
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.yatbt-footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.yatbt-footer-bottom-links a {
  text-decoration: none;
}

.yatbt-footer-bottom-links a:hover,
.yatbt-footer-bottom-links a:focus-visible {
  color: var(--yatbt-section-text, #fff);
}

.yatbt-footer-ornament {
  position: absolute;
  z-index: 0;
  bottom: -18px;
  width: clamp(150px, 17vw, 265px);
  height: auto;
  fill: none;
  stroke: color-mix(in srgb, var(--yatbt-section-background, #174b2e) 74%, #061d10);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: .5;
  pointer-events: none;
}

.yatbt-footer-ornament--left {
  left: -12px;
}

.yatbt-footer-ornament--right {
  right: -8px;
  transform: scaleX(-1);
}

@media (max-width: 1120px) {
  .yatbt-footer-columns {
    gap: 45px 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yatbt-footer-contact {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  .yatbt-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yatbt-footer-bottom {
    justify-items: center;
    text-align: center;
    grid-template-columns: 1fr;
  }

  .yatbt-footer-bottom-links {
    justify-content: center;
  }

  .yatbt-footer-ornament {
    opacity: .24;
  }
}

@media (max-width: 420px) {
  .yatbt-footer-columns {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .yatbt-footer-contact {
    grid-column: auto;
  }

  .yatbt-footer-menu {
    justify-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .yatbt-footer-menu a,
  .yatbt-footer-socials a {
    transition: none;
  }
}
