/* FONT */
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

/* HTML */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

/* NAVBAR */
.navbar {
  width: 100%;
  height: 13%;
}

.brand img {
  float: left;
  margin-top: 1%;
  margin-left: 1%;
  width: 140px;
}

.navbar .link {
  float: right;
  text-align: center;
  color: white;
  text-decoration: none;
  transition: all ease 0.3s;
  font-size: 300%;
  margin-top: 2.5%;
  margin-right: 2.5%;
}

.fa-facebook:hover {
  color: #1877f2;
}

.fa-instagram:hover {
  color: #e4405f;
}

.fa-whatsapp:hover {
  color: #25d366;
}

/* HERO */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("media/poznat.jpg");
  background-position: 70% 30%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100%;
}

.hero-img {
  width: 20vw;
  height: auto;
}

.hero-text {
  text-align: center;
  position: absolute;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 300%;
}

.hero-text a {
  text-decoration: none;
  color: white;
  background-color: transparent;
  border: 0.5px solid white;
  font-size: 30px;
  padding: 16px;
  border-radius: 4px;
  border-radius: 6px;
  transition: all ease 0.3s;
}

.hero-text a:hover {
  background-color: white;
  color: black;
}

.hero-text .button {
  font-size: 80%;
}

/* INFO TEXT */
.welcome-div {
  padding-left: 10%;
  padding-right: 10%;
}

.welcome-div h2 {
  font-weight: 400;
}

/* CAROUSEL */
.div-title {
  text-align: center;
  margin-top: 2%;
}

.carousel {
  text-align: center;
}

.siema div {
  height: 70vh;
  display: flex;
  justify-content: center;
  margin-top: 0.5%;
}

.prev,
.next {
  text-align: center;
  border: 0.5px solid black;
  height: 50px;
  width: 100px;
  background-color: transparent;
  color: black;
  margin: 3%;
}

.prev:hover,
.next:hover {
  cursor: pointer;
}

/* CONTENT */
.content {
  height: 100vh;
}

/* MAP */
.map {
  border: 0;
  margin-top: 2.5%;
  margin-left: 2.5%;
  margin-right: 2.5%;
  width: 95%;
  height: 50%;
}

/* FOOTER */
.footer {
  text-align: center;
  padding-top: 2.5%;
  padding-bottom: 2.5%;
}

.footer a {
  text-decoration: none;
  color: black;
}

.footer-brand {
  top: 107.5%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-brand img {
  width: 140px;
}

hr {
  border: 1px solid black;
  margin-top: 1.25%;
  width: 25%;
}

.footer .link {
  font-size: xx-large;
  transition: all ease 0.3s;
  margin-top: 1.25%;
  margin-left: 1.25%;
  margin-right: 1.25%;
}
/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 2%;
  border: 0.5px solid white;
  border-radius: 12px;
  width: 80vw;
  font-size: x-small;
  text-align: center;
}

.modal-content h2 {
  text-align: center;
}
.fa-x {
  color: black;
  float: right;
  font-size: xx-large;
  font-weight: bold;
}

.fa-x:hover {
  cursor: pointer;
}

.modal-button {
  border: 0.5px solid black;
  background-color: transparent;
  height: 50px;
  width: 150px;
  text-align: center;
  margin-top: 1.5%;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.modal-button:hover {
  cursor: pointer;
  background-color: black;
  color: white;
}

/* PERSISTENT */
.persistent .arrow {
  position: absolute;
  bottom: 2%;
  left: 50%;
  color: white;
  z-index: 999;
  transform: translate(-50%, -50%);
  text-decoration: none;
  font-size: x-large;
  cursor: default;
}

/* MEDIA QUERIES */
@media only screen and (max-width: 1024px) {
  .navbar .link {
    margin-top: 8%;
    margin-right: 8%;
    font-size: xx-large;
  }

  .brand img {
    width: 80px;
    margin: 2.5%;
  }

  .hero-text {
    font-size: xx-large;
  }

  .siema div {
    height: max-content;
  }

  .siema img {
    width: 100vw;
    height: auto;
  }

  .welcome-div {
    padding: 10%;
  }

  .hero-img {
    width: 65vw;
  }
}
