/* =========================================================
   FOOTER — GOGHA LOGO
   ========================================================= */

/* Ceo blok: GOGHA + kvadrat pomeren nagore */
.gogha-footer-logo-holder {
  position: relative;
  top: -18px;
  margin: 0;
  padding: 0;
}

/* Reč GOGHA */
.gogha-footer-logo-holder a.gogha-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  text-decoration: none;
}

/* Kvadrat: 20% veći od prethodnih 39px */
.gogha-footer-logo-holder a.gogha-footer-logo::before {
  content: "";
  display: block;
  flex: 0 0 47px;
  width: 47px;
  height: 47px;
  box-sizing: border-box;
  border: 2px solid #ffffff;
  border-radius: 7px;
}

/* Tablet: ne dozvoli da logo bude prevelik */
@media (max-width: 991px) {
  .gogha-footer-logo-holder {
    top: 0;
    margin-bottom: 24px;
  }

  .gogha-footer-logo-holder a.gogha-footer-logo {
    font-size: 40px;
    gap: 10px;
  }

  .gogha-footer-logo-holder a.gogha-footer-logo::before {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
}

/* Mobilni */
@media (max-width: 767px) {
  .gogha-footer-logo-holder {
    margin-bottom: 20px;
  }

  .gogha-footer-logo-holder a.gogha-footer-logo {
    font-size: 34px;
    gap: 7px;
  }

  .gogha-footer-logo-holder a.gogha-footer-logo::before {
    flex-basis: 29px;
    width: 29px;
    height: 29px;
    border-width: 1px;
    border-radius: 3px;
  }
}