* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --eb-orange: #ff6600;
  --eb-orange-soft: #f29559;
  --eb-dark: #333333;
  --eb-white: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 0;
  margin: 0;
  padding: 0;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #ff6600;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f29559;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #333333;
  min-height: 100vh;
  width: 100%;
}
/*----Gumb koji vraća na vrh stranice----*/
.donji-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-direction: row;
  gap: 5px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  text-decoration: none;
  display: none;
}
.donji-nav-kartica {
  padding: 10px;
  border: 3px solid #ff6600;
  background-color: #333;
  border-radius: 10px;
}
.donji-nav-kartica img {
  width: 30px;
  height: 30px;
}
#vrh_stranice {
  background-color: white;
}
.vrh {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 15px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: transparent;
  border: 4px solid #ff6600;
  color: white;
  font-size: 1.2rem;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.vrh:hover {
  background-color: rgb(255, 255, 255, 0.8);
  color: #ff6600;
  transition: 0.3s;
  transform: translate(2px, 2px);
  box-shadow: 0 4px 15px black;
}
/*-------NAVBAR----------*/

/* Desktop navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 118px;
  padding: 0.7rem 1.4rem 0.9rem;
  background: var(--eb-white);
  border-bottom: 4px solid var(--eb-orange);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: min(100%, 480px);
  margin: 0;
  color: var(--eb-dark);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.logo-container .logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}

#mobilaIkona {
  display: none;
}

.navbar hr {
  width: min(100%, 760px);
  height: 2px;
  margin: 0;
  border: 0;
  background: linear-gradient(
    to right,
    rgba(255, 102, 0, 0),
    rgba(255, 102, 0, 0.85),
    rgba(255, 102, 0, 0)
  );
}

.linkovi-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  width: 100%;
}

.linkovi-container a {
  text-decoration: none;
  color: var(--eb-dark);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border: 2px solid transparent;
  border-radius: 10px;
  background-color: transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.linkovi-container a:hover,
.linkovi-container a:focus-visible {
  background-color: rgba(242, 149, 89, 0.2);
  border-color: var(--eb-orange);
  color: var(--eb-orange);
}

.hamburger-ikona {
  display: none;
}

.menu-mobile {
  display: none;
}

/*-----POČETNA-----*/
/*---kontenjer s slikom----*/
.dobrodosli-container {
  position: relative;
  min-height: 100vh;
  background: url(slike/naslovna.jpeg);
  background-position: center;
  background-size: cover;
}
/*----kontenjer gdje se nalazi sav sadržaj-----*/
.dobrodosli-main {
  background-color: #333333cc;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-left: 10%;
  min-height: 100vh;
  color: white;
  border-bottom: 4px solid #ff6600;
}
.dobrodosli-main h2 {
  font-size: 2rem;
  font-style: italic;
  color: #ff6600;
  padding-left: 25px;
}
.dobrodosli-main h1 {
  font-size: 3rem;
  font-style: bold;
}
.dobrodosli-main hr {
  height: 4px;
  background-color: #ff6600;
  border: 0;
  margin: 15px 0;
  width: 70%;
}
.dobrodosli-main article {
  width: 60%;
}
.dobrodosli-main p {
  font-size: 1.2rem;
  padding-left: 25px;
}
.dobr_button-cont {
  width: 70%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  padding: 25px 0;
}
.dobr_button-cont a {
  text-decoration: none;
  min-width: 200px;
  text-align: center;
  color: white;
  font-size: 1.2rem;
  font-style: bold;
  padding: 20px 20px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
#dobr-gumb1 {
  background-color: #ff6600;
  border: 3px solid #ff6600;
}
#dobr-gumb2 {
  border: 3px solid #ff6600;
  background-color: transparent;
}
#dobr-gumb1:hover,
#dobr-gumb2:hover {
  transform: translate(2px, 2px);
  box-shadow: 0px 3px 0px 0px rgb(242, 149, 89, 0.8);
}
/*-----------2. DIO-------*/
/*-------INFO-----------*/
.info-sadrzaj {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  background-color: #333333;
  border-bottom: 4px solid #ff6600;
  /* Add your background pattern here */
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.171) 2px,
    transparent 0
  );
  background-size: 30px 30px;
  background-position: -5px -5px;
}
.info-sadrzaj-slika {
  width: 50%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slika-wrapper {
  width: 80%;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
  border: 4px solid #ff6600;
}
.slika-wrapper img {
  width: 100%;
  height: 100%;
  scale: 1.5;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}
.slika-wrapper img:hover {
  transform: scale(1.5);
  cursor: pointer;
}
.info-SlikeSlide {
  display: none;
}
.info-sadrzaj-tekst {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #333333cc;
  border-left: 4px solid #ff6600;
  color: white;
}
.info-sadrzaj-tekst-header {
  min-height: 20vh;
  height: 20%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
}
.info-sadrzaj-tekst-header h1 {
  font-size: 3rem;
  padding-left: 25px;
  font-style: italic;
  margin: 0;
}
.info-sadrzaj-tekst-header hr {
  height: 4px;
  background-color: #ff6600;
  border: 0;
  width: 80%;
  margin: 10px 0;
}
.info-sadrzaj-tekst-art {
  border-top-left-radius: 10px;
  display: flex;
  align-items: center;
  min-height: 80vh;
  width: 100%;
  padding: 50px 25px;
  color: white;
  font-size: 1.2rem;
  box-sizing: border-box;
  flex-wrap: wrap;
  word-break: break-word;
  overflow-wrap: break-word;
}
.info-sadrzaj-gumb {
  margin: 20px 0;
  background-color: transparent;
  border: 4px solid #ff6600;
  text-decoration: none;
  min-width: 200px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.2rem;
  font-style: bold;
  padding: 20px 20px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.info-sadrzaj-gumb:hover {
  transform: translate(2px, 2px);
  font-weight: bold;
  box-shadow: 0px 3px 0px 0px #f29559;
}
/*-------3. DIO---------*/
/*-------USLUGE---------*/
.usluge-container {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url(slike/usluge_s1.jpeg);
  background-position: center;
  background-size: cover;
  border-bottom: 4px solid #ff6600;
}
.usluge-main {
  background-color: #333333cc;
  width: 100%;
  min-height: 100vh;
  color: white;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
}
.usluge-naslov {
  width: 100%;
  height: 100%;
  padding: 25px 0;
}
.usluge-naslov h1 {
  font-size: 3rem;
  text-align: center;
  color: #ff6600;
}
.usluge-naslov hr {
  width: 60%;
  margin: 10px auto;
  height: 4px;
  background-color: #ff6600;
  border: 0;
}
.usluge-wrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 50px;
  height: 100%;
}
.usluge-main-kartica {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  min-width: 30%;
  min-height: 200px;
  height: auto;
  background-color: #333333;
  border-radius: 10px;
  border-bottom: 4px solid #ff6600;
  box-shadow: 0 4px 15px black;
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.kartica-slika {
  width: 100%;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  margin: 10px 0;
}
.kartica-slika img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.usluge-main-kartica h3 {
  font-size: 1.5rem;
  text-decoration: underline;
  color: #ff6600;
  padding: 15px 0;
}
.usluge-main-kartica-p {
  width: 100%;
  padding: 25px 50px;
  font-size: 1.2rem;
  color: #333333;
}
.usluge-main-kartica:hover {
  transform: translate(5px, 5px);
}
/*---4. DIO-------*/
/*---GALERIJA------*/
.galerija-container {
  position: relative;
  min-height: 100vh;
  border-bottom: 4px solid #ff6600;
  width: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.171) 2px,
    transparent 0
  );
  background-size: 30px 30px;
  background-position: -5px -5px;
}
.galerija-naslov {
  width: 100%;
  height: 100%;
  padding: 25px 0;
}
.galerija-naslov h1 {
  font-size: 3rem;
  text-align: center;
  color: #ff6600;
}
.galerija-naslov hr {
  width: 60%;
  margin: 10px auto;
  height: 4px;
  background-color: #ff6600;
  border: 0;
}
.galerija-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
}
.galerija-main {
  position: relative;
  width: 90%;
  margin: 50px auto 25px auto;
  height: 100%;
  border-radius: 10px;
  background-color: #f29559;
  border: 4px solid #ff6600;
  box-shadow: 4px 4px 15px #000000;
}
.galerija-dot.aktivna {
  background-color: #ff6600;
  border-radius: 10px;
  width: 30px;
}
.galerija-slides {
  height: 80vh;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.galerija-slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.galerija-gumb {
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ff6600;
  color: white;
  font-size: 20px;
  border: 0px;
}
.galerija-gumb:hover {
  background-color: white;
  color: #ff6600;
  transition: 0.3s;
}
.lijevi {
  left: 30px;
}
.desni {
  right: 30px;
}
.galerija-tocke-container {
  width: 100%;
  padding: 50px 0;
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 20px;
}
.galerija-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #ff6600;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
/*---5. DIO-------*/
/*---PROJEKTI-----*/
/*----------------*/
.projekti-container {
  position: relative;
  min-height: 100vh;
  width: 100%;
  border-bottom: 4px solid #ff6600;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.171) 2px,
    transparent 0
  );
  background-size: 30px 30px;
  background-position: -5px -5px;
}
.projekti-naslov {
  width: 100%;
  height: 100%;
  padding: 25px 0;
}
.projekti-naslov h1 {
  font-size: 3rem;
  text-align: center;
  color: #ff6600;
}
.projekti-naslov hr {
  width: 60%;
  margin: 10px auto;
  height: 4px;
  background-color: #ff6600;
  border: 0;
}
.projekti-main {
  width: 100%;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 50px;
  height: 100%;
  border-radius: 10px;
  overflow: auto;
  cursor: pointer;
}
.projekti-main::-webkit-scrollbar {
  height: 8px;
}
.projekti-main::-webkit-scrollbar-track {
  background: #808080;
  border-radius: 10px;
}
.projekti-main::-webkit-scrollbar-thumb {
  background: #ff6600;
  border-radius: 10px;
}
.projekti-main::-webkit-scrollbar-thumb:hover {
  background: #f29559;
}
.projekti-main:active {
  cursor: grabbing;
}
.projekti-wrapper {
  width: 100%;
  margin-bottom: 50px;
  padding-left: 25px;
  display: flex;
  gap: 50px;
  flex-direction: row;
}
.projekti-kartica {
  min-width: 40%;
  min-height: 100px;
  height: auto;
  border-radius: 10px;
  border-bottom: 4px solid #ff6600;
  background-color: #283845;
  text-align: center;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  transition: all 0.3s ease-in-out;
}
.projekti-slika {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.projekti-slika img {
  width: 100%;
  height: 100%;
  user-select: none;
  object-fit: cover;
  object-position: center;
}
.projekti-naziv {
  min-height: 120px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  color: #ff6600;
}
.projekti-lokacija {
  width: 100%;
  font-size: 1.1rem;
  padding: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}
.projekti-lokacija img {
  width: 50px;
  height: 50px;
}

.kontakt-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  background-color: #333333;
  padding: 100px 0;
  border-bottom: 4px solid #ff6600;
}

.kontakt-naslov {
  width: 100%;
  height: auto;
  padding: 50px 0;
  text-align: center;
  color: #ff6600;
  font-size: 2rem;
}

.kontakt-kartica-link-slika {
  text-decoration: none;
  border: 0;
  padding: 0;
  margin: 0;
}

.kontakt-naslov-crta {
  width: 60%;
  height: 4px;
  background-color: #ff6600;
  border: 0;
  margin: 15px auto 15px auto;
}

.kontakt-main {
  display: flex;
  flex-direction: row;
  width: 90%;
  height: 100%;
  margin: 50px auto;
}

.kontakt-kartica {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 30%;
  min-height: 200px;
  height: auto;
  background-color: #f29559;
  border-radius: 10px;
  border: 4px solid #ff6600;
  box-shadow: 0 4px 15px black;
  text-align: center;
}

.kontakt-kartica img {
  width: 100px;
  height: 100px;
  margin: 20px 0;
}

.kontakt-kartica h1 {
  font-weight: bold;
  font-size: 1.5rem;
}

.kontakt-kartica-link-tekst {
  text-decoration: none;
  padding: 25px 50px;
  font-size: 1.2rem;
  color: #333333;
}

.kontakt-kartica-link-tekst:hover {
  text-decoration: underline;
  transition: 0.3s;
}

.kontakt-main-kartica:hover {
  box-shadow: 0 4px 15px #f29559;
  transition: 0.3s;
}
/*-----------------------------*/
/*-----------Forma-------------*/
/*-----------------------------*/
.forma-container {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url(slike/kontakt.jpeg);
  background-position: center;
  background-size: cover;
  border-bottom: 4px solid #ff6600;
}
.forma-main {
  background-color: #333333cc;
  width: 100%;
  min-height: 100vh;
  color: white;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
}
.forma-naslov {
  width: 100%;
  height: 100%;
  padding: 25px 0;
}
.forma-naslov h1 {
  font-size: 3rem;
  text-align: center;
  color: #ff6600;
}
.forma-naslov hr {
  width: 60%;
  margin: 10px auto;
  height: 4px;
  background-color: #ff6600;
  border: 0;
}
/*-----dodatni kontenjer za kontrolu----*/
.forma-wrapper {
  width: 80%;
  height: 100%;
  margin: 0 auto;
}
.forma-prvi {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: center;
  margin: 25px 0;
}
.forma-drugi {
  width: 100%;
  margin-bottom: 25px;
  flex-direction: row;
}
#unos,
#upit {
  background-color: #333;
  border-radius: 10px;
  padding: 15px 10px;
  border-bottom: 4px solid #ff6600;
  outline: none;
  color: #f29559;
  font-size: 1.2rem;
}
#unos {
  width: 50%;
}
#upit {
  width: 100%;
  min-height: 200px;
  margin-bottom: 25px;
  resize: none;
}
.forma-gumb {
  outline: none;
  background-color: #333;
  width: 100%;
  border-radius: 10px;
  padding: 20px 15px;
  border-bottom: 4px solid #ff6600;
  color: #ff6600;
  font-size: 1.5rem;
  display: inline-block;
  text-align: center;
  border-left: none;
  border-right: none;
  border-top: none;
  text-shadow: 0 0 0px rgba(255, 102, 0, 0);
  transition: all 0.3s ease-in-out;
}
.forma-gumb:hover {
  cursor: pointer;
  background-color: #283845;
  color: #ff6600;
  text-shadow:
    0.5px 0 0 #ff6600,
    -0.5px 0 0 #ff6600;
}
/*-----------------------------*/
/*-----------REVIEW-----------*/
/*---------------------------*/
.review-container {
  position: relative;
  width: 100%;
  min-height: 50vh;
  height: auto;
  background-color: #333333;
  padding-top: 15px;
  padding-bottom: 100px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.171) 2px,
    transparent 0
  );
  background-size: 30px 30px;
  background-position: -5px -5px;
  border-bottom: 4px solid #ff6600;
}
/*----Glavni kontenjer preko kojeg je 
omogucen horizontalni scroll-----------*/
.review-main {
  width: 100%;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 50px;
  height: 100%;
  border-radius: 10px;
  overflow: auto;
  cursor: pointer;
}
.review-main::-webkit-scrollbar {
  height: 8px;
}
.review-main::-webkit-scrollbar-track {
  background: #808080;
  border-radius: 10px;
}
.review-main::-webkit-scrollbar-thumb {
  background: #ff6600;
  border-radius: 10px;
}
.review-main::-webkit-scrollbar-thumb:hover {
  background: #f29559;
}
.review-main:active {
  cursor: grabbing;
}
/*----Wrapper koji koristimo kako bi kartice
postavljene u jednomr redu-----------*/
.review-wrapper {
  width: 100%;
  margin-bottom: 50px;
  padding-left: 25px;
  display: flex;
  gap: 50px;
  flex-direction: row;
}
.review-kartica {
  min-width: 40%;
  min-height: 100px;
  height: auto;
  border-radius: 10px;
  border-bottom: 4px solid #ff6600;
  background-color: #283845;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  transition: all 0.3s ease-in-out;
}
.review-logo {
  width: 100%;
  height: auto;
  padding: 15px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
.review-logo img {
  width: 100px;
  height: 100px;
  border: 4px solid #ff6600;
  border-radius: 50%;
  background-color: #333;
  margin-right: 15px;
}
.review-komentar {
  width: 100%;
  padding: 25px;
  font-size: 1.2rem;
  color: white;
  font-style: italic;
}
.review-ocjena {
  width: 100%;
  height: auto;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
}
.review-ocjena img {
  width: 30px;
  height: 30px;
}
.review-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}
.review-link a {
  width: 90%;
  background-color: transparent;
  border: 4px solid #ff6600;
  text-decoration: none;
  text-align: center;
  color: white;
  font-size: 1.2rem;
  font-style: bold;
  padding: 20px 20px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.review-link a:hover {
  transform: translate(2px, 2px);
  box-shadow: 0px 3px 0px 0px #f29559;
}
/*-----------------------------*/
/*-----------FOOTER-------------*/
/*-----------------------------*/
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 100px 0;
  width: 100%;
  height: 100%;
  /* Add your background pattern here */
  background-color: #313131;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.171) 2px,
    transparent 0
  );
  background-size: 30px 30px;
  background-position: -5px -5px;
}
.footer-main {
  width: 80%;
  margin: 0 auto;
  height: 100%;
}
.footer-naslov {
  width: 100%;
  height: auto;
  padding: 25px 0;
  text-align: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}
.footer-naslov hr {
  width: 60%;
  height: 4px;
  background-color: #ff6600;
  border: 0;
  margin: 15px auto 15px auto;
}
.footer-linkovi,
.footer-drustvene {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}
.footer-linkovi a,
.footer-drustvene a {
  text-decoration: none;
  text-transform: uppercase;
  color: #808080;
  font-size: 1.2rem;
  font-style: bold;
  background-color: transparent;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.footer-linkovi a:hover {
  color: #ff6600;
}
.footer-drustvene a {
  padding: 10px;
  border-radius: 15px;
  border: 2px solid #ff6600;
  transition: all 0.3s ease-in-out;
}
.footer-drustvene img {
  width: 30px;
  height: 30px;
}
.footer-drustvene a:hover {
  background-color: #283845;
  color: white;
  transition: 0.3s;
}
.footer-copyright {
  text-align: center;
  width: 100%;
  height: 100%;
  color: #808080;
  font-size: 1.2rem;
}
.footer-copyright a {
  text-decoration: none;
  color: #ff6600;
  transition: all 0.3s ease-in-out;
}
.footer-copyright span {
  color: #ff6600;
}
.footer-copyright a:hover {
  text-decoration: underline;
}
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-----------Ponavljajuci elementi*----------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*--------DIV gdje se nalazi naslov----------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
.projekti-naslov,
.usluge-naslov,
.galerija-naslov,
.projekti-naslov,
.kontakt-naslov,
.review-naslov {
  width: 100%;
  height: auto;
  padding: 50px 0;
  text-align: center;
}
/*-------------------------------------------*/
/*-------------------------------------------*/
/*--------------Crta ispod naslova-----------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
.projekti-naslov hr,
.review-naslov hr,
.usluge-naslov hr,
.galerija-naslov hr,
.kontakt-naslov hr {
  width: 60%;
  height: 4px;
  background-color: #ff6600;
  border: 0;
  margin: 10px auto;
}
/*-------------------------------------------*/
/*-------------------------------------------*/
/*--------------Naslovi sekcija-----------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
.usluge-naslov h1,
.galerija-naslov h1,
.projekti-naslov h1,
.kontakt-naslov h1,
.review-naslov h1 {
  font-size: 3rem;
  color: #ff6600;
  font-weight: bold;
}
/*-------------------------------------------*/
/*----------------MODAL SLIKE---------------*/
/*-----------------------------------------*/
.galerija-slides img {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.galerija-slides img:hover {
  opacity: 0.8;
  transform: scale(1.01);
}

.galerija-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.9);
}

.galerija-modal.aktivan {
  display: flex;
}

.galerija-modal-sadrzaj {
  display: block;
  width: auto;
  max-width: min(92vw, 1200px);
  max-height: 85vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.35s;
  animation-name: zoom;
  animation-duration: 0.35s;
}

.galerija-modal-zatvori {
  position: absolute;
  top: 20px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.galerija-modal-zatvori:hover {
  background-color: rgba(255, 102, 0, 0.9);
  transform: scale(1.05);
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/*----------------------------------------*/
/*---------------------------------------*/

@keyframes pomakDesno {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/*Max sirina: 820px*/
@media (max-width: 820px) {
  .galerija-modal {
    z-index: 2000;
    padding: 32px 24px;
  }
  .galerija-modal-sadrzaj {
    max-width: 94vw;
    max-height: 80vh;
  }
  .galerija-modal-zatvori {
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  /*-----POČETNA-----*/
  /*----kontenjer gdje se nalazi sav sadržaj-----*/
  .dobrodosli-main {
    padding-left: 5%;
    border-bottom: 0;
  }
  .dobrodosli-main h2 {
    font-size: 1.5rem;
    padding-left: 15px;
  }
  .dobrodosli-main h1 {
    font-size: 2rem;
    font-style: bold;
  }
  .dobrodosli-main hr {
    height: 3px;
    background-color: #ff6600;
    border: 0;
    margin: 15px 0;
    width: 80%;
  }
  .dobrodosli-main article {
    width: 80%;
  }
  .dobrodosli-main p {
    padding-left: 15px;
  }
  .dobr_button-cont {
    width: 80%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: start;
    flex-direction: column;
    padding: 20px 0;
  }
  .dobr_button-cont a {
    width: 80%;
  }
  .info-container {
    border: 0;
  }
  .info-sadrzaj {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 0;
  }
  .info-sadrzaj-slika {
    width: 90%;
    min-height: 100px;
    padding: 25px 0;
  }
  .slika-wrapper {
    width: 100%;
    height: 400px;
  }
  .info-sadrzaj-tekst {
    width: 90%;
    border: 4px solid #ff6600;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
  }
  .info-sadrzaj-tekst-header {
    min-height: 50px;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
  }
  .info-sadrzaj-tekst-header h1 {
    font-size: 2.5rem;
    padding: 5px 15px;
  }
  .info-sadrzaj-tekst-header hr {
    height: 3px;
    width: 80%;
    margin: 15px 0;
  }
  .info-sadrzaj-tekst-art {
    align-items: start;
    min-height: 100px;
    background-color: #333333;
    width: 100%;
    padding: 25px 15px;
    color: white;
    font-size: 1.2rem;
  }
  .info-sadrzaj-gumb {
    margin: 15px 0;
    background-color: #333333;
    border: 4px solid #ff6600;
    min-width: 200px;
    padding: 15px 15px;
  }
  /*-------3. DIO---------*/
  /*-------USLUGE---------*/
  .usluge-container {
    position: relative;
    min-height: 100vh;
    background: url(slike/usluge_s1.jpeg);
    background-position: center;
    background-size: cover;
    border: 0;
  }
  .usluge-main {
    background-color: #333333cc;
    width: 100%;
    min-height: 100vh;
    color: white;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
  }
  .usluge-naslov {
    padding: 20px 0;
  }
  .usluge-naslov h1 {
    font-size: 2.5rem;
  }
  .usluge-naslov hr {
    width: 80%;
    height: 3px;
  }
  .usluge-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 20px 50px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
  .usluge-wrapper::-webkit-scrollbar {
    height: 8px;
  }
  .usluge-wrapper::-webkit-scrollbar-track {
    background: #808080;
    border-radius: 10px;
  }
  .usluge-wrapper::-webkit-scrollbar-thumb {
    background: #ff6600;
    border-radius: 10px;
  }
  .usluge-wrapper::-webkit-scrollbar-thumb:hover {
    background: #f29559;
  }
  .usluge-main-kartica {
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    min-width: 80%;
    min-height: 400px;
    margin-right: 0px;
    padding: 20px;
    border-radius: 20px;
    transition: 0.4s;
    scroll-snap-align: center;
  }
  .kartica-slika {
    margin: 10px auto;
    height: 200px;
  }
  .usluge-main-kartica h3 {
    padding: 10px 0;
    font-size: 1.3rem;
  }
  .usluge-main-kartica-p {
    padding: 20px 25px;
    font-size: 1.2rem;
  }
  /*-----------------------------------*/
  /*---------4. DIO--------------------*/
  /*--------GALERIJA-------------------*/
  .galerija-container {
    border: 0;
  }
  .galerija-naslov {
    padding: 20px 0;
  }
  .galerija-naslov h1 {
    font-size: 2.5rem;
  }
  .galerija-naslov hr {
    width: 80%;
    height: 3px;
  }
  .galerija-main {
    margin: 25px auto;
    border: 3px solid #ff6600;
  }
  .galerija-gumb {
    padding: 10px 25px;
  }
  .lijevi {
    left: 15px;
  }
  .desni {
    right: 15px;
  }
  .galerija-tocke-container {
    padding: 25px 0;
    gap: 15px;
  }
  .galerija-dot.aktivna {
    background-color: #ff6600;
    border-radius: 10px;
    width: 25px;
  }
  /*---5. DIO-------*/
  /*---PROJEKTI-----*/
  /*----------------*/
  .projekti-container {
    border-top: 0;
    min-height: 200px;
    border-bottom: 0;
  }
  .projekti-naslov {
    padding: 15px 0;
  }
  .projekti-naslov h1 {
    font-size: 2rem;
  }
  .projekti-naslov hr {
    width: 50%;
    height: 3px;
  }
  .projekti-main {
    width: 100%;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
    height: 100%;
    border-radius: 10px;
    overflow: auto;
    cursor: pointer;
  }
  .projekti-main::-webkit-scrollbar {
    display: none;
  }
  .projekti-wrapper {
    width: 100%;
    margin-bottom: 50px;
    padding-left: 25px;
    display: flex;
    gap: 50px;
    flex-direction: row;
  }
  .projekti-kartica {
    min-width: 60%;
    border-bottom: 3px solid #ff6600;
  }
  .projekti-slika {
    height: 250px;
  }
  .projekti-naziv {
    min-height: 100px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .projekti-lokacija {
    font-size: 1rem;
    padding: 15px;
  }
  .projekti-lokacija img {
    width: 40px;
    height: 40px;
  }
  .kontakt-container {
    min-height: 200px;
    height: auto;
    padding: 50px 0;
  }
  .kontakt-naslov {
    padding: 25px 0;
    color: #ff6600;
    font-size: 1.5rem;
  }
  .kontakt-naslov-crta {
    margin: 15px 0;
  }
  .kontakt-main {
    width: 90%;
    margin: 25px auto;
    gap: 15px;
  }
  .kontakt-kartica img {
    width: 70px;
    height: 70px;
    margin: 15px 0;
  }
  .kontakt-kartica h1 {
    font-size: 1.4rem;
  }
  .kontakt-kartica a {
    padding: 15px 25px;
    font-size: 1.2rem;
    color: #333333;
  }
  /*-----------------------------*/
  /*-----------Forma-------------*/
  /*-----------------------------*/
  /*-----Kontenjer gdje se nalazi NASLOV + linija ispod naslova*/
  /*-----------------------------*/
  /*-----------Forma-------------*/
  /*-----------------------------*/
  .forma-container {
    border-bottom: 3px solid #ff6600;
  }
  .forma-main {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
  }
  .forma-naslov {
    padding: 20px 0;
  }
  .forma-naslov h1 {
    font-size: 2.5rem;
  }
  .forma-naslov hr {
    width: 80%;
    height: 3px;
  }
  .forma-wrapper {
    width: 90%;
  }
  .forma-prvi {
    gap: 25px;
  }
  .forma-drugi {
    width: 100%;
    margin-bottom: 25px;
    flex-direction: row;
  }
  #unos,
  #upit {
    font-size: 1rem;
  }
  #unos {
    width: 50%;
  }
  #upit {
    width: 100%;
    min-height: 150px;
    margin-bottom: 25px;
  }
  .forma-gumb {
    font-size: 1.2rem;
  }
  /*-------------------------------------------*/
  /*-------------REVIEW-------------*/
  /*-------------------------------------------*/
  .review-container {
    padding-top: 15px;
    padding-bottom: 50px;
    border-bottom: 0;
  }
  .review-main {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .review-wrapper {
    margin-bottom: 25px;
    padding-left: 20px;
    gap: 25px;
  }
  .review-kartica {
    min-width: 60%;
  }
  .review-logo {
    font-size: 1rem;
  }
  .review-logo img {
    width: 80px;
    height: 80px;
    border: 2px solid #ff6600;
  }
  .review-komentar {
    padding: 20px;
    font-size: 1rem;
  }
  .review-ocjena {
    width: 100%;
    padding: 15px 10px;
    gap: 10px;
  }
  .review-ocjena img {
    width: 20px;
    height: 20px;
  }
  .review-link {
    width: 100%;
    padding: 20px;
  }
  .review-link a {
    width: 80%;
    border: 2px solid #ff6600;
    font-size: 1rem;
    font-style: bold;
    padding: 15px 15px;
    border-radius: 10px;
  }
  /*-------------------------------------------*/
  /*-------------Podnozje stranice-------------*/
  /*-------------------------------------------*/
  footer {
    padding: 50px 0;
  }
  .footer-main {
    width: 90%;
  }
  .footer-naslov {
    width: 100%;
    padding: 25px 0;
    font-size: 1.2rem;
  }
  .footer-naslov hr {
    width: 80%;
    height: 2px;
  }
  .footer-linkovi,
  .footer-drustvene {
    width: 100%;
    height: 100%;
    gap: 25px;
  }
  .footer-linkovi a,
  .footer-drustvene a {
    font-size: 1rem;
  }
  .footer-copyright {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1rem;
  }
  .footer-copyright a {
    text-decoration: none;
    color: #ff6600;
    transition: all 0.3s ease-in-out;
  }
  .footer-copyright span {
    color: #ff6600;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .dobrodosli-main button {
    width: 90%;
  }
  /*-------------------------------------------*/
  /*-------------------------------------------*/
  /*---------Ponavljajuci elementi-------------*/
  /*-------------------------------------------*/
  /*-------------------------------------------*/
  .projekt-naslov,
  .usluge-naslov,
  .galerija-naslov,
  .projekti-naslov,
  .kontakt-naslov {
    padding: 25px 0;
  }
  .usluge-naslov h1,
  .galerija-naslov h1,
  .projekti-naslov h1,
  .kontakt-naslov h1,
  .review-naslov h1 {
    font-size: 2.5rem;
    color: white;
  }
  .usluge-naslov hr,
  .review-naslov hr,
  .galerija-naslov hr,
  .projekti-naslov hr,
  .kontakt-naslov hr {
    width: 80%;
    height: 3px;
  }
  /*-------------------------------------------*/
  /*-------------------------------------------*/
}
/* Mobile navbar + overlay */
@media (max-width: 764px) {
  .navbar {
    position: fixed;
    left: 0;
    top: 0;
    min-height: 74px;
    padding: 0.6rem 1rem;
    gap: 0.75rem;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }

  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }
  #mobileIkona {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  .navbar hr,
  .linkovi-container {
    display: none;
  }
  .hamburger-ikona {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 2px solid var(--eb-orange);
    color: var(--eb-orange);
    text-decoration: none;
    font-size: 1.35rem;
    background: rgba(255, 102, 0, 0.08);
    transition: background-color 0.2s ease;
  }
  .menu-mobile .zatvori {
    text-decoration: none;
    position: absolute;
    top: 20px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition:
      background-color 0.3s ease,
      transform 0.3s ease;
  }
  .hamburger-ikona:hover,
  .hamburger-ikona:focus-visible {
    background: rgba(255, 102, 0, 0.18);
  }
  .menu-mobile {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(51, 51, 51, 0.97);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .menu-mobile.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-mobile .linkovi {
    width: min(88vw, 360px);
    padding: 0.85rem 1rem;
    border: 2px solid rgba(255, 102, 0, 0.7);
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--eb-white);
    background: rgba(255, 102, 0, 0.12);
    transition:
      background-color 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .menu-mobile a:hover,
  .menu-mobile a:focus-visible {
    background: rgba(242, 149, 89, 0.32);
    border-color: var(--eb-orange);
    color: var(--eb-orange-soft);
  }

  .menu-mobile .copy {
    margin-top: 0.6rem;
    width: min(88vw, 420px);
    padding: 0.8rem 1rem;
    border-top: 1px solid rgba(242, 149, 89, 0.5);
    text-align: center;
  }

  .menu-mobile .copy p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.86);
  }

  body {
    padding-top: 74px;
  }
}

@media (max-width: 500px) {
  .vrh {
    display: none;
    clear: both;
  }
  .donji-nav {
    display: flex;
    z-index: 999;
  }
  /*1. navbar*/
  .logo-container img {
    width: 80%;
    height: auto;
  }
  .linkovi-container a {
    font-size: 1rem;
  }
  .navbar hr {
    display: none;
  }
  /*-------------------------------------------*/
  /*2. Dobrodosli dio*/
  /*----kontenjer gdje se nalazi sav sadržaj-----*/
  .dobrodosli-main {
    padding-left: 0;
    border-bottom: 0;
  }
  .dobrodosli-main h2 {
    text-align: center;
    font-size: 1.2rem;
    padding: 0;
  }
  .dobrodosli-main h1 {
    text-align: center;
    font-size: 2rem;
  }
  .dobrodosli-main hr {
    height: 3px;
    background-color: #ff6600;
    border: 0;
    margin: 10px 0;
    width: 50%;
  }
  .dobrodosli-main article {
    width: 90%;
    margin: 0 auto;
  }
  .dobrodosli-main p {
    font-size: 1rem;
    padding-left: 0;
    text-align: center;
  }
  .dobr_button-cont {
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    padding: 25px 0;
  }
  .dobr_button-cont a {
    width: 100%;
    min-width: 10px;
    font-size: 1rem;
    padding: 15px 15px;
  }
  /*--------2. DIO-------*/
  /*-------INFO----------*/
  .info-sadrzaj {
    min-height: 100px;
    border-bottom: 0;
    padding-left: 0;
    align-items: center;
    justify-content: center;
  }
  .info-sadrzaj-slika {
    display: none;
    clear: both;
  }
  .info-sadrzaj-tekst {
    width: 100%;
    margin: 0;
    align-items: center;
    justify-content: center;
    border: 0;
  }
  .info-sadrzaj-tekst-header {
    padding: 25px 0;
  }
  .info-sadrzaj-tekst-header h1 {
    text-align: center;
    font-size: 2rem;
    padding-left: 0;
  }
  .info-sadrzaj-tekst-header hr {
    height: 3px;
    width: 50%;
    margin: 10px 50%;
  }
  .info-sadrzaj-tekst-art {
    padding: 0 5%;
    text-align: center;
    font-size: 1rem;
  }
  .info-sadrzaj-gumb {
    width: 100%;
    min-width: 10px;
    font-size: 1rem;
    border: 3px solid #ff6600;
  }
  .info-sadrzaj-gumb:hover {
    transform: translate(2px, 2px);
    font-weight: bold;
    box-shadow: 0px 3px 0px 0px #000000;
  }
  /*-------------------------------------------*/
  /*3. dio ----- Usluge------------*/
  .usluge-naslov {
    padding: 15px 0;
  }
  .usluge-naslov h1 {
    font-size: 2rem;
    font-style: italic;
    color: white;
  }
  .usluge-naslov hr {
    width: 50%;
    height: 3px;
    margin: 10px 0;
  }
  .usluge-wrapper {
    width: 90%;
    margin: 10px auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-x: unset;
    overflow-y: unset;
    white-space: unset;
    scroll-snap-type: unset;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }
  .usluge-main-kartica {
    display: flex;
    flex-shrink: unset;
    width: 100%;
    min-width: unset;
    min-height: 100px;
    margin: 0;
    padding: 15px;
  }
  .kartica-slika {
    width: 100%;
    height: 150px;
    margin: 0 auto;
  }
  .usluge-main-kartica h3 {
    padding: 10px 0;
    font-size: 1.2rem;
  }
  .usluge-main-kartica-p {
    padding: 15x 15px;
    font-size: 1rem;
  }
  .usluge-main-kartica:hover {
    transform: translate(2px, 5px);
  }
  /*----------------------*/
  /*-------4. DIO---------*/
  /*------GALERIJA--------*/
  /*----------------------*/
  .galerija-container {
    min-height: 200px;
    height: auto;
    border-top: 0;
  }
  .galerija-naslov {
    padding: 15px 0;
  }
  .galerija-naslov h1 {
    font-size: 2rem;
    padding: 0 15px;
    font-style: italic;
    color: white;
  }
  .galerija-naslov hr {
    width: 50%;
    height: 3px;
    float: right;
  }
  .galerija-main {
    height: 500px;
    overflow: hidden;
    width: 90%;
    margin: 25px auto 25px auto;
    position: relative;
  }
  .galerija-gumb {
    top: auto;
    font-size: 30px;
    width: 50%;
    height: 50px;
    transform: none;
  }
  .lijevi {
    left: 25%;
    top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .desni {
    right: 25%;
    bottom: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .galerija-tocke-container {
    display: none;
    clear: both;
  }
  /*----------------------*/
  /*-------5. DIO---------*/
  /*------PROJEKTI--------*/
  /*----------------------*/
  .projekti-container {
    border: bottom 0;
  }
  .projekti-naslov h1 {
    font-size: 2rem;
    padding: 0 15px;
    font-style: italic;
    color: white;
  }
  .projekti-naslov hr {
    width: 50%;
    height: 3px;
    margin: 10px 0;
  }
  .projekti-wrapper {
    margin-bottom: 25px;
    padding-left: 15px;
    gap: 25px;
  }
  .projekti-kartica {
    min-width: 80%;
  }
  .projekti-naziv {
    min-height: 100px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .projekti-lokacija {
    min-height: 100px;
    font-size: 1rem;
    padding: 15px;
  }
  .projekti-lokacija img {
    width: 30px;
    height: 30px;
  }
  /*-----------------------------*/
  /*-----------Forma-------------*/
  /*-----------------------------*/
  /*-----Kontenjer gdje se nalazi NASLOV + linija ispod naslova*/
  .forma-container {
    border: 0;
    min-height: 100px;
  }
  .forma-main {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
  }
  .forma-naslov {
    padding: 0;
  }
  .forma-naslov h1 {
    padding: 15px;
    font-size: 2rem;
    font-style: italic;
    color: white;
  }
  .forma-naslov hr {
    width: 50%;
    float: right;
    height: 3px;
  }
  .forma-wrapper {
    width: 90%;
  }
  .forma-prvi {
    gap: 15px;
    flex-direction: column;
  }
  #unos {
    width: 100%;
  }
  .forma-drugi {
    margin-bottom: 15px;
  }
  .forma-gumb {
    font-size: 1rem;
  }
  /*-------------------------------------------*/
  /*-------------REVIEW-------------*/
  /*-------------------------------------------*/
  .review-main {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .review-naslov hr {
    width: 50%;
    float: right;
    height: 3px;
    margin: 10px 0;
  }
  .review-wrapper {
    margin-bottom: 20px;
    padding-left: 15px;
    gap: 20px;
  }
  .review-kartica {
    min-width: 80%;
  }
  .review-logo {
    flex-direction: column;
    gap: 15px;
  }
  .review-logo img {
    width: 80px;
    height: 80px;
    margin-right: 0;
    border: 2px solid #ff6600;
  }
  .review-komentar {
    padding: 15px;
    text-align: center;
  }
  .review-link {
    width: 100%;
    padding: 15px;
  }
  .review-link a {
    width: 90%;
    border: 2px solid #ff6600;
    font-size: 1rem;
    font-style: bold;
    padding: 15px 15px;
    border-radius: 10px;
  }
  /*-------------------------------------------*/
  /*---Modal za Lightbox - mobilna verzija---*/
  /*-------------------------------------------*/
  .galerija-modal {
    padding: 24px 16px;
  }
  .galerija-modal-sadrzaj {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 12px;
  }
  .galerija-modal-zatvori {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }
  .image-modal-nav {
    padding: 10px 15px;
    font-size: 20px;
    min-width: 40px;
    min-height: 40px;
  }
  .image-modal-content {
    max-width: 95%;
    max-height: 70vh;
  }
  .image-modal-close {
    top: 15px;
    right: 15px;
    font-size: 30px;
  }
  .image-modal-caption {
    font-size: 0.9rem;
  }
  .image-modal-counter {
    font-size: 0.9rem;
  }
  /*-------------------------------------------*/
  /*-------------Podnozje stranice-------------*/
  /*-------------------------------------------*/
  footer {
    padding-top: 25px;
    padding-bottom: 100px;
  }
  .footer-main {
    width: 100%;
  }
  .footer-naslov {
    padding: 15px 0;
    font-size: 1rem;
    font-style: italic;
    color: white;
  }
  .footer-naslov hr {
    width: 50%;
    height: 3px;
    margin: 10px 0;
  }
  .footer-linkovi,
  .footer-drustvene {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  .footer-drustvene {
    display: none;
    clear: both;
  }
  .footer-linkovi a,
  .footer-drustvene a {
    color: white;
    font-size: 1rem;
  }
  .footer-linkovi a:hover {
    color: #808080;
  }
  .footer-copyright {
    padding: 0 15px;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #808080;
    font-size: 1rem;
  }
  .footer-copyright a {
    text-decoration: none;
    color: #ff6600;
    transition: all 0.3s ease-in-out;
  }
  .footer-copyright span {
    color: #ff6600;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  /*-------------------------------------------*/
  /*-------------------------------------------*/
  /*-----------Ponavljajuci elementi-----------*/
  /*-------------------------------------------*/
  /*-------------------------------------------*/
  .projekt-naslov,
  .usluge-naslov,
  .galerija-naslov,
  .projekti-naslov,
  .kontakt-naslov {
    padding: 15px 0;
  }
  .usluge-naslov h1,
  .galerija-naslov h1,
  .projekti-naslov h1,
  .kontakt-naslov h1,
  .review-naslov h1 {
    font-size: 2rem;
    font-style: italic;
    color: white;
  }
  .info-container,
  .dobrodosli-container,
  .projekti-container,
  .usluge-container,
  .kontakt-container {
    border-bottom: 0;
    border-top: 0;
  }
}
