*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

}

body
{
    background-image: url(IMG/black.avif);
}
#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: #a6702d; /* crvena */
}

.inner-circle {
  width: 20px;
  height: 20px;
  background-color: #AA773A; /* 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;
  }
}

/* arrow start */
.arrowHolderO
{
    opacity: 0;
    z-index: 1000000000000000;
}
.arrowHolder img 
{
    position: fixed;
    bottom: 20px;
    right: 2%;
    width: 32px;
    z-index: 1000000000000000;
}
/* arrow end */

/* title start */
.title-white
{
    text-align: center;
    font-size: 75px;
    font-weight: 600;
    margin-bottom: 80px;
    font-family: "Oswald", sans-serif;
    color: white;
}
.title-dark
{
    text-align: center;
    font-size: 75px;
    font-weight: 600;
    margin-bottom: 80px;
    font-family: "Oswald", sans-serif;
    color: #011323;
}
.a-title
{
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
    font-family: "Oswald", sans-serif;
    margin-bottom: -2px;

}
/* title end */

/* navigation start */
.nav-header {
    position: relative;
}

.logo {
    z-index: 1111199;
    width: 120px;
}

/* MENU dugme */
.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 */
}
.menu-btn img
{
    width: 40px;
}
/* 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: 999;
}
/* Kada je otvoren */
.overlay.show {
    display: flex;
}

.overlay-content a {
    display: block;
    color: white;
    font-size: 22px;
    text-align: center;
    margin: 15px 0;
    text-decoration: none;
    transition: 0.3s;
    margin-left: -30px;
}

.overlay-content a:hover {
    color: #bbb;
}
/* navigation end */


/* hero start */
#hero 
{
    background-image: url(IMG/bg.avif);
    background-size: contain;
    background-position: center;
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center; /* Centriraj horizontalno */
    align-items: center; /* Centriraj vertikalno */
}


#hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Shadow sa providnošću 0.5 */
    z-index: 1;
}
.heroCon
{
    height: 250px;
    position: absolute;
    bottom: 30%;
    left: 50%;
    max-width: 90%;
    width: 100%;
    transform: translate(-50%, 30%);
    animation: heroConanim 0.5s ease-in-out;
    display: block;
    margin: auto;
}
@keyframes heroConanim 
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
.heroText
{
    margin-top: 100px;
    padding-left: 5px;
}
.heroText h1
{
    font-size: 25px;
    text-align: center;
    color: white;
  font-family: "Oswald", sans-serif;

}
#hero-overlay h2
{
    color: white;
    font-size: 65px;
    font-weight: 700;
    text-align: center;
  font-family: "Oswald", sans-serif;

}
.text
{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-20%, -50%);
}
.btns
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
#primaryBtn
{
    padding: 10px 30px;
    color: white;
    text-align: center;
    text-decoration: none;
    background-color: #AA773A;
    font-size: 20px;
    margin: 0px 2px;
    font-weight: 500;
    border-radius: 30px;
    max-width: 300px;
    width: 100%;

}
#secondaryBtn
{
    padding: 10px 30px;
    color: white;
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    font-size: 20px;
    margin: 0px 2px;
    font-weight: 500;
    border-radius: 30px;
    border: 2px solid white;
}
#secondaryBtn1
{
    padding: 10px 30px;
    color: black;
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    font-size: 20px;
    margin: 0px 2px;
    font-weight: 500;
    border-radius: 30px;
    border: 1px solid black;
}
#thirdyBtn
{
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding: 10px 30px;
    margin: 5px 0px;
    display: block;
    margin: auto;
    text-align: center;
    width: 100%;
    max-width: 300px;
}
/* hero end */

/* line start */
#line
{
    max-width: 100%;
    width: 100%;
}
.lineHolder
{
    display: flex;
    flex-wrap: wrap; /* vaĹľno da elementi mogu da prelaze u novi red */
    align-items: center;
    justify-content: flex-start;
}
.lineItem
{
    width: 25%;
    padding: 50px 0px;
    background: linear-gradient(45deg, #a6702d,#AA773A);
}
.lineItem h3
{
    text-align: center;
    color: white;
    font-size: 35px;
}
/* line end */

/* ponuda start */
#ponuda
{
    padding: 120px 0px 120px 0px;
}
#ponuda img
{
    display: block;
    margin: auto;
    width: 100%;
    border-radius: 20px;
}
/* ponuda end */

/* text start */
#text
{
    padding: 80px 0px;
    background-color: transparent;
}
#text h2
{
    text-align: center;
    font-size: 80px;
    color: white;
    font-weight: 700;
  font-family: "Oswald", sans-serif;

}
#text p
{
    text-align: center;
    font-size: 22px;
    margin-top: 20px;
}
/* text end */

/* music start */
#greet h3
{
    text-align: center;
    color: white;
    font-size: 18px;
    margin-top: 15px;
}

#greet img
{
    display: block;
    margin: auto;
}
#greet
{
    padding: 120px 0px;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}
#greet p
{
    text-align: center;
    font-size: 20px;
    color: white;
}
/* music end */

/* services start */
#services
{
    padding: 120px 0px;
    background-color: whitesmoke;
}
#services p
{
    text-align: center;
    font-size: 20px;
}
#services a
{
    text-decoration: none;
}
#productsBtn
{
    font-size: 16px;
    color: white;
    transition: 0.2s ease-in-out;
}
#ph1
{
    background-image: url(IMG/grupni.avif);
    cursor: pointer;
    background-position: bottom center;
    background-size: cover;
        border-radius: 20px;

}
#ph2
{
    background-image: url(IMG/individualni.avif);
    cursor: pointer;
    background-position: bottom;
    background-size: cover;
    border-radius: 20px;

}
#ph3
{
    background-image: url(IMG/oline.avif);
    cursor: pointer;
    background-position: center;
    background-size: cover;
    border-radius: 20px;

}
#ph4
{
    background-image: url(IMG/poluindividualni.avif);
    cursor: pointer;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
}
#ph5
{
    background-image: url(IMG/grupni.avif);
    cursor: pointer;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
}
.ph-overlay
{
    padding: 300px 0px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.2s ease-in-out;
    border-radius: 20px;

}

.ph-overlay1
{
    padding: 147px 0px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.2s ease-in-out;
    border-radius: 20px;

}

.ph-overlay2
{
    padding: 147px 0px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.2s ease-in-out;
    border-radius: 20px;

}
.phCon
{
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.phCon h3
{
    color: white;
    font-weight: 500;
     font-family: "Oswald", sans-serif;

}
#moreBtn
{
    padding: 15px 35px;
    color: white;
    max-width: 300px;
    width: 100%;
    display: block;
    margin: auto;
    text-decoration: none;
    text-align: center;
    transition: 0.2s ease-in-out;
    background-color: #AA773A;
    border-radius: 30px;
    font-size: 20px;
}
/* services end */

/* trener start */
#trener
{
    padding: 120px 0px 0px 0px;
}
#trener .btns
{
    justify-content: flex-start;
}
#trener p
{
    color: white;
    font-size: 20px;
}
#trener img
{
    border-radius: 30px;
}
/* trener end */

/* sadrzaj start */
#sadrzaj
{
    padding: 120px 0px 0px 0px;
    display: none;
}
#sadrzaj img
{
    border-radius: 20px;
    display: block;
    margin: auto;
    margin: 2px 0px;
}
/* sadrzaj end */

/* about start */
#about
{
    padding: 120px 0px 120px 0px;
}
#about p
{
    text-align: center;
    font-size: 20px;
    color: white;
    font-weight: 400;
}
/* about end */

/* unapredi start */
#unapredi
{
    background-color: white;
    padding: 120px 0px;
    display: none;
}
.unaprediHolder img
{
    display: block;
    margin: auto;
    margin-bottom: 25px;
}
.unaprediHolder
{
    padding: 50px 20px;
    /* background-color: #aa783a29; */
    background-color: #EDDE83;
    border-radius: 20px;
}
.unaprediHolder h3
{
    text-align: center;
    font-weight: 500;
    font-size: 25px;
}
.unaprediHolder p
{
    text-align: center;
    font-weight: 400;
    font-size: 20px;
}
/* unapredi end */

/* recept start */
#recept
{
    padding: 120px 0px;
    background-color: white;
}
#recept img
{
    border-radius: 30px;
}
#recept p
{
    font-size: 20px;
}
#recept .btns
{
    justify-content: flex-start;
}
/* recept end */

/* reference start */
#reference
{
    padding: 120px 0px;
}
#reference img
{
    filter: grayscale(1);
    display: block;
    margin: auto;
    border-radius: 30px;
}
.referenceHolder
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.referenceItem img
{
    filter: invert(1);
}
/* reference end */

/* questions start*/
#questions
{
    padding: 120px 0px;
    background-color: rgb(248, 248, 248);
    text-align: center;

}
#faqAccordion .card-header h3
{
    font-size: 22px;
}
#faqAccordion .card-header {
    background-color: #f8f9fa;
    border: none;    
    text-align: center;
    font-size: 20px;
}

#faqAccordion .btn-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    background-color: whitesmoke;
    width: 100%;
    text-align: center;
    font-size: 20px;
}

#faqAccordion .btn-link:hover {
    color: #1a1a1a;
}

.card-body {
    background-color: #f1f1f1;
    padding: 15px;
    font-size: 20px;
    color: #333;
}

/* Aktivno stanje dugmadi */
.card-header .btn:focus {
    outline: none;
    box-shadow: none;
    font-size: 20px;

}
/* questions end */

/* footer start */
#footerTop
{
    padding: 40px 0px;
    /* background: linear-gradient(to right, #d84b0a, #FA6018); */
    background-color: #AA773A;
}
.footerTopHolder h3
{
    font-size: 20px;
}
.footerTopHolder
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}
#skrivBtn
{
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    color: black;
    margin: 0px 2px;
    font-size: 18px;
    font-weight: 500;
     border-radius: 30px;
    background-color: white;
    }
#ringBtn
{
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    color: white;
    margin: 0px 2px;
    font-size: 18px;
    font-weight: 500;
     border-radius: 30px;
    background-color: #a6702d;
    /* background: linear-gradient(to right, #0C99D9, #056799); */
}

/* footer start */
#footer
{
    padding: 50px 0px;
    background-color: rgba(0, 0, 0, 0.6);
}
#footer img
{
    width: 100px;
    display: block;
    margin: auto;
}
#footer h4
{
    text-align: center;
    color: white;
      font-family: "Oswald", sans-serif;

}
#footer h2
{
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
  font-family: "Oswald", sans-serif;

}
#footer p
{
    text-align: center;
    color: white;
    font-size: 18px;
}
#footer ul
{
    list-style: none;
}
#footer ul li a
{
    color: white;
    text-decoration: none;
    margin-left: -30px;
    padding: 5px 0px;
}
#autor
{
    text-align: center;
    text-decoration: none;
    color: white;
}
#footer form input
{
    padding: 7px 10px;
    border-radius: 0px;
    border: 0px;
    outline: none;
    width: 100%;
    border-radius: 30px;
}
#footer form button
{
    padding: 5px 30px;
    background-color: #AA773A;
    color: white;
    border: 0px;
    outline: none;
    font-weight: 600;
    margin-top: 10px;
    border-radius: 30px;
}
/* footer end */

/* contact start */
#contact1
{
    padding: 50px 0px;
    background-color: whitesmoke;
}
#contact1 .title-text
{
    text-align: left;
}
#contact1 .title
{
    text-align: left;
    margin-bottom: 0px;
}
.contactHolder1
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 30px 0px;
}
.contactHolder1 .contactItem1 p
{
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 20px;
}
.contactHolder1 .contactItem1 a
{
    text-decoration: none;
    color: black;
    font-size: 18px;

}
.contactHolder1 .contactItem1 img
{
    width: 32px;
    margin-right: 10px;
}
/* contact end */

/* newsletter start */
#newsletter
{
    padding: 100px 0px 100px 0px;
    background-color: #e8f7ff71;
}
#newsletter p
{
    font-size: 20px;
}
#newsletter form
{
    width: 90%;
    display: block;
    margin: auto;
}
#newsletter form input
{
    width: 100%;
    padding: 5px 7px;
}
#newsletter form button
{
    padding: 10px 30px;
    background-color: #AA773A;
    font-weight: 600;
    text-align: center;
    outline: none;
    border: none;
    color: white;
    margin-top: 10px;
}
/* newsletter end */

#contact
{
    padding: 200px 0px 80px 0px;
    background-color: white;
}
#contact h3
{
    text-align: center;
}
#contact p
{
    font-size: 20px;
}
#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
{
    padding: 50px 20px;
    /* background-color: #aa783a29; */
        background-color: #EDDE83;

    border-radius: 30px;
}
#contact form input
{
    width: 100%;
    padding: 5px 7px;
    margin: 10px 0px;
    outline: none;
    border: 1px solid #dcdcdc;
    border-radius: 30px;
}
#contact form textarea
{
    width: 100%;
    padding: 5px 7px;
    margin: 10px 0px;
    outline: none;
    border: 1px solid #dcdcdc;
    border-radius: 10px;

}
#contact form button
{
    padding: 10px 30px;
    background-color: #AA773A;
    color: white;
    text-align: center;
    max-width: 220px;
    width: 100%;
    font-weight: 600;
    outline: none;
    border: 0px;
    display: block;
    margin: auto;
    border-radius: 30px;
}
#provera
{
    display: none;
}

/* location start */
#location
{
    padding: 100px 0px;
    background-color: rgba(245, 245, 245, 0.955);
}
#location iframe
{
    border-radius: 30px;
}
#location p
{
    text-align: center;
    font-size: 20px;
}
/* location end */

.testimonials-section {
background-color: white;
padding: 100px 0px 100px 0px;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.title {
text-align: center;
font-size: 2rem;
font-weight: bold;
margin-bottom: 2.5rem;
}
.slider-wrapper {
overflow: hidden;
position: relative;
}
#testimonial-track {
display: flex;
transition: transform 0.7s ease-in-out;
}
.testimonial {
flex-shrink: 0;
width: 100%;
padding: 1rem;
}
.testimonial-content {
background-color: #ffffff;
padding: 1.5rem;
border-radius: 1rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
height: 100%;
}
.testimonial-content p {
font-style: italic;
color: #4b5563;
margin-bottom: 1rem;
text-align: center;

}
.testimonial-content h4 {
font-weight: 600;
color: #111827;
text-align: center;
}
@media (min-width: 768px) {
.testimonial {
width: calc(100% / 3);
}
}
.testimonials-section a
{
    text-align: center;
    margin-top: 10px;
    color: black;
    font-size: 20px;
}



@media(max-width: 768px) {
    .slider {
        margin-top: 20px; /* daje prostor ispod teksta */
    }
    .dot {
        height: 12px;
        width: 12px;
    }
}

@media(max-width: 480px) {
    .dots {
        margin-top: 8px;
    }
}

@media only screen and (max-width: 376px)
{
    .btns
    {
        flex-direction: column;

    }

 .btns1
 {
    flex-direction: column;
 }
}
@media only screen and (max-width: 320px)
{
    .btns #secondaryBtn
        {
            border: none;
        }

}


/* plan start */
#plan
{
    padding: 200px 0px;
}
#plan p
{
    text-align: center;
    font-size: 20px;
    color: white;
}
#plan form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 60%;
    width: 100%;
    display: block;
    margin: auto;
}
#plan form label
{
    color: #888;
}

#plan input,
#plan select {
    width: 100%;
    display: block;
    margin: auto;
    padding: 14px 15px;
    margin-top: 10px 0px;
    border-radius: 20px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

#plan input::placeholder {
    color: #888;
}

#plan select {
    appearance: none;
    cursor: pointer;
}

#plan input:focus,
#plan select:focus {
    outline: none;
    border-color: #AA773A;
    background: #141414;
}

/* SUBMIT BUTTON */

#plan button {
    margin-top: 10px;
    padding: 10px 30px;
    font-size: 20px;
    border-radius: 30px;
    width: 100%;
    max-width: 350px;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    display: block;
    margin: auto;
    background-color: #AA773A;
    font-weight: 500;
}

#plan button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(240,78,35,0.4);
}

/* MESSAGE */

#formMessage {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #7CFC00;
}

/* RESPONSIVE */



/* ===== VIDEO HERO SECTION ===== */
#videoHero {
    position: relative;
    width: 100%;
    height: 100vh; /* cela visina ekrana */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

#videoHero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

#videoHero .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8); /* crni overlay sa 50% prozirnosti */
    z-index: 2;
}

#videoHero .videoContent {
    position: relative;
    z-index: 3;
    max-width: 90%;
    width: 100%;
    padding: 20px;
}

#videoHero h2 {
    font-size: 80px;
    width: 100%;
    font-weight: 700;
  font-family: "Oswald", sans-serif;

}

#videoHero p {
    font-size: 25px;
    margin-bottom: 30px;
}

#videoHero .btn {
    padding: 14px 28px;
    background: #f04e23;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

#videoHero .btn:hover {
    background: #ff7a18;
}

/* Responsive */
@media (max-width: 768px) {
    #videoHero h2 {
        font-size: 32px;
    }

    #videoHero p {
        font-size: 16px;
    }
}

#inspiracija
{
    padding: 120px 0px;
    background-color: rgba(0, 0, 0, 0.6);
}
#inspiracija p
{
    text-align: center;
    font-size: 20px;
    color: white;
}
/* inspiracija end */
#inspiracija a
{
    text-decoration: none;
    font-size: 20px;
    color: #121212;
}
#inspiracija a img
{
    display: block;
    margin: auto;
}
#inspiracija  p
{
    text-align: center;
    margin-top: 20px;
}
 #klizac {
    scroll-behavior: smooth;
    padding-bottom: 10px;
  
  /* sakrij horizontalni scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE i Edge */
}

#klizac::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

  .klizac-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
  }

  .strelica-levo,
  .strelica-desno {
    position: absolute;
    top: 35%;
    transform: translateY(-35%);
    /* color: white; */
    font-weight: 500;
    font-size: 20px;
    width: 100px;
    height: 100px;
    background-color: transparent;
    /* border: 1px solid #ccc; */
    z-index: 10;
    color: white;
  }
  .button
  {
    border: none;
    outline: none;
  }

  .strelica-levo {
    left: -50px;
        font-size: 100px;
            border: none;
    outline: none;

  }

  .strelica-desno {
    right: -50px;
            font-size: 100px;
                border: none;
    outline: none;

  }
   @media (max-width: 768px) 
  {
    #dj
    {
        padding: 0px 0px 100px 0px;
    }
    .klizac-item {
      max-width: 90%;
    }
    .footerTopHolder
    {
        display: block;
    }
        .footerTopHolder h3, p
        {
            text-align: center;
        }
    .footerItem a
    {
        width: 100%;
        display: block;
        margin: auto;
        margin-top: 5px;
    }
    #skrivBtn
    {
        padding: 10px 30px;
        text-align: center;
        text-decoration: none;
        color: white;
        margin: 0px 1px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 30px;
        background-color: #985e18;
        max-width: 250px;
        width: 100%;
        display: block;
        margin: auto;
    }
    #ringBtn
    {
        max-width: 250px;
        width: 100%;

        padding: 10px 30px;
        text-align: center;
        text-decoration: none;
        color: black;
        margin: 0px 1px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 30px;
        background-color: white;
        /* background: linear-gradient(to right, #0C99D9, #056799); */
                display: block;
        margin: auto;
    }
    #seBtn
    {
        display: none;
        padding: 10px 30px;
        text-align: center;
        text-decoration: none;
        color: white;
        margin: 0px 1px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 30px;
        background-color: #011323;
        /* background: linear-gradient(to right, #0C99D9, #056799); */
        border: 1px solid rgb(91, 91, 91);
    }
    

    .strelica-levo,
    .strelica-desno {
      display: none !important;
    }
}
@media (max-width: 576px) 
  {
    .klizac-item a img
    {
        display: block;
        margin: auto;
    }
    .slikaHolder::before {
    content: "";
    position: absolute;
    top: 20px;       /* pomera se nadole */
    left: 70px;    
    width: 100%;
    max-width: 80%;
    height: 100%;
    background-color: #58442c1c;
    z-index: 0;      /* iza slike */
        display: block;
    margin: auto;
    }
    .slikaHolder img {
  position: relative;
  z-index: 1;      /* slika ide preko pozadine */
  display: block;
  width: 100%;
  max-width: 90%;
  display: block;
  margin: auto;
}
    .vrednostHolder
    {
        padding: 25px 0px;
    }
    .vrednostHolder img
    {
        margin-bottom: 10px;
    }
    #inspiracija
    {
        padding-bottom: 50px;
    }
    #brands
    {
        padding-top: 50px;
    }
  }

  /* gallery start */
#gallery
{
    padding: 200px 0px 120px 0px;
}
#gallerys 
{
    padding-top: 50px;
}
#gallerys img
{
    width: 100%;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    border-radius: 20px;
}
#gallerys img:hover
{
    width: 100%;
    filter: brightness(0.8);
}
/* gallery end */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    position: relative;
    max-width: 90%;
    width: 100%;
    height: 100%;
    max-height: 90%;
    background-color: transparent;
}
.close button
{
    width: 30px;
    height: 30px;
    background-color: #090909;
    position: absolute;
    font-weight: 600;
    top: 0%;
    right: 0%;
    /* transform: translate(-10%, -10%); */
    outline: none;
    border: 0px;
    color: white;
}

.modal-content img {
    display: block;
    max-height: 100%;    
    margin: auto;
}

.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
    user-select: none;
}

.modal-arrow.left {
    left: 10px;
}

.modal-arrow.right {
    right: 10px;
}

@media (max-width: 576px) 
{
    .treningCon
    {
        position: absolute;
        bottom: 20%;
        left: 50%;
        transform: translate(-50%, 20%);
        color: white;
        text-align: center;
        max-width: 95%;
        width: 100%;
        display: block;
        margin: auto;
    }
    .treningCon h1
    {
        font-size: 35px;
        font-weight: 700;
        font-family: "Oswald", sans-serif;
    }
    .treningCon h2
    {
        font-size: 22px;
        font-family: "Oswald", sans-serif;
    }
    .title-white
    {
        text-align: center;
        font-size: 37px;
        font-weight: 600;
        margin-bottom: 80px;
        font-family: "Oswald", sans-serif;
        color: white;
    }
    .title-dark
    {
        text-align: center;
        font-size: 37px;
        font-weight: 600;
        margin-bottom: 80px;
        font-family: "Oswald", sans-serif;
        color: #011323;
    }
    #sadrzaj .sadrzajHolder a
    {
        text-align: center;
    }
    #sadrzaj .sadrzajHolder a img
{
    border-radius: 20px;
    display: block;
    margin: auto;
    margin: 2px 0px;
}
    #plan form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    width: 100%;
    display: block;
    margin: auto;
}
    .overlay-content a {
        margin-left: 0px;
        margin: 10px 0px;
        font-size: 20px;
    }
    .lineItem h3
{
    text-align: center;
    color: white;
    font-size: 20px;
}
    #upit
{
    padding: 50px 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%;
    }
}


/* media query start */
@media only screen and (max-width: 576px)
{
    .overlay
    {
        background-color: rgba(0, 0, 0, 0.2);
    }
    .contactItem1
    {
        text-align: left;
    }
    #trener .btns
    {
        margin-bottom: 30px;
    }
    #secondaryBtn
    {
        border: 1px solid white;
    }
    #greet h3
    {
        text-align: center;
        color: white;
        font-size: 16px;
        margin-top: 10px;
    }
    body
    {
        background-position: right;
    }
    #greet
    {
        background-color: transparent;
    }
    .overlay-content a
    {
        font-size: 22px;
    }
    .nav-header
    {
     position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

    .logo {
        /* height: 60px; */
        width: 100px;
        height: auto;
        /* margin-left: -150px; */
        position: absolute;
        left: 20px;
        top: 20px;
    }

    /* MENU dugme */
    .menu-btn {
        font-size: 22px;
        background: none;
        border: none;
        font-weight: 700;
        cursor: pointer;
        color: white;
        /* margin-right: -10px; */
        position: absolute;
        top: 40px;
        right: 20px;
    }
    .menu-btn img
    {
        width: 40px;
    }
    #hero 
    {
        background-image: url(IMG/bg.avif);
        background-size: cover;
        background-position: center;
        position: relative;
        height: 80vh;
        overflow: hidden;
        display: flex;
        justify-content: center; /* Centriraj horizontalno */
        align-items: center; /* Centriraj vertikalno */
    }
    .heroCon
    {
        position: absolute;
        bottom: 30%;
        left: 50%;
        max-width: 90%;
        width: 100%;
        transform: translate(-50%, 30%);
        animation: heroConanim 0.5s ease-in-out;
        display: block;
        margin: auto;
    }
    @keyframes heroConanim 
    {
        0%
        {
            opacity: 0;
        }
        100%
        {
            opacity: 1;
        }
    }
    .heroText
    {
        margin-top: 100px;
        padding-left: 5px;
    }
    .heroText h1
    {
        font-size: 22px;
        text-align: center;
        color: white;
    }
    #hero-overlay h2
    {
        color: white;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }
    .ph-overlay
    {
        padding: 147px 0px;
        position: relative;
        background-color: rgba(0, 0, 0, 0.4);
        transition: 0.2s ease-in-out;
        border-radius: 20px;
    }
        .lineItem 
        {
        width: 50%;         /* dva u redu */
        padding: 30px;       /* manji padding za manje ekrane */
    }
        .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 */
    }
}

@media only screen and (max-width: 400px)
{
    .footerTopHolder
    {
        display: block;
        color: white;
    }
    .footerTopHolder a
    {
        margin-top: 20px;
    }
    #aboutTr p 
    {
        text-align: center;
    }

}
/* media query end */

/* aboutTr start */
#aboutTr
{
    padding: 200px 0px 0px 0px;
}
#aboutTr .btns
{
    justify-content: center;
}
#aboutTr p
{
    color: white;
    font-size: 20px;
}
#aboutTr ul li
{
    color: white;
    font-size: 20px;
    margin-left: 20px;
}
#aboutTr img
{
    border-radius: 20px;
}
#aboutTr .btns
{
    justify-content: flex-start;
}
/* aboutTr end */

/* humanitarno start */
#humanitarno
{
    padding: 120px 0px 120px 0px;

}
#humanitarno img
{
    border-radius: 20px;
    display: block;
    margin: auto;
    margin: 2px 0px;

}
/* humanitarno end */


/* treningHero start */
.t1
{
    background-image: url(IMG/grupni.avif);
    background-size: cover;
    position: relative;
    background-position: bottom;
}
.t2
{
    background-image: url(IMG/individualni.avif);
    background-size: cover;
    position: relative;
    background-position: top;
}
.t3
{
    background-image: url(IMG/poluindividualni.avif);
    background-size: cover;
    position: relative;
    background-position: center;
}
.t4
{
    background-image: url(IMG/oline.avif);
    background-size: cover;
    position: relative;
    background-position: top;
}
.trening-overlay
{
    padding: 350px 0px;
    background-color: rgba(0, 0, 0, 0.8);
}
.treningCon
{
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, 20%);
    color: white;
    text-align: center;
}
.treningCon h1
{
    font-size: 55px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
}
.treningCon h2
{
    font-size: 30px;
    font-family: "Oswald", sans-serif;
}

/* treningHero end */

/* trening start */
#trening
{
    padding: 120px 0px;
}
#trening p
{
    text-align: center;
    font-size: 20px;
    color: white;
}
#trening ul
{
    list-style: none;
    color: white;
    font-size: 20px;
    text-align: center;
}
/* trening end */

/* other start */
#other
{
    padding: 0px 0px 120px 0px;
}
/* other end */

/* partneri start */
#partneri
{
    background-color: white;
}
#partneri img
{
    display: block;
    margin: auto;
}
/* partneri end */