*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

/* all start */
.title-white
{
    text-align: center;
    font-weight: 600;
    font-size: 45px;
    color: white;
}
.subtitle
{
    text-align: center;
    font-size: 20px;
    color: white;
    opacity: 0.8;
    margin-bottom: 150px;
    font-weight: 100;
}
.betitle-white
{
    text-align: center;
    font-size: 20px;
    margin-bottom: 2px;
    font-family: "Playfair Display", serif;
    color: white;
}
.betitle-dark
{
    text-align: center;
    font-size: 20px;
    margin-bottom: 2px;
    font-family: "Playfair Display", serif;
}
.title-white
{
    text-align: center;
    color: white;
    /* font-weight: 600; */
    font-size: 60px;
    /* font-family: "Playfair Display", sans-serif; */
    font-family: "Inter", sans-serif;
    font-weight: 200;
    /* text-transform: uppercase; */
    /* font-family: "Playfair Display", serif; */
    /* margin-bottom: -5px; */
}
.title-black
{
    text-align: center;
    color: rgb(30, 30, 30);
    /* font-weight: 600; */
    font-size: 60px;
    /* font-family: "Playfair Display", sans-serif; */
    font-family: "Inter", sans-serif;
    font-weight: 200;
    /* text-transform: uppercase; */
    /* font-family: "Playfair Display", serif; */
    /* margin-bottom: -5px; */
}
.subtitle-dark
{
    text-align: center;
    font-size: 20px;
    /* color: #555; */
    opacity: 0.8;
    margin-bottom: 150px;
    font-weight: 200;
}

#cursor-effect {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.outer-circle,
.inner-circle {
  position: absolute;
  border-radius: 50%;
  animation: pulse 1.5s infinite ease-in-out;
}

.outer-circle {
  width: 30px;
  height: 30px;
  background-color: #242424; /* crvena */
}

.inner-circle {
  width: 20px;
  height: 20px;
  background-color: #171717; /* plava */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}


::-webkit-scrollbar
{
    display: none;
}

/* arrow start */
.arrowHolderO
{
    opacity: 0;
    z-index: 1000000000000000;
}
.arrowHolder img 
{
    position: fixed;
    top: 89vh;
    right: 2%;
    width: 32px;
    z-index: 1000000000000000;
}
/* arrow end */

/* navigation start */
.nav-header {
    position: fixed;
    z-index: 1111111115923;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    height: 80px;
    z-index: 1111199;
}

/* MENU dugme */
.whatsapp-icon
{
    width: 40px;
}
.menu-btn {
    font-size: 22px;
    background: none;
    border: none;
    font-weight: 700;
    cursor: pointer;
    color: white;
    position: relative;   /* omoguÄ‡ava z-index */
    z-index: 10000;       /* veÄ‡i od overlay-a */
    margin-right: 100px;
}
.menu-btn img
{
    width: 40px;
    /* filter: invert(1); */
}
/* OVERLAY - skriven default */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* malo manje tamno da se vidi blur */
    backdrop-filter: blur(20px);     /* BLUR EFEKAT */
    -webkit-backdrop-filter: blur(10px); /* za Safari */
    
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
/* Kada je otvoren */
.overlay.show {
    display: flex;
}

.overlay-content a {
    display: block;
    color: white;
    font-size: 38px;
    text-align: center;
    margin: 18px 0;
    text-decoration: none;
    transition: 0.3s;
    margin-left: -25px;
    font-weight: 200;
}

.overlay-content a:hover {
    color: #bbb;
}
/* navigation end */


/* hero start */
#hero
{
    background-color: white;
    background-image: url(IMG/nbg.png);
    background-size: cover;
    background-position:  bottom;
    max-height: 100vh;
    background-attachment: scroll;
    position: relative;
}
.heroForm h3
{
    font-size: 20px;
    text-align: center;
}
.heroForm input,
.heroForm select,
.heroForm textarea {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
  padding: 12px 14px;
  font-size: 18px;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
  opacity: 0.5;
}
#hero input, select, textarea {
  -webkit-text-size-adjust: 100%;

}
/* Placeholder fix (iOS) */
.heroForm input::placeholder {
  color: #777;
  opacity: 1;
}

/* Select fix */
.heroForm select {
  color: #000;
    opacity: 0.5;

}

/* Kad NIJE izabran option */
.heroForm select:invalid {
  color: #777;
}
.heroForm input[type="date"]:before {
  content: "Datum";
  color: #777;
}

.heroForm input[type="date"]:focus:before,
.heroForm input[type="date"]:valid:before {
  content: "";
}
/* Autofill fix (iOS plava boja) */
.heroForm input:-webkit-autofill {
  -webkit-text-fill-color: #000;
  transition: background-color 9999s ease-in-out 0s;
}

/* Fokus */
.heroForm input:focus,
.heroForm select:focus {
  outline: none;
  border-color: #000;
}
#hero #primaryBtn
{
    border: 1px solid white;
    /* background-color: black; */
    color: white;
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

#hero #primaryBtn:hover {
  color: white;
}

#hero #secondaryBtn
{
    color: white;
    background-color: transparent;
    border: none;
}
.hero-overlay
{
    padding: 250px 0px;
    height: 100vh;
}
#hero h1
{
    /* color: black; */
    color: white;
    font-size: 80px;
    font-weight: 300;
    /* margin-top: -400px; */
}
#hero p
{
    font-size: 22px;
    color: white;
}
#hero form {
  /* background: #ffffffdb;
  padding: 40px 30px;
  width: 350px;
  position: absolute;
  top: 65%;
  transform: translateY(-65%);
  right: 150px; */

     background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding: 40px 30px;
    width: 350px;
    position: absolute;
    top: 65%;
    transform: translateY(-65%);
    right: 150px;
    border-radius: 10px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}
#hero form h3
{
    color: white;
    font-weight: 300;
}
#hero form select
{
    font-size: 14px;
    margin-bottom: 12px;

}

/* inputi */
#hero form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
opacity: 0.5;

}

/* dugme */
#hero form button {
  width: 100%;
  padding: 14px;
  border: none;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  background-color: transparent;
  opacity: 0.5;
}
#budget
{
    opacity: 0.3;
}
/* hero end */

/* brand start */
    .brandNone
    {
        display: none;
    }
#brand
{
    padding: 200px 0px;
    background-color: white;
}
#brand #primaryBtn
{
    font-weight: 300;
    background-color: transparent !important;
    border: 1px solid black;
    color: black;
    padding: 15px 30px;
}
#brand1 #primaryBtn
{
    font-weight: 300;
    background-color: transparent !important;
    border: 1px solid black;
    color: black;
    padding: 15px 30px;}
#brand1
{
    padding: 400px 0px 200px 0px;
    background-color: white;
}
#brand img
{
    width: 95%;
    display: block;
    margin: auto;
}
#brand1 img
{
    width: 95%;
    display: block;
    margin: auto;
}
#brand1 h3
{
    font-size: 35px;
    font-weight: 200;
}
#brand p
{
    font-size: 20px;
    font-weight: 200;
}
#brand1 p
{
    font-size: 20px;
    font-weight: 200;

}
#brand h3
{
    font-size: 35px;
    font-weight: 200;
}
/* brand end */

/* purpose start */
#purpose
{
    /* background-color: white; */
    background-image: url(IMG/pozadina\ 1.png);
    background-size: cover;
    background-attachment: fixed;
}
#purpose #primaryBtn
{
    display: block;
    margin: auto;
    width: 100%;
    max-width: 300px;
    font-weight: 300;
}
.purpose-overlay
{
    padding: 0px 0px;
    background-color: rgba(255 , 255, 255, 0.90);
}   
.purposeHolder h3
{
    font-weight: 200;
    text-align: center;
}
.purposeHolder
{
    padding: 50px 20px;
    background-color: rgba(249, 249, 249, 1);
    margin: 10px 0px;
}
#purpose1
{
    padding: 70px 20px;
}
.purposeHolder p
{
    text-align: center;
    font-size: 20px;
    font-weight: 200;
}
/* purpose end */

#hero .btns
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
}
#primaryBtn
{
    padding: 10px 40px;
    text-align: center;
    text-decoration: none;
    color: white;
    margin: 0px 5px;
    font-size: 20px;
     background-color: black;
     font-weight: 300;
}

#secondaryBtn
{
    padding: 8px 40px;
    text-align: center;
    text-decoration: none;
    color: black;
    margin: 0px 5px;
    border: 1px solid black;
    font-size: 20px;
    align-items: center;
     font-weight: 300;

}
#primaryBtn11
{
    padding: 10px 40px;
     font-weight: 200;

    text-align: center;
    text-decoration: none;
    color: black;
    margin: 0px 5px;
    font-size: 20px;
     /* border-radius: 30px; */
     border: 1px solid black;
    /* background: linear-gradient(to right, #c9a96ee8, #C9A96E); */
    /* box-shadow:
        0 8px 10px rgba(12, 153, 217, 0.45),
        0 4px 5px rgba(5, 103, 153, 0.35); */
}
#primaryBtn1
{
    padding: 10px 40px;
    text-align: center;
     font-weight: 200;

    text-decoration: none;
    color: white;
    margin: 0px 5px;
    font-size: 20px;
     /* border-radius: 30px; */
     border: 1px solid white;
    /* background: linear-gradient(to right, #c9a96ee8, #C9A96E); */
    /* box-shadow:
        0 8px 10px rgba(12, 153, 217, 0.45),
        0 4px 5px rgba(5, 103, 153, 0.35); */
}
#secondaryBtn1
{
    padding: 8px 30px;
    text-align: center;
    text-decoration: none;
    color: white;
    border: 1px solid rgb(255, 255, 255);
    margin: 0px 5px;
    font-size: 20px;
    /* border-radius: 30px; */
     font-weight: 200;

}
/* hero end */

/* content start */
#content
{
    padding: 300px 0px;
}
#content #secondaryBtn
{
    display: block;
    margin: auto;
    max-width: 200px;
    width: 100%;
    margin-top: 50px;
    transition: 0.3s ease-in-out;
}
#content #secondaryBtn:hover
{
    background-color: #000;
    color: white;
}
.contentHolder {
    margin: 25px 0;
    background: #F5F3EF;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    cursor: pointer;
    border-radius: 10px;
}
.contentHolder p
{
    text-align: center;
    padding-bottom: 30px;
}
/* Slika efekat */
.contentHolder img {
    width: 100%;
    transition: transform 0.6s ease;
    display: block;

}

/* Naslov */
.contentHolder h3 {
    text-align: center;
    font-size: 30px;
    padding: 45px 0;
    font-weight: 300;
    color: #222;
    transition: all 0.4s ease;
    position: relative;
}

/* HOVER EFEKAT NA CELOM KARTICU */
.contentHolder:hover {
    transform: translateY(-8px);
}

/* Zumiranje slike */
.contentHolder:hover img {
    transform: scale(1.05);
}

/* Tekst efekat */
.contentHolder:hover h3 {
    letter-spacing: 1px;
}


/* Blagi overlay luksuz efekat */
.contentHolder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(255,255,255,0.35),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contentHolder:hover::before {
    opacity: 1;
}
/* content end */

/* ballon start */
#ballon
{
    padding: 300px 0px;
    background: #F5F3EF;
}
#ballon p
{
    font-size: 22px;
}
#ballon #primaryBtn
{
    padding: 15px 30px;
    background-color: transparent;
    border: 1px solid black;
    color: #000;
}
/* ballon end */

/* greet start */
#greet
{
    padding: 200px 0px;
    /* background-color: white; */
    background-color: #f8f6f2;
    /* background: linear-gradient(to bottom, white, #f8f6f2); */
}
        #greet1
        {
            padding: 100px 0px 200px 0px;
            background-color: white;
        }
                #greet1 p
        {
            text-align: center;
            font-size: 20px;
        }
/* #g1
{
    padding: 100px 20px;
} */
.greetHolder 
{
    padding: 30px 10px;
    /* background-color: white; */
    /* border-radius: 20px; */
    margin: 10px 0px;
    /* box-shadow: 0px 10px 20px rgba(0,0,0,0.05); */
}
.borders
{
    border: 1px solid #ededed;
    padding: 50px 20px;
}
.greetHolder h3
{
    text-align: center;
    font-size: 25px;
    padding-top: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}
.greetHolder img
{   
    display: block;
    margin: auto;
    width: 40px;
}
.greetHolder p
{
    text-align: center;
    font-size: 20px;
    font-weight: 200;
}
#greet a
{
    width: 100%;
    max-width: 200px;
    display: block;
    margin: auto;
}
#greet a img
{
    width: 32px;
}
/* greet end */

/* galerija start */
.gallery-block {
    animation: fade 0.4s ease-in-out;
}
.active
{
    background-color: transparent;
    color: black;
    border: 1px solid black;
}
.filter-btn
{
    padding: 10px 30px;
    outline: none;
    margin: 0px 5px;
    font-weight: 300;
    font-size: 20px;
}
.gallery-filter
{
    display: flex;
    justify-content: center;
    margin: auto;
}

@keyframes fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
#galerija
{
    padding: 300px 0px;
    /* background-color: black; */
    background-color: #f7f4f1;
}
#galerija img
{
    margin: 12px 0px;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
    height: 100%;
    width: auto;
}
#galerija img:hover
{
    transform: scale(1.02);

}
#galerija #primaryBtn
{
    display: block;
    margin: auto;
    margin-top: 50px;
    max-width: 220px;
    width: 100%;
    font-weight: 300;
    border: 1px solid white;

}
/* galerija end */


/* upit start */
#upit
{
    padding: 120px 0px;
}
#upit p
{
    font-size: 20px;
    text-align: center;
}
#upit a
{
    width: 100%;
    max-width: 320px;
}
#upit a img
{
    width: 32px;
}
.form-group {
  margin-bottom: 10px;
}

label {
  font-size: 12px;
  margin-bottom: 3px;
  display: block;
}
#upit form
{
    box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
    background-color: #F5F3EF;
    padding: 50px 20px;
    margin: 25px 0px;
}

input, select {
  width: 100%;
  padding: 3px;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0px;
  font-size: 12px;
}

input:focus, select:focus {
    color: #555;
  outline: none;
}

.checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"]:checked {
  background: #000;
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  font-size: 12px;
}
input[type="date"] {
  -webkit-appearance: none; /* uklanja Safari default stil */
  -moz-appearance: none;    /* Firefox */
  appearance: none;          /* standard */
  width: 100%;
  padding: 3px;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;    /* uključuje padding u širinu */
  font-size: 12px;
}

.upload-box {
  position: relative;
  border: 1px solid #9e9e9e;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.upload-box input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.upload-box p {
  color: black;
  font-size: 10px;
}

small {
  color: black;
}

.submit-btn:hover {
  background: #333;
}
/* upit end */

/* about start */
#about
{
    padding: 300px 0px;
    background-color: white;
}
#about #primaryBtn
{
    display: block;
    margin: auto;
    width: 100%;
    max-width: 250px;
    font-weight: 300;
    background-color: transparent;
    border: 1px solid black;
    color: #000;
}
#about p
{
    font-size: 20px;
    text-align: center;
    font-weight: 200;
}
#about1 #primaryBtn
{
    border: 1px solid white;
}
#about1
{
    padding: 200px 0px 200px 0px;
    background-color: white;
}
#about1 img
{
    display: block;
    margin: auto;
    border-radius: 20px;
}
#about1 p
{
    font-size: 20px;
    font-weight: 200;
}
/* about end */

/* newsletter start */
#newsletter
{
    padding: 200px 0px;
    background-color: white;
}


.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ccc;
  font-size: 20px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
  text-align: center;
  max-width: 60%;
  width: 100%;
  display: block;
  margin: auto;
}

.newsletter-form input[type="email"]:focus {
  border-color: black; /* luksuzni zlatni akcent */
}

.newsletter-form button {
  background-color: black; /* zlatni luksuzni ton */
  color: #fff;
  padding: 10px 30px;
  border: none;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: block;
  margin: auto;
  max-width: 220px;
  width: 100%;
}

.newsletter-form button:hover {
  background-color: black;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}
/* newsletter end */


/* test start */
#test
{
    background-image: url(IMG/nbg.png);
    background-size: cover;
    position: relative;
    background-position: bottom;
    background-attachment: scroll;
}
.test-overlay
{
    padding: 450px 0px;
    background-color: rgba(0, 0, 0, 0.0);
}
.testCon
{
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, 20%);
}
.testCon h2
{
    color: white;
    font-size: 55px;
    text-align: center;
    font-weight: 200;
}
.testCon p
{
    text-align: center;
    font-size: 22px;
    color: white;
    font-weight: 200;
}
.testCon a
{
    display: block;
    margin: auto;
    padding: 10px 30px;
    border: 1px solid white;
    color: white;
    text-align: center;
    text-decoration: none;
    width: 100%;
    max-width: 280px;
    font-size: 20px;
    font-weight: 300;
}
.testCon a:hover
{
    color: white;
}
/* test end */

/* footer start */
#footer
{
    padding: 120px 0px;
    background-color: #070706;
}
#footer p
{
    color: white;
    font-weight: 200;
}
#footer img
{
    width: 80px;

}
.footer-content
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-content .footer-content-item form input
{
    outline: none;
    border: none;
    border-bottom: 1px solid white;
    background-color: transparent;

}
.footer-content .footer-content-item h3
{
    color: white;
}
.footer-content .footer-content-item form button
{
    color: white;
    outline: none;
    border: none;
    font-weight: 200;
    background-color: transparent;
}
.footer-content .footer-content-item p
{
    color: white;
}
.footer-content .footer-content-item a
{
    text-decoration: none;
    color: white;
}
hr
{
    border-top: 2px solid #333; /* moÅ¾e se menjati stil, boja i debljina */
    height: 5px;
    background-color: white;
}
#footer h3
{
    font-size: 20px;
    color: white;
    font-weight: 200;
}
#footer ul 
{
    list-style: none;
}
#footer ul li
{
    color: white;
}
#footer ul li a
{
    text-decoration: none;
    color: white;
    margin-left: -30px;
    font-weight: 200;
}
/* footer end */

/* kontakt start */
#contact
{
    padding: 200px 0px 120px 0px;
    background-color: white;
}
.contactTxt
{
    font-size: 22px;
    text-align: center;
}
#con p
{
    font-size: 22px;
    font-weight: 200;
}
#contact ul
{
    list-style: none;
    margin: 10px 0px;
    margin-left: -30px;
    font-size: 18px;
}
#contact ul li
{
    margin: 15px 0px;
}
#contact ul li a
{
    text-decoration: none;
    color: #1a1a1a;
}
#contact form .conTxt
{
    color: #555;
    font-size: 18px;
    text-align: center;
}
#contact form
{
    background-color: #F5F3EF;
    padding: 30px 20px;
    /* border: 1px solid rgb(189, 189, 189); */
    /* box-shadow: 0px 10px 20px rgba(0,0,0,0.2); */
}
#contact form input
{
    width: 100%;
    padding: 10px 15px;
    margin: 10px 0px;
    border-radius: 0px;
    outline: none;
    border: none;
    border: 1px solid #ddd;
    background-color: white;
    font-size: 18px;
}
#contact form textarea
{
    width: 100%;
    padding: 5px 15px;
    margin: 10px 0px;
    border-radius: 0px;    
    outline: none;
    border: none;
    border: 1px solid #ddd;
    background-color: white;
    font-size: 18px;
}
#contact form select
{
    width: 100%;
    padding: 10px 15px;
    margin: 10px 0px;
    border-radius: 0px;
    outline: none;
    border: none;
    border: 1px solid #ddd;
    background-color: white;
    font-size: 16px;
    opacity: 0.5;
}
#contact form img
{
    display: block;
    margin: auto;
    margin-top: -100px;
    width: 120px;

}
#contact form button
{

    max-width: 250px;
    width: 100%;
    font-weight:300;
    display: block;
    margin: auto;
    font-size: 18px;
    background-color: #000;
    padding: 10px 30px;
    color: white;
    outline: none;
    border: none;
}
#contact h3
{
    font-size: 20px;
    margin-top: 10px;
    font-weight: 300;}
#contact a
{
    color: #555;
    margin-top: -20px;
    font-size: 20px;
}
#information p
{
    font-size: 20px;
}
#provera
{
    display: none;
}
/* kontakt end */

/* mapa start */
#mapa
{
    padding: 100px 0px 100px 0px;
    background-color: rgba(255, 255, 255, 0.811);
}
#mapa iframe
{
    border-radius: 20px;
}
/* mapa end */

/* questions start */
.contactH
{
    display: flex;
    justify-content: center;
    align-items: center;
}
.contactH a
{
        border-radius: 30px;
        padding: 10px 30px;
        color: white;
        outline: none;
        border: none;
        font-weight: 300;
        width: 100%;
        max-width: 250px;
        display: block;
        margin: auto;
        margin-top: 10px;
        text-decoration: none;
        font-size: 18px;
}
.contactH a:hover
{
    color: white;
}
/* questions end */

/* information start */
#information
{
    padding: 100px 0px;
}
.informationHolder
{
    padding: 20px 0px;
}
#information h3
{
    font-size: 20px;
    margin-top: 10px;
    font-weight: 700;
}
#information p
{
    font-size: 20px;
}
#information a
{
    color: #555;
    margin-top: -20px;
    font-size: 20px;
    text-decoration: none;
}
#information iframe
{
    display: block;
    margin: auto;
    width: 100%;
}
.informationHolder img
{
    width: 25px;
}
/* information end */


@media only screen and (max-width: 768px)
{
    #products .btns1 #secondaryBtn1
    {
        display: none;
    }
        #products1 .btns1 #secondaryBtn1
    {
        display: none;
    }
    #test
    {
        background-attachment: scroll;
    }
    .cake-form{
        display:flex;
        flex-direction:column;
        gap:15px;
        background-color: #F5F3EF;
        padding: 50px 10px;
        border-radius: 20px;
    }
    .cake-form input
    {
        width: 100%;
        max-width: 100%;
    }
     #products  .btns1
    {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #products1 .btns1
    {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .events-content h2
    {
        text-align: center;
    }
    #products1 .events-content h2
    {
        text-align: center;
    }
     #products1 .events-content {
    flex: 1 1 100%;
    background-color: white;
    color: #555;
    padding: 100px 20px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
    .events-content {
    flex: 1 1 100%;
    background-color: #171717;
    color: white;
    padding: 100px 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
   
    .logo-container img
    {
        margin-left: 28px;
    }
     #footer img
    {
        display: block;
        margin: auto;
    }
    .footer-content
    {
        display: block;
    }
        .footer-content .footer-content-item p
    {
        color: white;
        text-align: center;
    }
    .footer-content .footer-content-item a
    {
        text-decoration: none;
        color: white;
        text-align: center;
    }
    .footer-content .footer-content-item form input
    {
        outline: none;
        border: none;
        border-bottom: 1px solid white;
        background-color: transparent;
        width: 100%;
        max-width: 100%;
        border-radius: 0px;

    }
    .footer-content .footer-content-item h3
    {
        color: white;
        text-align: center;
    }
    #footer h3
    {
        margin-top: 20px;
    }

    #footer
    {
        text-align: center;
    }
    .footer-content .footer-content-item form button
    {
        color: white;
        outline: none;
        border: none;
        font-weight: 200;
        width: 100%;
        max-width: 200px;
        display: block;
        margin: auto;
        margin-top: 10px;
        text-align: center;
    }
}





/* gallery start */

#gallery
{
    padding: 200px 0px 200px 0px;
}
#gallerys img
{
    width: 100%;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    margin: 10px 0px;
}
#gallerys img:hover
{
    width: 100%;
    filter: brightness(0.8);
}
/* gallery end */






  /* services start */
  #services
  {
    padding: 200px 0px 0px 0px;
  }
#services a
{
    text-decoration: none;
}
#s1
{
    background-image: url(IMG/s1-22.avif);
    background-size: cover;
    background-position: center;
}
#s2
{
    background-image: url(IMG/s1-8.avif);
    background-size: cover;
    background-position: center;
}
#s3
{
    background-image: url(IMG/s1-23.avif);
    background-size: cover;
    background-position: center;
}
#s5
{
    background-image: url(IMG/s1-20.avif);
    background-size: cover;
}
.servicesHolderItemLeft a
{   
    text-decoration: none;
}
.servicesHolder-overlay
{
    background-color: rgba(0, 0, 0, 0.3);
    padding: 200px 0px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.servicesHolder-overlay:hover
{
    background-color: #f5f3ef86;
}

.servicesHolderItemLeft
{
    width: 80%;
    padding: 20px 20px;
    background-color: #F5F3EF;
    display: block;
    margin: auto;
    margin-top: -60px;
    z-index: 11111;
    position: relative;
        box-shadow: 0px 10px 20px rgba(0,0,0,0.2);

}
.servicesHolderItemLeft h3
{
    color: #555;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
}
.servicesHolderItemLeft p
{
    text-align: center;
    color: white;
    font-size: 16px;
}
.servicesHolder {
  position: relative;
  overflow: hidden;
}

.s1 {
  position: relative; /* Mora imati position da ::after moÃ…Â¾e biti absolute */
}

.s1 p {
  display: none; /* Sakrij originalni <p> */
}

.s1::after {
content: "Elegante und individuelle Gestaltung von Veranstaltungen aller Art – von der Gesamtatmosphäre bis zu jedem kleinen Detail.";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  box-sizing: border-box;
}

.s2::after {
    content: "Kreative und luxuriöse Balloninstallationen sowie handverlesene Blumenarrangements, die Ihre Feier einzigartig machen.";
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  box-sizing: border-box;
}
.s3::after {
    content: "Maßgeschneiderte Designs und stimmige Themenkonzepte, perfekt abgestimmt auf Ihre Wünsche und den Charakter Ihres Events.";
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  box-sizing: border-box;
}

.s5::after {
    content: "Professionelles Aufstellen der Dekoration sowie Unterstützung während der Veranstaltung, damit alles reibungslos verläuft.";
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  box-sizing: border-box;
}
.s6::after {
    content: "Nudimo ugradnju elektriÄnog podnog grejanja â€“ od preciznog planiranja do potpune instalacije, sa fokusom na komfor, ravnomernu raspodelu toplote i energetsku efikasnost u svakom prostoru.";
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  box-sizing: border-box;
}
.s7::after {
content: "Nudimo ugradnju punjaÄa za elektriÄna vozila â€“ od struÄnog planiranja do kompletne instalacije, uz fokus na bezbednost, pouzdan rad i optimalno punjenje u svakom prostoru.";
position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  box-sizing: border-box;
}
.servicesHolder:hover .servicesHolder-overlay::after {
  opacity: 1;
}
#services #primaryBtn
{
    display: block;
    margin: auto;
    max-width: 200px;
    width: 100%;
    margin-top: 30px;
}
#services p
{
    text-align: center;
    font-size: 20px;
    font-weight: 200;
}
/* services end */


@media only screen and (max-width: 768px)
{
    .filter-btn
    {
        padding: 10px 30px;
        outline: none;
        border: none;
        margin: 0px 5px;
        font-weight: 300;
        font-size: 16px;
        background-color: transparent;
        color: black;
        max-width: 200px;
        display: block;
        margin: auto;
    }
    
    .gallery-filter
    {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: auto;
    }
    .brand2
    {
        display: none;
    }
    #brand #primaryBtn
{
    font-weight: 300;
    display: block;
    margin: auto;
    max-width: 250px;
    width: 100%;
    padding: 15px 30px;
    background-color: transparent;
}
#brand1 #primaryBtn
{
    font-weight: 300;
    display: block;
    margin: auto;
    max-width: 300px;
    width: 100%;
    padding: 15px 30px;

}
    @keyframes prikaz
    {
        0%
        {
            transform: translateY(0px);
            opacity: 1;
        }
        100%
        {
            transform: translateY(0px);
            opacity: 1;

        } 
    }

     input, select {
  width: 100%;
  padding: 5px;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0px;
  font-size: 16px;
}

input:focus, select:focus {
    color: #555;
  outline: none;
}

.checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"]:checked {
  background: #000;
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  font-size: 16px;
}
input[type="date"] {
  -webkit-appearance: none; /* uklanja Safari default stil */
  -moz-appearance: none;    /* Firefox */
  appearance: none;          /* standard */
  width: 100%;
  padding: 5px;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;    /* uključuje padding u širinu */
  font-size: 16px;
}
}
.btns p
{
    margin-left: 3px;
}

  @media (max-width: 768px) 
  {
    .paddd
    {
        margin-top: 450px;
    }
    #hero h1
    {
        font-size: 45px;
        text-align: center;
        font-weight: 300;
    }
    #hero p
    {
        font-weight: 300;
        text-align: center;
    }
    #hero .btns
    {
        display: block;
        margin: auto;
    }
    #hero #secondaryBtn
    {
        display: none;
    }
    .klizac-item {
      max-width: 90%;
    }

    .brandNone
    {
        display: block;
    }
    #brand1
    {
        padding-top: 500px;
    }
    #brand1 h3
    {
        font-size: 40px;
        font-weight: 200;
        text-align: center;
    }
    #brand1 img
    {
        margin-top: 50px;
        max-width: 100%;
        width: 100%;
    }
    #brand img
    {
        margin-bottom: 50px;
        max-width: 100%;
        width: 100%;
    }
    #brand h3
    {
        font-size: 40px;
        font-weight: 200;
        text-align: center;
    }
        .strelica-levo,
    .strelica-desno {
      display: none !important;
    }
  }

  @media (max-width: 576px) 
  {
    #hero #secondaryBtn
    {
        display: block;
    }
    #hero h1
    {
        font-size: 45px;
        text-align: center;
    }
    .klizac-item a img
    {
        display: block;
        margin: auto;
    }     
    #inspiracija
    {
        padding-bottom: 50px;
    }
  }



@media only screen and (max-width: 992px)
{
    .informationHolder img
    {
        display: block;
        margin: auto;
    }
    #information h3
    {
        font-size: 20px;
        margin-top: 10px;
        font-weight: 700;
        text-align: center;
    }
    #information p
    {
        font-size: 20px;
        text-align: center;
    }
    .informationHolder
    {
        text-align: center;
    }
    #information .informationHolder a
    {
    color: #555;
        margin-top: -20px;
        font-size: 20px;
        text-align: center;

    }
}

  @media (min-width: 768px) 
  {
    .nav-header{
        justify-content:flex-end;
        position:fixed;
    }

    .logo-container{
        position:absolute;
        left:50%;
        transform:translateX(-50%);
    }
    .testimonial {
    width: calc(100% / 3);
    }
    .hero-overlay
    {
        background-color: rgba(0, 0, 0, 0);
    }

}


@media only screen and (max-width: 576px) {
    .contentHolder 
    {
    margin: 45px 0;
    }
    #ballon p
    {
        text-align: center;
        font-weight: 300;
    }
    .active
{
    background-color: transparent;
    color: black;
    border: 1px solid black;
}
    #brand1 p
    {
        text-align: center;
    }
    #brand p
    {
        text-align: center;
    }
  #test
    {
        background-attachment: scroll;
    }
    .test-overlay
    {
        padding: 300px 0px;
        background-color: rgba(0, 0, 0, 0.0);
    }
    .testCon
    {
        position: absolute;
        bottom: 20%;
        left: 50%;
        transform: translate(-50%, 20%);
        width: 100%;
        max-width: 95%;
    }
    .testCon h2
    {
        color: white;
        font-size: 45px;
        text-align: center;
    }
    .testCon p
    {
        text-align: center;
        font-size: 18px;
        color: white;
    }
    .testCon a
    {
        display: block;
        margin: auto;
        width: 100%;
        max-width: 270px;
        font-size: 20px;
    }

.modal-arrow.left {
    left: 0px;
    background-color: transparent;

}

.modal-arrow.right {
    right: 0px;
    background-color: transparent;
}



    .newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ccc;
  font-size: 20px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
  text-align: center;
  max-width: 95%;
  width: 100%;
  display: block;
  margin: auto;
}

    #about1 #primaryBtn
{
    border: 1px solid white;
    margin-bottom: 50px;
}
.hero-overlay
{
    background-color: rgba(0, 0, 0, 0.3);
    padding: 150px 0px;
}
    #hero h1
{
    margin-top: 80px;
}

.purposeHolder h3
{
    font-size: 30px;
    font-weight: 200;
    text-align: center;
}

    .menu-btn {
    margin-right: 0px;
}
#datum
{
    width: 100%;
    max-width: 100%;
}
    #tekst
    {
        text-align: center;
    }
            #greet1
        {
            padding: 0px 0px 120px 0px;
            background-color: white;
        }
    #about1 p
{
    font-size: 20px;
    text-align: center;
}
    #primaryBtn11
{
    padding: 10px 40px;
    text-align: center;
    text-decoration: none;
    color: black;
    margin: 0px 5px;
    font-size: 20px;
     /* border-radius: 30px; */
     border: 1px solid black;
    /* background: linear-gradient(to right, #c9a96ee8, #C9A96E); */
    /* box-shadow:
        0 8px 10px rgba(12, 153, 217, 0.45),
        0 4px 5px rgba(5, 103, 153, 0.35); */
        display: block;
        margin: auto;
        font-weight: 500;
}
    .title-black
    {
        text-align: center;
        color: black;
        font-size: 50px;
        margin-bottom: 0px;
    }
    .title-white
    {
        font-size: 50px;
        margin-bottom: 0px;
    }
    .modal-arrow {
        font-size: 1.5rem;
    }
    .modal-content img {
        display: block;
        max-height: 50%;    
        height: 50%;
        margin: auto;
        max-width: 95%;
    }
    .modal-content {
        position: relative;
        max-width: 100%;
        width: 100%;
        height: 100%;
        max-height: 100%;
    }

    .firstArrowHolder img
    {
        width: 32px;
        opacity: 0.3;
        animation: projectsArrow 0.3s ease-in-out alternate 1000;
    }
    .secondArrowHolder img
    {
        width: 32px;
        opacity: 0.5;
        animation: projectsArrow 0.3s ease-in-out alternate 1000;
        filter: invert(1);
    }
    .projectsHolder img
    {
        opacity: 0.3;
        width: 32px;
        animation: projectsArrow 0.3s ease-in-out alternate 1000;
    }
    .testimonials-overlay
    {
        padding: 300px 0px;
        background-color: rgba(0, 0, 0, 0.55);
        position: relative;
    }
}

@media only screen and (max-width: 576px)
{
    #hero form button
    {
        font-weight: 300;
        color: #000;
    }
    #hero form h3
    {
        color: #000;
    }
    #hero p
    {
        font-size: 18px;
    }
    #content #secondaryBtn
    {
        color: #000;
        border: 1px solid black;
        background-color: transparent;
    }
    #hero
    {
        background-attachment: scroll;
        background-image: url(IMG/small.avif);
        background-size: cover;
        background-position: right;
    }
    #test
    {
        background-attachment: scroll;
        background-image: url(IMG/small.avif);
        background-size: cover;
        background-position: right;
    }
    #hero .btns #primaryBtn
    {
        /* display: none; */
    }
    #hero .btns
    {
        justify-content: flex-start;
    }
        #hero .btns #secondaryBtn
    {
        backdrop-filter: blur(2px); /* blur pozadine iza */
        -webkit-backdrop-filter: blur(2px); /* za Safari */
        /* background-color: rgba(99, 99, 99, 0.25); */
        border: 1px solid white;
        font-weight: 400;

    }
    #heroCon
    {
        background-color: white;
    }

    .hero-overlay
        {
            background-color: rgba(0, 0, 0, 0.0);
        }

    .menu-btn img
    {
        width: 28px;
        /* filter: invert(1); */
    }
        .overlay-content a {
        display: block;
        color: white;
        font-size: 25px;
        text-align: center;
        margin: 18px 0;
        text-decoration: none;
        transition: 0.3s;
        margin-left: 0px;
    }

    .btns {
        display: flex;
        flex-direction: column; /* ovo stavlja dugmad jedno ispod drugog */
        align-items: center;    /* horizontalno centriranje dugmadi */
        justify-content: center;
        margin-top: 20px;
        gap: 10px;              /* opcionalno: razmak izmeÄ‘u dugmadi */
    }
    #hero .btns {
        display: flex;
        flex-direction: column; /* ovo stavlja dugmad jedno ispod drugog */
        align-items: center;    /* horizontalno centriranje dugmadi */
        justify-content: center;
        margin-top: 20px;
        gap: 10px;              /* opcionalno: razmak izmeÄ‘u dugmadi */
    }
    #primaryBtn
    {
        padding: 10px 35px;
        text-align: center;
        text-decoration: none;
        color: white;
        margin: 0px 2px;
        font-size: 20px;
        /* border-radius: 30px; */
        /* background: linear-gradient(to right, #0C99D9, #056799); */
        /* box-shadow:
        0 8px 10px rgba(12, 153, 217, 0.45),
        0 4px 5px rgba(5, 103, 153, 0.35); */
        font-weight: 500;
    }
    #secondaryBtn
    {
        padding: 10px 35px;
        text-align: center;
        text-decoration: none;
        color: white;
        margin: 0px 5px;
        border: 1px solid rgb(255, 255, 255);
        background-color: rgba(43, 43, 43, 0.25);
        font-size: 20px;
        /* border-radius: 30px; */
    }
    #contact form
    {
        margin-top: 150px;
    }
        #formTxt
        {
            font-size: 16px;
            text-align: center;
        }
    .contactH
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #hero form
    {
        background-color: #F5F3EF;
        padding: 100px 30px;
        max-width: 90%;
        width: 100%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 650px;
    }


}
  /* mediq query end */
