@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Quicksand:wght@300..700&display=swap');
*{
    box-sizing: border-box;
}
body {
    font-family: "Nunito", sans-serif;
    margin: 0;
    padding: 0;
}
/*------------------- HEADER SEKCIJA -------------------*/
header {
  border-bottom: 1px solid #ccc;
  background-color: white;
  border-bottom: red 1px solid;
  margin: center;
}
.logo{
    -outline: red dotted 2px;
    width: 120px;
    height: 60px;
    margin-left: 10px;
    margin-top: 5px;
    background-image: url('../img/mima-logo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: fill;
}
.nav-link, .dropdown-item{
    color: red;
    background-color: white;

}
.dropdown-item:active{
    background-color: red;
}



/*------------------- HERO SEKCIJA -------------------*/
.kontakt-main {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.kontakt-wrapper {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  margin-top: 2rem;
}

.mapa img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border: 1px solid #ccc;
}

.kontakt-info {
  flex: 1;
  min-width: 250px;
}
.kontakt-info i{
    color: red;
}
.kontakt-info span{
    color: red;
}

/*-------------- ANIMACIJE -----------*/
.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}

.slide-in-left.show,
.slide-in-right.show {
  opacity: 1;
  transform: translateX(0);
}


/*------------------- FOOTER -------------------*/
.footer {
  background: red;
  margin-top: 40px;
  padding: 2rem 1rem;
  color: white;
}

.footer h6 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.footer ul li a{
    text-decoration: none;
    color: white;
}
.footer .row > div {
  margin-bottom: 1.5rem;
}

.footer .text-center {
  margin-top: 1rem;
  font-size: 0.875rem;
}
.footer .col-md-3 ul{
    border-left: white 1px solid;
    padding-left: 10px;
    height: 120px;
}


/*------------------- MOBILNA VERZIJA -------------------*/
/* Responsive tablet */
@media (max-width: 1023px) {
  .kontakt-wrapper {
    flex-direction: row;
    gap: 1.5rem;
  }

  iframe{
        width: 100%;
        height: 300px;
    }

}
@media (max-width: 768px) {
  .logo{
    -outline: red dotted 2px;
    padding: 30px;
    width: 100px;
    background-image: url('../img/mima-logo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    }
    iframe{
        width: 100%;
        height: 300px;
    }
    .kontakt-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer .row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .footer .col-md-3{
    width: 50%;
  }
}
