* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: #333;
}
.naslov hr {
  width: 100%;
  height: 3px;
  background-color: #333;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #346739;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.navbar .logo {
  font-size: 20px;
  font-weight: bold;
  color: #f2edc2;
}
/*----Ovdje se nalazi samo grafika Loga bez ikakvog teksta--- */
.navbar .ikona {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .menu {
  display: flex;
  gap: 20px;
}
.navbar .menu a {
  text-decoration: none;
  color: #f2edc2;
  font-size: 20px;
  font-weight: bold;
}
.navbar a:hover {
  text-decoration: underline;
}
.menu-mobile {
  display: none;
}
.hamburger-ikona {
  display: none;
}
/*-----------------*/
/* Dobrodošli sekcija */
/*-----------------*/
.dobrodosli {
  margin-top: 100px;
  min-height: 100vh;
  position: relative;
  width: 100%;
  background-image: url("slike/dobrodosli_s1.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid #f2edc2;
}
.dobrodosli .overlay {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #264329cc;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 50px;
}
.dobrodosli article {
  width: 60%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dobrodosli article h1 {
  font-size: 60px;
  color: #f2edc2;
  font-weight: bold;
  margin: 15px 0;
  text-align: center;
  animation:
    fadeInFromLeft 0.9s ease-out both,
    fadeOutScale linear;
  animation-timeline: auto, view();
  animation-range:
    normal,
    cover 80% exit 100%;
}
.dobrodosli article p {
  font-size: 25px;
  color: white;
  text-align: center;
  animation:
    fadeInFromRight 0.9s ease-out 0.2s both,
    fadeOutScale linear;
  animation-timeline: auto, view();
  animation-range:
    normal,
    cover 80% exit 100%;
}
.dobrodosli article hr {
  width: 100%;
  height: 20px;
  border: 0;
  border-radius: 20px;
  background-color: #f2edc2;
  border: 6px solid #264329;
  margin: 10px auto;
}
.dobrodosli a {
  display: inline-block;
  width: 90%;
  text-align: center;
  margin-top: 25px;
  padding: 20px 30px;
  font-size: 20px;
  color: #f2edc2;
  text-decoration: none;
  border-radius: 20px;
  background-color: #346739;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    font-size 0.3s ease;
  animation:
    fadeInFromLeft 0.9s ease-out 0.4s both,
    fadeOutScale linear;
  animation-timeline: auto, view();
  animation-range:
    normal,
    cover 80% exit 100%;
}
/*---------------------*/
/*----Info sekcija-----*/
/*---------------------*/
.info {
  position: relative;
  min-height: 100vh;
  width: 100%;
  height: auto;
  z-index: 0;
  border-bottom: 4px solid #f2edc2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: repeating-linear-gradient(
    135deg,
    #346739,
    #264329 20px,
    #346739 20px,
    #346739 40px
  );
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*--Prvi pravokutnik svjetlije boje */
.info .prva-boja {
  width: 100%;
  min-height: 50vh;
  background-color: #9fcb9880;
  border-bottom: 4px solid #f2edc2;
}
/*--Drugi pravokutnik tamnije boje */
.info .druga-boja {
  width: 100%;
  min-height: 50vh;
  background-color: #26432980;
}
.info-wrapper {
  position: absolute;
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  width: 90%;
  height: 80%;
  min-height: 400px;
  top: 10%;
  left: 5%;
  overflow: hidden;
  background-color: #9fcb98;
  background-image: repeating-linear-gradient(
    0deg,
    black,
    1px,
    #9fcb98 1px,
    #9fcb98
  );
  /*---Ova animacija se sastoji od dva djela: 
  1. dio koristi se za fade in efekt koji se pojavlja 
  2. dio koristi se za fade out i scale down efekat */
  background-size: 100% 30px;
  background-color: white;
  animation:
    fadeInScale linear,
    fadeOutScale linear;
  animation-timeline: view(), view();
  animation-range:
    entry 0% cover 20%,
    cover 80% exit 100%;
}
.info-wrapper .tools {
  height: 30px;
  background-color: #333;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  position: absolute;
  top: 0;
}
.info-wrapper .tekst {
  position: relative;
  top: 30px;
  width: 60%;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.info-wrapper .kartica {
  position: relative;
  width: 95%;
  margin: 0 auto;
  height: 95%;
  padding-top: 30px;
  border-radius: 20px;
  background-color: #264329cc;
  overflow: hidden;
}
.info-wrapper .kartica .tools {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
}
.info-wrapper .tekst h1 {
  font-weight: bold;
  font-size: 50px;
  color: white;
  padding: 25px 15px;
}
.info-wrapper .tekst p {
  font-size: 20px;
  color: white;
  padding: 25px 15px;
}
.info-wrapper .tekst hr {
  width: 60%;
  height: 6px;
  border: 0;
  border-radius: 20px;
  background-color: white;
  margin: 10px 15px;
}
.info-wrapper .slika {
  width: 40%;
  height: 100%;
  background-color: #264329;
}
.info-wrapper .slika img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*---------------------*/
/*---Usluge sekcija-- */
/*-------------------*/
.usluge-container {
  padding: 25px 0;
  width: 100%;
  border-bottom: 4px solid #f2edc2;
  background: repeating-linear-gradient(
    45deg,
    #346739,
    #264329 20px,
    #346739 20px,
    #346739 40px
  );
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
.usluge-container .naslov {
  margin: 0 auto;
  animation: fadeInScale linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
.usluge-container .naslov p {
  font-size: 25px;
  padding: 25px 0;
  font-style: italic;
  text-decoration: underline;
  color: #346739;
  text-align: center;
}
.usluge-main {
  width: 100%;
  position: relative;
  padding-bottom: 25px;
  height: 100%;
  overflow: auto;
  cursor: pointer;
}
.usluge-main::-webkit-scrollbar {
  height: 10px;
}
.usluge-main::-webkit-scrollbar-track {
  background: #f2edc2;
  border-radius: 10px;
}
.usluge-main::-webkit-scrollbar-thumb {
  background: #00ca4e;
  border-radius: 10px;
}
.usluge-main::-webkit-scrollbar-thumb:hover {
  background: #9fcb98;
}
.usluge-wrapper {
  width: 100%;
  padding-left: 5%;
  display: flex;
  gap: 50px;
  flex-direction: row;
}
.card {
  width: 40%;
  min-height: 400px;
  max-height: 450px;
  border-radius: 20px;
  z-index: 1;
  flex-shrink: 0;
  overflow: hidden;
  animation: fadeInScale linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
.card .sadrzaj {
  width: 100%;
  height: 100%;
  background-color: #264329cc;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #f2edc2;
  font-size: 25px;
  padding: 0 25px;
  border: 4px solid #f2edc2;
  border-radius: 20px;
}
/*---Pozadinska slika usluga---*/
#usluga1,
#usluga2,
#usluga3,
#usluga4,
#usluga5,
#usluga6,
#usluga7,
#usluga8 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#usluga1 {
  background-image: url(slike/usluga_s1.png);
}
#usluga2 {
  background-image: url(slike/usluga_s2.png);
}
#usluga3 {
  background-image: url(slike/usluga_s3.png);
}
#usluga4 {
  background-image: url(slike/usluga_s4.png);
}
#usluga5 {
  background-image: url(slike/usluga_s5.png);
}
#usluga6 {
  background-image: url(slike/usluga_s6.png);
}
#usluga7 {
  background-image: url(slike/usluga_s7.png);
}
#usluga8 {
  background-image: url(slike/usluga_s8.png);
}
/*-----------------*/
/* Kontakt sekcija */
/*-----------------*/
.kontakt {
  padding: 100px 0;
  min-height: 100vh;
  height: auto;
  position: relative;
  width: 100%;
  border-bottom: 4px solid #f2edc2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: repeating-linear-gradient(
    135deg,
    #346739,
    #264329 20px,
    #346739 20px,
    #346739 40px
  );
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*---Naslov sekcija koji se ponavlja---*/
.kontakt .naslov,
.partneri .naslov,
.usluge-container .naslov,
.dobrodosli .naslov {
  border-radius: 20px;
  width: 90%;
  overflow: hidden;
  --color: #9fcb98;
  background-color: white;
  background-image:
    linear-gradient(
      0deg,
      transparent 24%,
      var(--color) 25%,
      var(--color) 26%,
      transparent 27%,
      transparent 74%,
      var(--color) 75%,
      var(--color) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      var(--color) 25%,
      var(--color) 26%,
      transparent 27%,
      transparent 74%,
      var(--color) 75%,
      var(--color) 76%,
      transparent 77%,
      transparent
    );
  background-size: 55px 55px;
  text-align: center;
  margin-bottom: 25px;
  /*---DODAJEMO ANIMACIJU ZA SVAKI NASLOV */
  animation:
    fadeInScale linear,
    fadeOutScale linear;
  animation-timeline: view(), view();
  animation-range:
    entry 0% cover 20%,
    cover 80% exit 100%;
}
.kontakt .naslov h1,
.partneri .naslov h1,
.usluge-container .naslov h1,
.dobrodosli .naslov h1 {
  font-size: 50px;
  color: #346739;
  font-weight: bold;
}
/*-- */
.kontakt .naslov hr,
.partneri .naslov hr,
.usluge-container .naslov hr,
.dobrodosli .naslov hr {
  width: 50%;
  height: 20px;
  border: 0;
  border-radius: 20px;
  background-color: white;
  border: 6px solid #264329;
  margin: 10px auto;
}
.kontakt .kartica {
  width: 90%;
  min-height: 100px;
  background-color: #9fcb98;
  border-radius: 20px;
  overflow: hidden;
  background-image: repeating-linear-gradient(
    0deg,
    black,
    1px,
    #9fcb98 1px,
    #9fcb98
  );
  background-size: 100% 30px;
  background-color: white;
  animation:
    fadeInScale linear,
    fadeOutScale linear;
  animation-timeline: view(), view();
  animation-range:
    entry 0% cover 20%,
    cover 80% exit 100%;
}
.kontakt .sadrzaj {
  width: 100%;
  height: calc(100% - 30px);
  text-align: center;
  padding: 25px;
  display: flex;
  gap: 15px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.kontakt .drustvene {
  position: relative;
  width: calc(33% - 15px);
  min-height: 300px;
  display: flex;
  background-color: #264329cc;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}
.kontakt-logo {
  margin-top: 25px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  border: 4px solid white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: white;
  overflow: hidden;
}
#fb {
  background-image: url("slike/facebook_boja.svg");
  background-size: 125%;
}
#wapp {
  background-image: url("slike/whatsapp.svg");
}
#mail {
  background-image: url("slike/gmail.svg");
}
/*----GLAVNI DIZAJN SVAKOG GUMBA */
.kontakt .sadrzaj a,
.dobrodosli a {
  width: 80%;
  display: inline-block;
  margin: 20px auto;
  padding: 20px;
  line-height: 20px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  border-radius: 20px;
  transition: 0.5s ease-in-out;
  border: 4px solid white;
}
/*---Potrebnu kako bi se uskladila sirina s sadrzajem ---*/
.dobrodosli a {
  width: 90%;
}
/*---HOVER EFEKT KOD DUGMETA ---*/
.kontakt .sadrzaj a:hover,
.dobrodosli a:hover {
  background-color: #346739;
  color: #f2edc2;
  font-size: 20px;
  border: 4px solid #f2edc2;
}
/*-----------------*/
/* Partneri sekcija */
/*-----------------*/
.partneri {
  padding: 25px 0;
  width: 100%;
  border-bottom: 4px solid #f2edc2;
  background: repeating-linear-gradient(
    45deg,
    #346739,
    #264329 20px,
    #346739 20px,
    #346739 40px
  );
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.partneri .naslov {
  margin: 0 auto;
  margin-bottom: 25px;
}
.partneri-main {
  width: 90%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 50px;
  flex-direction: row;
}
.partneri article {
  width: 40%;
  padding: 30px 20px;
  background: linear-gradient(135deg, #9fcb98 0%, #82b584 100%);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(38, 67, 41, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(242, 237, 194, 0.3);
  position: relative;
  overflow: hidden;
}

.partneri article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f2edc2, #346739);
  border-radius: 24px 24px 0 0;
}

.partneri article:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(38, 67, 41, 0.25);
}

.partneri article h2 {
  font-size: 24px;
  color: #264329;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.partneri article a {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 12px 0;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #264329;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.partneri article a:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #346739;
  border-color: #f2edc2;
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(38, 67, 41, 0.15);
}

.partneri article img {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid rgba(242, 237, 194, 0.8);
  transition: all 0.3s ease;
}

.partneri article a:hover img {
  transform: scale(1.1);
  border-color: #f2edc2;
}
/*-----------------*/
/* Kontakt Forma */
/*-----------------*/
.kontakt-forma {
  width: 50%;
  height: 100%;
  padding: 40px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(38, 67, 41, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInScale linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kontakt-forma label {
  font-size: 16px;
  font-weight: 600;
  color: #264329;
  transition: color 0.3s ease;
}

.kontakt-forma input,
.kontakt-forma textarea {
  padding: 12px 16px;
  font-size: 14px;
  border: 2px solid #9fcb98;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: #333;
  transition: all 0.3s ease;
}

.kontakt-forma input::placeholder,
.kontakt-forma textarea::placeholder {
  color: #9fcb98;
  opacity: 0.7;
}

.kontakt-forma input:focus,
.kontakt-forma textarea:focus {
  outline: none;
  border-color: #346739;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(52, 103, 57, 0.1);
}

.kontakt-forma input:focus + label,
.form-group input:focus ~ label {
  color: #346739;
}

.form-submit {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: bold;
  color: #f2edc2;
  background-color: #346739;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-submit:hover {
  background-color: #264329;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52, 103, 57, 0.3);
}

.form-submit:active {
  transform: translateY(0);
}

.partneri-wrapper a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  border: 0;
}
/*-----------------*/
/* Footer sekcija */
/*---------------*/
footer {
  background-color: #264329;
  color: #f2edc2;
  padding: 60px 20px 0;
  border-top: 4px solid #f2edc2;
  font-family: "Poppins", sans-serif;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  position: relative;
  margin-bottom: 15px;
}

.footer-logo .tools {
  margin-bottom: 10px;
  padding: 5px;
}

.footer-logo h3 {
  font-size: 28px;
  font-weight: bold;
  color: #9fcb98;
  margin: 0;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #d4d4d4;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: bold;
  color: #f2edc2;
  margin-bottom: 15px;
  margin-top: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #d4d4d4;
  font-size: 14px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: #9fcb98;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 8px;
}

.contact-link {
  text-decoration: none;
  color: #d4d4d4;
  font-size: 14px;
  padding: 10px 15px;
  background-color: rgba(159, 203, 152, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-link:hover {
  background-color: #346739;
  color: #f2edc2;
}

.footer-bottom {
  border-top: 1px solid rgba(242, 237, 194, 0.2);
  padding: 25px 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 8px 0;
  font-size: 14px;
  color: #d4d4d4;
}

.footer-bottom a {
  text-decoration: none;
  color: #9fcb98;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #f2edc2;
}

/* Ovu klasu koristimo za bijelu pozadinu kruzica */
.bijela {
  top: 0;
  background-color: white;
  position: absolute;
  width: 100%;
}
/*---Kod za ukrasne kruzice---*/
.tools {
  height: 30px;
  background-color: #333;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
}
.circle {
  padding: 0 5px;
}
.box {
  display: inline-block;
  align-items: center;
  width: 10px;
  height: 10px;
  padding: 1px;
  border-radius: 50%;
}
.red {
  background-color: #ff605c;
}
.yellow {
  background-color: #ffbd44;
}
.green {
  background-color: #00ca4e;
}

/*---Animacija za glatko prikazivane elemenata skorlanjem---*/
@keyframes fadeInScale {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
@keyframes fadeOutScale {
  from {
    opacity: 1;
    scale: 1;
  }
  to {
    opacity: 0;
    scale: 0.5;
  }
}
/*---Animacija: h1 fade in s lijeve strane pri skrolanju---*/
@keyframes fadeInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInFromRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
h1.h1-scroll-anim {
  opacity: 0;
  transform: translateX(-60px);
}
h1.h1-scroll-anim.visible {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
/*-----------------*/
/* Responsive sekcija */
/*-----------------*/
/*----Tableti - 768px---------*/
@media (max-width: 768px) {
  /*------------------------------ */
  /*------dobrodošli sekcija----- */
  /*---------------------------- */
  .dobrodosli .overlay {
    gap: 15px;
    padding: 25px;
  }
  .dobrodosli article {
    width: 80%;
  }
  .dobrodosli article h1 {
    font-size: 45px;
    margin: 10px 0;
  }
  .dobrodosli article p {
    font-size: 20px;
  }
  .dobrodosli article hr {
    width: 90%;
    height: 15px;
    border: 4px solid #264329;
    margin: 10px auto;
  }
  .dobrodosli a {
    width: 90%;
    margin-top: 15px;
    padding: 15px 25px;
    font-size: 15px;
  }
  .kontakt {
    padding: 50px 0;
    min-height: 100vh;
  }
  /*---NASLOVI------ */
  .kontakt .naslov,
  .partneri .naslov,
  .usluge-container .naslov,
  .dobrodosli .naslov {
    width: 80%;
    margin-bottom: 20px;
  }
  /*---H1 TEKST KOD NASLOVA------ */
  .kontakt .naslov h1,
  .partneri .naslov h1,
  .usluge-container .naslov h1,
  .dobrodosli .naslov h1 {
    font-size: 40px;
    padding: 0 15px;
  }
  /*---HR LINIJA ISPOD NASLOVA------ */
  .kontakt .naslov hr,
  .partneri .naslov hr,
  .usluge-container .naslov hr,
  .dobrodosli .naslov hr {
    width: 80%;
    height: 15px;
    border: 4px solid #264329;
    margin: 10px auto;
  }
  .kontakt .kartica {
    width: 80%;
  }
  .kontakt .sadrzaj {
    width: 100%;
    padding: 20px;
    flex-direction: column;
  }
  .kontakt .drustvene {
    position: relative;
    width: 90%;
  }
  .kontakt-logo {
    margin-top: 20px;
    width: 100px;
    height: 100px;
  }

  .kontakt .sadrzaj a {
    width: 50%;
    margin: 15px auto;
    padding: 15px;
    line-height: 15px;
  }
  /*-------------------*/
  /*---INFO SEKCIJA--- */
  /*-------------------*/
  .info-wrapper {
    width: 80%;
    min-height: 80%;
    top: 10%;
    left: 10%;
  }
  .info-wrapper .tekst {
    height: calc(100% - 30px);
  }
  .info-wrapper .tekst h1 {
    font-size: 40px;
    padding: 20px 10px;
  }
  .info-wrapper .tekst p {
    font-size: 15px;
    padding: 20px 10px;
  }
  .info-wrapper .tekst hr {
    width: 80%;
    height: 4px;
    margin: 10px 15px;
  }
  /*-------------------*/
  /*---Usluge sekcija--- */
  /*-------------------*/
  .usluge-container .naslov p {
    font-size: 20px;
    padding: 20px 0;
  }
  .usluge-wrapper {
    width: 100%;
    padding-left: 10%;
    gap: 25px;
  }
  .card {
    width: 60%;
    min-height: 350px;
    max-height: 400px;
    border-radius: 20px;
  }
  .card .sadrzaj {
    color: #f2edc2;
    font-size: 20px;
    padding: 0 20px;
  }
  /*-----------------*/
  /* Footer sekcija */
  /*---------------*/
  .footer-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-logo h3 {
    font-size: 24px;
  }

  .footer-col p {
    font-size: 14px;
  }

  .footer-col h4 {
    font-size: 16px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }

  .footer-contact {
    gap: 8px;
  }

  .contact-link {
    font-size: 12px;
    padding: 8px 12px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}
/*----Tableti - 700px---------*/
@media (max-width: 700px) {
  .navbar .menu {
    display: none;
  }
  .hamburger-ikona {
    display: block;
    font-size: 30px;
    color: #f2edc2;
    cursor: pointer;
  }
  .menu-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    position: absolute;
    height: calc(100vh - 100px);
    gap: 15px;
    top: 100px;
    right: 0;
    width: 100%;
    background-color: #9fcb98;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0.28s ease;
  }
  .menu-mobile.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .menu-mobile a {
    text-decoration: none;
    width: 100%;
    border-bottom: 2px solid #f2edc2;
    margin: 0 auto;
    color: #346739;
    font-size: 20px;
    padding: 10px 15px;
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
  }
  .menu-mobile .copy {
    position: absolute;
    bottom: 0;
    width: 100%;
    min-height: 50px;
    padding: 25px 15px;
    text-align: center;
    background-color: #333;
    font-size: 15px;
    color: #f2edc2;
  }
  /*-------------------*/
  /* Usluge sekcija */
  /*-------------------*/
}
/*--Sirina do 500px--*/
@media (max-width: 500px) {
  /*-------------------*/
  /* Dobrodošli sekcija */
  /*-------------------*/
  .dobrodosli .overlay {
    gap: 10px;
    padding: 15px;
  }
  .dobrodosli article {
    width: 90%;
  }
  .dobrodosli article h1 {
    font-size: 35px;
  }
  .dobrodosli article p {
    font-size: 15px;
  }
  .dobrodosli article hr {
    width: 100%;
    height: 15px;
    border: 4px solid #264329;
    margin: 10px auto;
  }
  .dobrodosli a {
    width: 90%;
    padding: 15px 20px;
  }
  /*-----------------------*/
  /*-----INFO SEKCIJA-----*/
  /*---------------------*/
  .info {
    min-height: 100px;
  }
  .info-wrapper {
    width: 90%;
    min-height: 90%;
    top: 5%;
    left: 5%;
    flex-direction: column;
  }
  .info-wrapper .tekst {
    height: calc(100% - 30px);
    width: 100%;
  }
  .info-wrapper .slika {
    display: none;
  }
  .info-wrapper .kartica {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .info-wrapper .tekst h1 {
    font-size: 30px;
    text-align: center;
    padding: 10px 10%;
  }
  .info-wrapper .tekst p {
    font-size: 15px;
    padding: 10px 10%;
    text-align: center;
  }
  .info-wrapper .tekst hr {
    width: 80%;
    height: 4px;
    margin: 10px auto;
  }
  /*-------------------*/
  /*---Usluge sekcija--- */
  /*-------------------*/
  .usluge-container .naslov p {
    font-size: 15px;
    padding: 15px 0;
  }
  .usluge-wrapper {
    width: 100%;
    padding-left: 5%;
    gap: 20px;
  }
  .card {
    width: 80%;
    min-height: 300px;
    max-height: 350px;
    border-radius: 20px;
  }
  .card .sadrzaj {
    color: #f2edc2;
    font-size: 15px;
    padding: 0 15px;
  }
  .kontakt {
    padding: 25px 0;
    min-height: 100px;
  }
  .kontakt .naslov,
  .partneri .naslov,
  .usluge-container .naslov,
  .dobrodosli .naslov {
    width: 90%;
    margin-bottom: 15px;
  }
  .kontakt .naslov h1,
  .partneri .naslov h1,
  .usluge-container .naslov h1,
  .dobrodosli .naslov h1 {
    font-size: 30px;
    padding: 0 15px;
  }
  .kontakt .naslov hr,
  .partneri .naslov hr,
  .usluge-container .naslov hr,
  .dobrodosli .naslov hr {
    width: 80%;
    height: 10px;
    border: 3px solid #264329;
    margin: 10px auto;
  }
  .kontakt .kartica {
    width: 90%;
  }
  .kontakt-logo {
    margin-top: 15px;
  }
  .kontakt .sadrzaj a {
    text-align: center;
    width: 80%;
  }
  .partneri .kartica {
    height: 4em;
  }
  /*---Footer sekcija----*/
  footer {
    padding: 40px 15px 0;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }

  .footer-logo h3 {
    font-size: 22px;
  }

  .footer-col p {
    font-size: 13px;
  }

  .footer-col h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer-col ul li a {
    font-size: 12px;
  }

  .footer-contact {
    gap: 6px;
    padding-bottom: 6px;
  }

  .contact-link {
    font-size: 11px;
    padding: 6px 10px;
  }

  .footer-bottom {
    padding: 15px 0;
  }

  .footer-bottom p {
    font-size: 12px;
    margin: 6px 0;
  }
}

/*--Sirina manja od 330px   */
@media (max-width: 330px) {
  .kontakt .naslov,
  .partneri .naslov,
  .usluge-container .naslov {
    width: 90%;
    margin-bottom: 15px;
  }
  .kontakt .naslov h1,
  .partneri .naslov h1,
  .usluge-container .naslov h1 {
    font-size: 25px;
    padding: 0 5px;
  }
}

/*--Responsive Partneri sekcija - do 768px--*/
@media (max-width: 768px) {
  .partneri-main {
    width: 80%;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  .partneri article {
    width: 100%;
    padding: 25px 15px;
  }

  .partneri article h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .partneri article a {
    flex-direction: column;
    justify-content: center;
    font-size: 15px;
    padding: 10px 15px;
    margin: 10px 0;
    gap: 10px;
  }

  .partneri article a:hover {
    transform: translateY(-4px);
  }

  .partneri article img {
    width: 50px;
    height: 50px;
  }
}
/*-----------------*/
/* Responsive Forma */
/*-----------------*/
@media (max-width: 768px) {
  .kontakt-forma {
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    gap: 15px;
  }

  .kontakt-forma label {
    font-size: 20px;
  }

  .kontakt-forma input,
  .kontakt-forma textarea {
    padding: 10px 15px;
    font-size: 15px;
  }

  .form-submit {
    padding: 15px 30px;
    font-size: 15px;
  }
}

@media (max-width: 500px) {
  .partneri-main {
    width: 90%;
    flex-direction: column;
    gap: 25px;
  }
  .kontakt-forma {
    width: 100%;
    padding: 25px 15px;
    gap: 15px;
  }

  .kontakt-forma label {
    font-size: 15px;
  }

  .kontakt-forma input,
  .kontakt-forma textarea {
    padding: 10px 15px;
    font-size: 15px;
  }

  .form-submit {
    padding: 15px 20px;
    font-size: 15px;
  }
}
