@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");

:root {
  --siva: rgb(31 41 55);
  --tamnoplava: #1f2937;
  --zelena: rgb(74 222 128);
  --plava: rgb(96 165 250);
  --roze: rgb(251 113 133);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  height: 100vh;
  overflow-x: hidden;
}

.disableYScroll {
  overflow-y: hidden;
}

/* NAVBAR + BURGER MENI */

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  position: relative;
  z-index: 1;
}

nav .logo {
  color: white;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 25px;
}

nav .nav-linkovi {
  display: flex;
  justify-content: space-around;
  width: 40%;
}

nav .nav-linkovi li {
  list-style-type: none;
}

nav .nav-linkovi a {
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 16px;
}

nav .burger {
  display: none;
  cursor: pointer;
}

nav .burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1280px) {
  nav .nav-linkovi {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  nav .nav-linkovi {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 8vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    background-color: var(--tamnoplava);
  }

  nav .nav-linkovi li {
    opacity: 0;
  }

  nav .burger {
    display: block;
    position: relative;
  }
}

.nav-active {
  transform: translateX(0%) !important;
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* FUTER */

.futer {
  color: white;
  height: fit-content;
  padding-block: 50px;
  background-color: var(--tamnoplava);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.futer h4 {
  text-transform: uppercase;
  font-size: 26px;
}

.futer h4 svg {
  width: 40px;
  height: 40px;
  margin-block: 20px;
  margin-inline: 10px;
}

.futer .futer-dno .social .ikonice a {
  color: white;
  text-decoration: none;
}

.futer .futer-dno .social .ikonice svg {
  width: 25px;
  height: 25px;
  margin-block: 20px;
  margin-inline: 10px;
}

.futer h5 {
  font-size: 16px;
  font-weight: 300;
  margin-block: 20px;
}

.futer h5#futer-pasus {
  width: 45%;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 50px;
}

.futer .futer-dno {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing::after,
.onama::after,
.destinacije::after,
.kontakt::after {
  content: "";
  background-color: rgba(59, 59, 59, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.landing,
.onama,
.destinacije,
.kontakt {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

.landing .naslovi,
.onama .naslovi,
.destinacije .naslovi,
.kontakt .naslovi {
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 92vh;
}

.landing .naslovi h1,
.onama .naslovi h1,
.destinacije .naslovi h1,
.kontakt .naslovi h1 {
  font-size: 55px;
  font-weight: 600;
  line-height: 75px;
  position: relative;
  bottom: 10%;
}

.landing .naslovi h4,
.onama .naslovi h4,
.destinacije .naslovi h4,
.kontakt .naslovi h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  position: relative;
  bottom: 7%;
}

.razlozi .naslovi,
.uspomene .naslovi,
.kosmomi .naslovi,
.kartice .naslovi {
  height: fit-content;
  margin-block: 60px;
  color: var(--siva);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.razlozi .naslovi h4,
.uspomene .naslovi h4,
.kosmomi .naslovi h4,
.kartice .naslovi h4 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.razlozi .naslovi h1,
.uspomene .naslovi h1,
.kosmomi .naslovi h1,
.kartice .naslovi h1 {
  font-size: 40px;
  font-weight: 600;
}
