@import url("https://fonts.googleapis.com/css2?family=Amatic+SC&family=Inter:wght@400;600;700&family=Josefin+Sans:wght@300&family=Montserrat:wght@100&family=Roboto+Slab:wght@100;200&family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC&family=Inter:wght@400;600;700&family=Josefin+Sans:wght@300&family=Montserrat:wght@100&family=Noto+Sans:wght@100&family=Roboto+Condensed&family=Roboto+Slab:wght@100;200&family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC&family=Inter:wght@400;600;700&family=Josefin+Sans:wght@300&family=Montserrat:wght@100&family=Noto+Sans:wght@100&family=PT+Serif:ital@1&family=Roboto+Condensed&family=Roboto+Slab:wght@100;200&family=Satisfy&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  width: 100vw;
  height: 100dvh;
  background-color: black;
  overflow-x: hidden;
}

/*! BUTTON SCROLL UP */
.scrollTop {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4c87e7;
  border-radius: 50%;
  border: none;
  opacity: 0;
  z-index: 100;
}
.scrollTop:hover {
  color: white;
  cursor: pointer;
}
/*!END OF BUTTON SCROLL UP*/

.container {
  width: 100%;
  height: 100%;

  background-image: linear-gradient(
    43deg,
    #151516 0%,
    #373036 60%,
    #5168d7 100%
  );

  display: flex;
  flex-direction: column;
}
/*? SLIDE MENU CSS*****************/
.slideMenu {
  position: absolute;
  top: 200px;
  left: 10%;
  width: 80vw;
  height: 0;
  border-radius: 20px;
  background-color: transparent;
  transition: 1s linear height;
  opacity: 0;
  color: black;
}

.slideMenu .navbar {
  width: 90%;
  height: 70px;
  margin: auto;
  display: flex;
  border-bottom: 1px solid black;
}

.slideMenu .navbar .menuBar {
  width: 80%;
  height: 50px;
  display: flex;
  justify-content: start;
}
.slideMenu .navbar .menuBar ul {
  list-style: none;
  margin-top: 25px;
}
.slideMenu .navbar .menuBar ul li {
  display: inline;
  margin: 0 30px;
  color: #4c87e7;
  font-size: 1.1rem;
  font-weight: bolder;
}
.slideMenu .navbar .menuBar ul li:hover {
  cursor: pointer;
  color: white;
}
.arrow {
  font-size: 2rem;
}
.slideMenu .bottomMenuWrapper {
  width: 100%;
  margin-left: 70px;
  margin-top: 30px;
}

.slideMenu .bottomMenuWrapper ul li {
  color: #4c87e7;
  font-size: 1.2rem;
  padding: 10px 0;
}
.slideMenu .bottomMenuWrapper ul a {
  text-decoration: none;
}
/*?ENF SLIDE MENU*************************/
.container .navigation {
  width: 100%;
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: end;
}
.hambWrapper {
  width: 30px;
  height: 30px;
  transition: 0.7s linear transform;
  position: absolute;
  top: 20px;
  left: 15px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.navigation .hamburger {
  width: 20px;
  height: 2px;
  background-color: white;
  display: none;
}
.hambWrapper:hover {
  transform: rotate(180deg);
  cursor: pointer;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: white;
}
.hamburger::after {
  top: 7px;
}
.hamburger::before {
  bottom: 7px;
}

.navigation ul {
  margin-top: 27px;
  color: #936abf;
  margin-right: 100px;
}
.navigation ul li {
  display: inline;
  padding: 0 20px;
  font-size: 1.4rem;
}
.navigation ul li:hover {
  cursor: pointer;
  color: white;
  font-size: 1.6rem;
}
.container .image {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s linear margin;
}
.container .image img {
  width: 800px;
  height: 800px;
}
.container .content {
  color: #5768d5;
  width: 100%;
  height: 30%;
  background-image: linear-gradient(
    43deg,
    #151516 0%,
    #373036 60%,
    #5168d7 100%
  );

  display: flex;
  justify-content: center;
  align-items: center;
}
.content .description {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.content .description h5 {
  font-size: 1.4rem;
  font-family: "Roboto Slab", serif;
}
.content h4 {
  font-family: "Roboto Slab", serif;
  font-size: 2rem;
}

/*? SECTION O NAMA****************************************************/

#o-nama {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  background-color: black;
}
#o-nama .info-box-container {
  width: 100%;

  border-top: 1px solid #5768d5;

  text-align: center;
}
#o-nama .info-box-container h1 {
  color: #5768d5;
  font-size: 2.3rem;
  margin-top: 20px;
}
.box-container {
  width: 100%;
  display: flex;
  margin-top: 50px;
  justify-content: space-around;
  align-items: center;
}
.box-container i {
  color: white;
  font-size: 3rem;
}
.box-container h3 {
  color: #5768d5;
}
.box-container p {
  font-size: 1.1rem;
  color: white;
}
.info-box {
  width: 320px;
  height: 300px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  box-shadow: 10px 10px 30px #5768d5;
  border-radius: 20px;
}

/*?IZDVOJENI ARTIKLI**************************/
#artikli {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: black;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  border-top: 1px solid white;
  font-family: "Josefin Sans", sans-serif;
}
#artikli .naslov {
  width: 100%;
  height: 30px;
  color: white;
  text-align: center;
  margin-top: 40px;
}
#artikli .cards-wrapper {
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 20px;
}
.cards-wrapper .card {
  width: 400px;
  height: 300px;
  border: 4px solid white;
  border-radius: 20px;
  background-color: #5768d5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  color: white;
}

.cards-wrapper .fisher-image {
  width: 200px;
  height: 100px;
  margin-bottom: 50px;
}
.cards-wrapper .fisher-image img {
  width: 100%;
}
.cards-wrapper .card span {
  margin-bottom: 30px;
  font-size: 1.3rem;
}
.cards-wrapper .card span:hover {
  cursor: pointer;
  color: black;
}
.cards-wrapper .am-opruge-images {
  width: 100%;
  height: 100px;
  display: flex;
}
.info-container-am-opruge {
  position: absolute;
  margin-top: 40px;
  left: 700px;
  width: 600px;
  height: 500px;
  background-color: #5768d5;
  color: white;
  border-radius: 10px;
  opacity: 0;
  text-align: center;
}
.info-container-am-opruge h5 {
  margin-top: 20px;
  font-size: 1.2rem;
}
.image-holder {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}
.image-holder .img2 {
  width: 160px;
  height: 150px;
}
.image-holder .img1 {
  width: 160px;
  height: 120px;
}
.tabela-info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.tabela-info table {
  width: 70%;
  text-align: center;
}
.tabela-info table,
th,
td {
  border: 2px solid black;
}
.opis-am-opruge p {
  font-size: 1.2rem;
  margin-top: 30px;
}
.close-info-container-am-opruge {
  border: none;
  border-radius: 10px;
  padding: 7px 15px;
  margin-top: 20px;
  margin-left: 5px;
}
.close-info-container-am-opruge:hover {
  cursor: pointer;
}
/*?INFO-CONTAINER SHOW CLASS*/
.show-container-am-opruge {
  opacity: 1;
  z-index: 20;
}
.close-info-am-opruge {
  opacity: 0;
  z-index: 0;
}
.cards-wrapper .am-opruge-images img {
  width: 50%;
}
.cards-wrapper .vinkli-image {
  width: 200px;
  height: 100px;
}
.cards-wrapper .vinkli-image img {
  width: 100%;
}
.cards-wrapper .vinkli span {
  margin-top: 50px;
}

/*?FOOTER***************************************************/

#footer {
  width: 100%;
  height: 500px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#footer::after {
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 500px;
  position: absolute;
  background-color: #5768d5;
  opacity: 0.3;
}
.inner-footer {
  width: 100%;
  height: 500px;
  position: absolute;
  top: 1900px;
  left: 0;
  display: flex;
  justify-content: flex-start;
  font-family: "Montserrat", sans-serif;
}
.inner-footer .footer-info {
  width: 400px;
  height: 500px;
  background-color: transparent;
  color: black;
  font-weight: bolder;

  border-radius: 10px;
}
.inner-footer .left {
  width: 400px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.inner-footer .left h2 {
  margin-bottom: 25px;
}
.inner-footer .left p {
  margin: 10px 0;
  font-size: 1.1rem;
}
/**!media query////////////////////////////////////**/

@media only screen and (min-width: 1920px) {
  .slideMenu {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  .container .image img {
    width: 500px;
    height: 500px;
  }
  .content h4 {
    font-size: 1.2rem;
  }
  .scrollTop {
    right: 60px;
  }
  .slideMenu .navbar .menuBar ul li {
    margin: 0px 5px;
  }
  .cards-wrapper .card {
    width: 370px;
  }
  #footer {
    margin-top: 600px;
  }
  #footer::after {
    content: "";
    opacity: 0.7;
  }
  .inner-footer {
    flex-wrap: wrap;
  }
  .inner-footer .footer-info {
    width: 100%;
    color: white;
    margin-top: 1600px;
  }

  .image-holder {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 900px) {
  .mainUl {
    display: none;
  }
  .navigation .hamburger {
    display: block;
  }
  .box-container {
    flex-wrap: wrap;
    gap: 10px;
  }
}
/*?LAP TOP STILIZACIJA*******************************************/
@media screen and (max-width: 1600px) {
  .inner-footer .left {
    justify-content: start;
  }
  .inner-footer {
    top: 1750px;
  }
  .info-container-am-opruge {
    left: 470px;
  }
}
/*!UTILITY CLASSES*/
.show {
  opacity: 1;
  height: 400px;
}
.drop {
  margin-top: 500px;
}
.closeSlideMenu {
  height: 0;
  opacity: 0;
}
.showButton {
  opacity: 1;
}
