@font-face {
  font-family: "generalSans-regular";
  src: url(fontovi/generalSans/GeneralSans-Regular.otf);
  font-weight: bold;
}

@font-face {
  font-family: "generalSans-semibold";
  src: url(fontovi/generalSans/GeneralSans-Semibold.otf);
  font-weight: bold;
}

@font-face {
  font-family: "generalSans-bold";
  src: url(fontovi/generalSans/GeneralSans-Bold.otf);
  font-weight: bold;
}


:root {
  --siva: #333335;
  --plava: #a3b6cf;
  --bijela: #fff;
  --crna: #000;
}

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  max-width: 100vw;
}

/* hamburger meni */
label {
  margin: 0 20px;
  font-size: 25px;
  line-height: 70px;
  display: none;
  width: 26px;
  float: right;
}

input {
  display: none;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  gap: 2vw;
  align-items: center;
  background-color: var(--siva);
  width: 100%;
  height: 15vh;
  z-index: 2;
}

nav {
  order: 2;
  font-family: "generalSans-regular";
  letter-spacing: 2pt;
  text-decoration: none;

}

nav a{
  text-decoration: none;
  color: white;
}

nav ul {
  list-style: none;
}

nav li {
  display: inline-block;
  padding: 0px 20px;
}

nav li a {
  transition: all 0.3s ease 0s;
}

nav li a:hover {
  color: var(--plava);
}

.nav_gumb {
  width: 10vw;
  height: 7vh;
  border-radius: 35px;
  background-color: var(--plava);
  border-color: var(--plava);
  font-size: 15px;
  letter-spacing: 2pt;
  order: 3; 
  margin-right: 5vw !important;
}

.navigacija {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 10vh;  
}


.logo {
  width: auto;
  height: 10vh;
  order: 1;
}

/*naslovna*/
.naslovna {

  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.naslovna::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(slike/pocetna.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.90; /* Smanjuje opacity samo slike */
  z-index: -1;
}

h1 {
  font-family: "generalSans-semibold";
  text-align: center;
  font-size: 5rem;
  font-weight: bold;
  color: #2a2a2e;
}

.rezerviraj{
  display: none;
}

/* O nama */
.o_nama{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8vw;
  width: 100%;
  height: 100vh;
}

.about_us{
  background-image: url(slike/o_nama.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 40vw;
  height: 50vh;
  justify-content: space-between;
  align-items: center;
}

.about_us_tekst{
  height: 50vh;
  width: 40vw;
  font-family: "generalSans-regular";
}

.about_us_tekst h2{
  font-family: "generalSans-regular";
  font-size: 25pt;
}

.about_us_tekst p{
   margin-top: 2vh;
  font-size: 13pt;
}

span{
  font-family: "generalSans-bold";
}

/*galerija*/
.galerija{
  width: 100%;
  height: auto;
  background-color: white;
  position: flex;
  justify-content: center;
  align-items: center;
}


.slider {
	height: 80vh;
	width: 100%;
	overflow: hidden;
  padding-top: 7vh;
}


.slider-content {
	position: relative;		
	width: 100%;
}


.slider-content-wrapper {
	display: flex;
	height:  80vh;
	transition: transform 0.5s ease-in-out;
}

.slider-content__item {
	flex: 1 0 100%; 
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	font-size: 100px;
	color: rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-1 {
  background-image: url(slike/galerija/dnevni-boravak1.jpg);
  background-size: contain;
}

.image-2 {
  background-image: url(slike/galerija/dnevni-boravak-kuhinja.jpg);
  background-size: contain;
}

.image-3 {
  background-image: url(slike/galerija/blagavaonica2.jpg);
  background-size: contain;
}

.image-4 {
  background-image: url(slike/galerija/hodnik.jpg);
  background-size: contain;
}

.image-5 {
  background-image: url(slike/galerija/kupaonica2.jpg);
  background-size: contain;
}

.image-6 {
  background-image: url(slike/galerija/terasa2.jpg);
  background-size: contain;
}

/* Arrows */
.prev-arrow, .next-arrow {
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	cursor: pointer;
	color:rgba(0,0,0, 0.3);
	width: 20px;
	transition: all 0.3s;
}
.prev-arrow {left: 20px;}
.next-arrow {right: 20px;}

.prev-arrow:hover,
.next-arrow:hover {
	cursor: pointer;
	color:rgba(0,0,0, 0.7);
}

/* Dots */
.dots {
	position:absolute;
	display: flex;
	left:50%;
	transform: translateX(-50%);
	bottom:10%;
}

.dot {
	cursor: pointer;
	width: 8px;
	height: 8px;
	margin-right: 4px;
	background-color: rgba(0,0,0, 0.3);
	/*box-shadow: 0 0 5px 0px rgba(0,0,0,0.9);*/
	border-radius: 50%;
	transition:all 0.3s;
}

.dot:last-child {margin-right: 0;}
.dot:hover {background-color: #fff;}
.dot--active {background-color: rgba(255,255,255, 0.5);}

/* Buttons */
button {
	cursor: pointer;
	margin-right: 8px;
	border:none;
	padding:10px;
	transition: all 0.5s;
}

button:last-child {margin-right: 0;}
button:hover {background-color: #60AFFF;}
button:focus {outline: none;}

/* Mods */
.disabled {
	background-color: #DCCFCF;
	color:#B0A8A8;
	cursor: default;
	pointer-events:none;
}

.d-none {display: none;}
.active {opacity: 1;}
.centered {
	position:relative;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);	
}

.usluge{
  width: 100%;
  height: 50vh;
  background-color: #2a2a2e;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2vh;
  font-family: "generalSans-regular";
  font-size: 15pt;
  color: white;
}

.usluge p{
  width: 20vw;
  height: 5vh;
  display: flex;
  align-items: center;
  gap: 1vw;
}

.usluge_desno{
  width: 50vw;
  height: 50vh;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
}

.usluga_lijevo{
  width: 50vw;
  height: 50vh;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.usluga_lijevo h2{
  display: flex;
  justify-content: center;
  align-items: center;
 
}


/*Mjesta u blizini*/
.mjesta-u-blizini{
  width: 100%;
  min-height: 100vh;
  background-color: var(--bijela);
  font-family: "generalSans-regular";
  font-size: 12pt;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2vw;
}

.stupac{
  width: 20vw;
  height: 80vh;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 2vh;
  margin-bottom: 10vh;
  overflow-y: hidden;
}

table{
  column-gap: 10vh;
  border-spacing: 10px; 
}

td{
  width: 40vw;
}

th{
  height: 10vh;
}



/*cijene*/
.cijene{
  width: 100%;
  height: 90vh;
  background-color: var(--bijela);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5vw;

  font-family: "generalSans-regular";
}


.cjenik{
  width: 20vw;
  height: 50vh;
  background-color: var(--siva);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5vh;
  padding: 10px;
  color: white;
}

.cjenik h3{
  font-family: "generalSans-semibold";
  color: white;
}

.rezervacije{
  width: 10vw;
  height: 7vh;
  border-radius: 35px;
  background-color: var(--plava);
  border-color: var(--plava);
  font-size: 15px;
  letter-spacing: 2pt;
  order: 3;
  display: flex;
  align-items: center; 
  justify-content: center;
  text-decoration: none;
  color: black;
  font-family: "generalSans-regular";
}



.lokacija_kontakt{
  background-color: #242323  ;
  width: 100%;
  min-height: 95vh;
  display: flex; 
  gap: 2vh;
  justify-content: center;
  flex-direction: column;
  font-family: "generalSans-regular";
}

.kontakt{
  width: 20vw;
  height: 50vh;
  background-color: var(--siva) ;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2vh;
}

.kontakt a {
  text-decoration: none;
  color: white;
}

.mail{
  width: 20vw;
  height: 50vh;
  background-color: var(--siva);
}

.mail p{
  margin-left: 1vw;
  color: white;
}

.karta{
  width: 20vw;
  height: 50vh;
  background-color: var(--siva);
  overflow: hidden;
}


.karta iframe {
  width: 100%;
  height: 100%;
}

.kutijica{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}

.kutijica h3{
  margin-top: 7vh;
  font-size: 30pt;
  margin-left: 20px;
  color: white;
  font-family: "generalSans-semibold";
}

.kontaktText{
  width: 17vw;
  height: 30vh;
  margin-left: 20px;
  font-size: 13pt;
  color: white;
}

div a{
  text-decoration: none;
  font-size: 15pt;
 
}

/*Kucni red*/
.kucni_red{
  width: 100%;
  max-width: 100vw;
  height: 60vh;
  padding-bottom: 10vh;
  font-family: "generalSans-regular";
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.stavke{
  padding-top: 5vh;
  max-width: 30vw;
  max-height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.stavke i{
  font-size: 20pt;
}

.stavke p{
  text-align: center;
  width: 18vw;
}

.stavke h3{
  font-size: 15pt;
}

/* Rezerviraj*/
.rezervacija{
  width: 100%;
  height: 90vh;
  color: white;   
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

form input {
    display: block;
    width: 20vw;
    height: 5vh;
    border-radius: 25px;
    border: 1px solid var(--siva);
    padding-left: 5px;
    padding-right: 5px;
    font-family: "generalSans-regular";
}


/*footer*/
footer{
    width: 100%;
    height: 40vh;
    background-color: var(--siva);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer img{
  width: 12vh;
  height: auto;
}

.logo_footer{
   width: 30vw;
   height: 20vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;  
  
}

.social_media{
  width: 30vw;
  height: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vh;
  font-size: 20pt;
  color: white; 
}

.footer_text{
  width: 30vw;
  height: 10vw;
  font-size: 15pt;
  color: white; 
  font-family: "generalSans-regular";
  text-align: center;
}

footer a{
  color: white;
}

/*Mobitel*/
@media only screen and (max-width: 850px) {
    .o_nama{
      width: 100vw;
      height: auto;
      background-position: center; 
      background-size: cover;
      background-repeat: no-repeat;
      padding: 10px;
    }
    h1{
      font-size: 35pt;
      color: white;
       text-shadow: 2px 1px rgba(128, 128, 128, 0.84);
    }

    .nav_gumb{
      display: none;
    }

    .navigacija{
      justify-content: space-between ;
      width: 100%;
    }

    nav ul.menu {
        display: none;
    }

    .navbar {
      width: 100%;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 62px;
    }

    .navbar .menu-items {
      display: flex;
    }

    .navbar .nav-container li {
      list-style: none;
    }

    .navbar .nav-container a {
      text-decoration: none;
      color: #0e2431;
      font-weight: 500;
      font-size: 1.2rem;
      padding: 0.7rem;
    }

    .navbar .nav-container a:hover{
        font-weight: bolder;
    }

    .nav-container {
      display: block;
      position: relative;
      height: 60px;
      width: 60vw;
    }

    .nav-container .checkbox {
      position: absolute;
      display: block;
      height: 32px;
      width: 32px;
      top: 20px;
      left: 20px;
      z-index: 5;
      opacity: 0;
      cursor: pointer;
    }

    .nav-container .hamburger-lines {
      display: block;
      height: 26px;
      width: 32px;
      position: absolute;
      top: 17px;
      left: 5vw;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .nav-container .hamburger-lines .line {
      display: block;
      height: 4px;
      width: 100%;
      border-radius: 10px;
      background: #a3b6cf;
    }

    .nav-container .hamburger-lines .line1 {
      transform-origin: 0% 0%; 
      transition: transform 0.4s ease-in-out;
    }

    .nav-container .hamburger-lines .line2 {
      transition: transform 0.2s ease-in-out;
    }

    .nav-container .hamburger-lines .line3 {
      transform-origin: 0% 100%;
      transition: transform 0.4s ease-in-out;
    }

    .navbar .menu-items {
      padding-top: 120px;
      background-color: rgba(255, 255, 255, 0.518);
      height: 100vh;
      width: 100%;
      transform: translate(-150%);
      display: flex;
      flex-direction: column;
      margin-left: -40px;
      padding-left: 50px;
      transition: transform 0.5s ease-in-out;
      text-align: center;
    }

    .navbar .menu-items li {
      margin-bottom: 1.2rem;
      font-size: 1.5rem;
      font-weight: 500;
    }

    .logo {
      position: absolute;
      top: 10px;
      right: 10vw;
      width: auto;
      height: 12vh;
    }

    .nav-container input[type="checkbox"]:checked ~ .menu-items {
      transform: translateX(0);
    }

    .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
      transform: rotate(45deg);
    }

    .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
      transform: scaleY(0);
    }

    .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
      transform: rotate(-45deg);
    }

    .nav-container input[type="checkbox"]:checked ~ .logo{
      display: none;
    }

    .rezerviraj{
      display: block;
    }

    /*o nama*/
    .o_nama{
      display: flex;
      flex-direction: column;
      height: auto;
      padding-bottom: 10px;
    }

    .about_us{
      background-image: url(slike/o_nama.jpg);
      background-size: contain;
      background-repeat: no-repeat;
      width: 80vw;
      height: 40vh;
      margin-bottom: 0;
    }

    .about_us_tekst{
      height: auto;
      width: 80vw;
      margin-top:8vh;
      font-family: "generalSans-regular";
    }

    .about_us_tekst p{
      margin-top: 0;
      font-size: 12pt;
      padding-bottom: 2vh;
    }

    .galerija{
      margin-top: 0vh;

    }


    .usluge{
      width: 100vw;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 10px;
    }

    .usluge_desno{
      width: 100vw;
      height: 50vh;
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
      font-size: 12pt;
    }

    .usluga_lijevo{
      width: 100vw;
      height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .usluge p{ 
      width: 50vw; 
    }

    .cijene{
      width: 100vw;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 2vh;
      padding-top: 2vh;
      padding-bottom: 2vh;
    }

    .cjenik{
      width: 90vw;
      height: 40vh;
      background-color: var(--siva);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;   
      border-radius: 30px;
    }

    .cjenik h3{
      font-size: 15pt;
    }

    .cjenik a{
      width: 35vw;
      font-size: 10pt;
      letter-spacing: 2pt;
      padding: 0 10px
    }




    .lokacija_kontakt{
      width: 100vw;
      height: auto;
      display: flex; 
      justify-content: center;
      align-items: center;
      flex-direction: row;
      padding-top: 5vh;
      padding-bottom: 5vh;
    }


    .kutijica{
      flex-wrap: wrap;
      gap: 3vh;
    }

    .kontakt{
      width: 90vw;
      height: auto;
      padding: 2vh 0;

    }

    .kontakt a {
      text-decoration: none;
      color: white;
    }

    .mail{
      width: 90vw;
    }

    .mail p{
      margin-left: 4vw;
      color: white;
    }

    .karta{
      width: 90vw;
      height: auto;
    }

    .karta iframe {
      width: 100%;
      height: 100%;
    }

    .kontaktText{
      width: 50vw;
      height: auto;
      margin-left: 20px;
      font-size: 12pt;
    }

    /*Kucni red*/
    .kucni_red{
      max-width: 100vw;
      width: 100vw;
      height: auto;
      font-family: "generalSans-regular";
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5vh;
      flex-wrap: wrap;
      flex-direction: row;
      padding-bottom: 10vh;
      padding-top: 10vh;
    }

    .stavke{
      width: auto;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 10px
    }

    .stavke i{
      font-size: 14pt;
    }

    .stavke p{
      text-align: center;
      width: auto;
      height: auto;
      font-size: 12pt;
    }

    .stavke h3{
      font-size: 13pt;
    }

    /*footer*/
    footer{
      width: 100vw;
      height: auto;
      background-color: var(--siva);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    footer img{
      width: 12vh;
      height: auto;
    }

    .logo_footer{
      width: 30vw;
      height: 20vh;
      display: flex;
      align-items: flex-start;
      justify-content: center;  
      
    }

    .social_media{
      width: 30vw;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2vh;
      font-size: 20pt;
      color: white; 
      margin: 5vh;
    }

    .footer_text{
      width: 50vw;
      height: auto;
      font-size: 12pt;
      color: white; 
      font-family: "generalSans-regular";
      text-align: center;
    }

    .mjesta-u-blizini {
      flex-direction: column;
      height: auto;
      width: 100vw;
      justify-content: center;
      align-items: center;
    }

    .stupac {
      flex-direction: column;
      height: auto;
      width: 90vw;
      justify-content: center;
      align-items: center;
    }

    .stupac table {
        width: 100%;
    }

    td {
        width: 100%;
    }

    th {
        width: 100%;
    }

    form input {
      width: 90vw;
    }
    .naslovna::before {
      background-image: url(slike/pocetna.jpg);
      background-size: cover;
      background-repeat: no-repeat;
    }
}

/*tablet*/
@media only screen and (max-width: 1230px) and (min-width: 850px) {
  .o_nama{
    width: 100vw;
    height: 100vh;
    background-position: center; 
    background-size: cover;
    background-repeat: no-repeat;
  }
  h1{
    font-size: 35pt;
    color: white;
    text-shadow: 2px 1px rgba(128, 128, 128, 0.84);
  }

  .nav_gumb{
    display: none;
  }

  .navigacija{
    justify-content: space-between ;
    width: 100%;
  }

  nav ul.menu {
      display: none;
  }

  .navbar {
    width: 100%;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
  }

  .navbar .menu-items {
    display: flex;
  }

  .navbar .nav-container li {
    list-style: none;
  }

  .navbar .nav-container a {
    text-decoration: none;
    color: #0e2431;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
  }

  .navbar .nav-container a:hover{
      font-weight: bolder;
  }

  .nav-container {
    display: block;
    position: relative;
    height: 60px;
    width: 60vw;
  }

  .nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    left: 5vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #a3b6cf;
  }

  .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%; 
    transition: transform 0.4s ease-in-out;
  }

  .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 120px;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, 0.852);
    height: 100vh;
    width: 100%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    text-align: center;
  }

  .navbar .menu-items li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 10px;
    right: 10vw;
    width: auto;
    height: 12vh;
  }

  .nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }

  .nav-container input[type="checkbox"]:checked ~ .logo{
    display: none;
  }

  .rezerviraj{
    display: block;
  }

  /*o nama*/
  .o_nama{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }

  .about_us{
    background-image: url(slike/o_nama.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 80vw;
    height: 60vh;
    margin-top: 1vh;
  }

  .about_us_tekst{
    height: auto;
    width: 80vw;
    margin-top:8vh;
    font-family: "generalSans-regular";
  }

  .about_us_tekst p{
    margin-top: 0;
    font-size: 12pt;
    padding-bottom: 2vh;
  }

  .galerija{
    margin-top: 5vh;
  }

  .usluge{
    width: 100vw;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .usluge_desno{
    width: 100vw;
    height: 50vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-size: 12pt;
  }

  .usluga_lijevo{
    width: 100vw;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .usluge p{ 
    width: 50vw; 
  }

  .cijene{
    width: 100vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2vh;
    padding-top: 2vh;
    padding-bottom: 2vh;
  }

  .cjenik{
    width: 60vw;
    height: 40vh;
    background-color: var(--siva);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;   
    border-radius: 30px;
  }

  .cjenik h3{
    font-size: 18pt;
  }

  .cjenik a{
    width: 35vw;
    font-size: 13pt;
    letter-spacing: 2pt;
    padding: 0 0px
  }

  .cjenik p {
    font-size: 10pt;
  }



  .lokacija_kontakt{
    width: 100vw;
    height: auto;
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }


  .kutijica{
    flex-wrap: wrap;
    gap: 3vh;
  }

  .kutijica h3 {
    margin-top: 0;
  }

  .kontakt{
    width: 90vw;
    height: auto;
    padding: 2vh 0;
    align-items: center;
    justify-content: center;
  }

  .karta iframe {
    width: 100%;
    height: 100%;
  }

  .kontakt a {
    text-decoration: none;
    color: white;
  }

  .mail{
    width: 90vw;
    height: auto;
    padding: 2vh 0;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .mail p{
    margin-left: 20px;
    color: white;
  }

  .karta{
    width: 90vw;
  }


  .kontaktText{
    width: 50vw;
    height: auto;
    margin-left: 20px;
    font-size: 12pt;
  }

  /*Kucni red*/
  .kucni_red{
    max-width: 100vw;
    width: 100vw;
    height: auto;
    font-family: "generalSans-regular";
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vh;
    flex-wrap: wrap;
    flex-direction: row;
    padding-bottom: 10vh;
    padding-top: 10vh;
  }

  .stavke{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
  }

  .stavke i{
    font-size: 18pt;
  }

  .stavke p{
    text-align: center;
    width: auto;
    height: auto;
    font-size: 14pt;
  }

  .stavke h3{
    font-size: 15pt;
  }

  /*footer*/
  footer{
    width: 100vw;
    height: auto;
    background-color: var(--siva);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  footer img{
    width: 12vh;
    height: auto;
  }

  .logo_footer{
    width: 30vw;
    height: 20vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;  
    
  }

  .social_media{
    width: 30vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vh;
    font-size: 20pt;
    color: white; 
    margin: 5vh;
  }

  .footer_text{
    width: 50vw;
    height: auto;
    font-size: 12pt;
    color: white; 
    font-family: "generalSans-regular";
    text-align: center;
  }

  .mjesta-u-blizini {
    flex-direction: column;
    height: auto;
    width: 100vw;
    justify-content: center;
    align-items: center;
    gap: 0;
    min-height: auto;
  }

  .stupac {
    flex-direction: column;
    height: auto;
    width: 50vw;
    justify-content: center;
    align-items: center;
    margin: 0;
    gap: 0;
  }

  .stupac table {
      width: 100%;
  }

  td {
      width: 100%;
  }

  th {
      width: 100%;
  }

  form input {
    width: 90vw;
  }
  .naslovna::before {
    background-image: url(slike/pocetna.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}