/* Font */
@font-face {
  font-family: 'Barlow';
  src: url('/assets/fonts/Barlow-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.footer {
  background-color: #515151;
  padding: 1rem; /* mali razmak sa svih strana */
  color: white;
  font-family: 'Barlow', sans-serif;
  font-weight: normal;
  text-align: center;
  box-sizing: border-box;
}

/* Reset bold */
.footer p,
.footer a,
.footer li {
  font-weight: normal;
}

/* Top sekcija */
.footer__top p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer__left {
 margin-left: calc(-1rem);
}

/* Ribbon slika */
.footer__ribbon {
  width: 100vw;
  margin: 0 calc(-1rem); /* nema margine */
  padding: 0;
}

.footer__ribbon-img {
  width: 90%;
  height: auto;
  display: block;
  border-radius: 0; /* ravni ivice da bude full width */
}

/* Middle deo */
.footer__middle {
  display: flex;
  flex-direction: row;
  gap: 1rem; /* manji razmak */
  align-items: flex-start;
  text-align: left;
  flex-wrap: nowrap;
  box-sizing: border-box;
  /* uklonjena gornja linija */
}

.footer__contact {
  flex: 2;
  padding-right: 1rem;
  min-width: 200px;
  box-sizing: border-box;
}

.footer__links {
  flex: 1;
  padding-left: 1rem;
  border-left: 2px solid #fff; /* vertikalna linija ostaje bela */
  min-width: 150px;
  box-sizing: border-box;
}

/* Linkovi */
.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links a {
  color: white;
  text-decoration: none;
  line-height: 2; /* smanjen razmak između linkova */
}

/* Kontakt linkovi */
.footer__contact a {
  color: #0099e6;
  text-decoration: none;
}

/* Ikonice */
.footer__social img {
  width: 32px;
  height: 32px;
  margin: 0.5rem;
  border-radius: 5px;
  display: inline-block;
}

/* Bottom deo */
.footer__bottom {
  margin-top: 2rem;
  border-top: 2px solid #fff; /* donja bela linija ostaje */
  padding: 1rem 2rem;
  font-size: 0.9rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.6;
}

/* Desktop stilovi */
/* Desktop layout */
@media (min-width: 768px) {
  .footer__container {
    display: flex;
    flex-direction: row;
    width: 100%;
  }

  /* LEVI DEO: natpis + slika */
  .footer__left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: left; /* centrirano vertikalno */
    align-items: left;     /* centrirano horizontalno */
    gap: 1rem;
    margin-left: calc(-1rem);
  }

  .footer__message {
    text-align: center;
    font-size: 1.5rem;
  }

  .footer__ribbon-img {
    width: 95%;
    height: auto;
    display: block;
  }


  /* DESNI DEO */
  .footer__right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer__middle {
    display: flex;
    gap: 1rem;
  }

  .footer__contact {
    flex: 2;
  }

  .footer__links {
    font-size: 1.5rem;
    flex: 1;
    border-left: 2px solid #fff;
    padding-left: 1rem;
  }

  .footer__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer__links a {
    color: white;
    text-decoration: none;
    line-height: 2;
  }

  .footer__contact a {
    color: #0099e6;
  }

  .footer__bottom {
    border-top: 2px solid #fff;
    padding-top: 1rem;
  }
 
 .footer__top p {
    font-size: 2.6rem;
    margin-bottom: 3rem;
}
}

