section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
}

.row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.row-space-around {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  background-color: transparent;
}

.wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.col-80 {
  width: 80%;
}

.col-6 {
  width: 50%;
  min-width: 300px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.col-4 {
  width: 25%;
  min-width: 300px;
  box-sizing: border-box;
}

.col-3 {
  width: 25%;
  min-width: 300px;
}

.padded-col {
  padding: 5%;
}

.ig-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  padding: 20px;
  margin-top: 3%;
}

.text-wrapper {
  padding: 20px;
}

.gapped-row {
  gap: 10px;
}

.gapped-row .col-6 {
  width: calc(50% - 5px);
}

.mosaic {
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  gap: 10px;
}

.mosaic-row {
  display: flex;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  gap: 10px;
}

.mos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  overflow: hidden;
  gap: 10px;
}

.mos-col .vertical-img-container {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mos-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  gap: 10px;
  overflow: hidden;
}

.vertical-img-container {
  width: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.horizontal-img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mosaic img {
  width: 100%;
  display: block;
  transition: all ease-in-out 0.4s;
}

.mosaic-row img {
  width: 100%;
  display: block;
  transition: all ease-in-out 0.4s;
}

.mosaic img:hover {
  transform: scale(1.1);
}

.mosaic-row img:hover {
  transform: scale(1.1);
}

.mos-col img {
  height: 100%;
}

/* Stil za svaku Instagram objavu */
.insta-feed {
  min-width: 300px;
  max-width: 540px;
  transition: all ease-in-out 0.3s;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.25));
}

/* Hover efekt za Instagram objave */
.insta-feed:hover {
  transform: scale(1.03);
}

/* Unutarnji stil unutar Instagram iframe blokova */
.instagram-media {
  border-radius: 10px;
  max-width: 100%;
  margin: 0 auto;
}

/* Responsive stil za Instagram objave */
@media (max-width: 768px) {
  .ig-posts {
    flex-direction: column;
    align-items: center;
  }

  .insta-feed {
    max-width: 90%;
  }
}

@media screen and (max-width: 1023px) {
  .col-6 {
    width: 100%;
  }
  .gapped-row .col-6 {
    width: 100%;
  }
  .slide-link {
    margin-top: 25%;
    font-size: 8pt;
  }
}

footer {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: flex-end;
  justify-content: center;
}
