*{
    padding: 0;
    margin: 0;
}

.text-primary{
    color: #00c6c2!important;
}

.btn-outline-primary{
    color: #00c6c2;
    border: 1px solid #00c6c2;
}

a{
    text-decoration: none;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00c6c2; /* tvoja plava boja */
    color: #000; /* crna strelica */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3;
}

.back-to-top:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:focus-visible, .btn-outline-primary:active{
    background-color: #00c6c2!important;
    color: #fff!important;
    border: 1px solid #00c6c2!important;
}

.btn-primary{
    background-color: #00c6c2!important;
    color: #0D0D0D!important;
    border: 1px solid #00c6c2!important;
}

.btn-cta{
    position: relative;
    padding: 15px 80px;
    font-size: 23px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 15px;
    border: none;
    overflow: hidden;
    z-index: 1;
    background-color: #212529;
    color: #fff;
    text-decoration: none;
    transition: all .4s ease;
}
a.btn-cta:hover{
    color: unset;
}
.btn-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #fff;
    border-radius: 50px;
    z-index: -1;
    transition: width 0.4s ease;
    color: #212529!important;
}

.btn-cta:hover::before {
    width: 100%;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:focus-visible, .btn-primary:active{
    background-color: #00c6c2!important;
    color: #fff!important;
    border: 1px solid #00c6c2!important;
}

.navbar-scroll {
    transition: background-color 0.3s, box-shadow 0.3s;
    background-color: #0D0D0D !important; 
    box-shadow: 0px 0px 25px 30px rgba(13, 13, 13, 1);
}

#navbar{
    position: fixed;
    z-index: 10;
    width: 100%;
    background-color: #0D0D0D !important; 
    box-shadow: 0px 0px 25px 30px rgba(13, 13, 13, 1);
}

#navbar .navbar-brand{
    font-size: 36px;
    font-weight: 600;
}

#navbar .nav-item .nav-link{
    position: relative;
    font-size: 22px;
    color: #fff;
    text-decoration: none; /* ukloni default underline */
    padding-bottom: 5px;  
}

#navbar .nav-item .nav-link i{
    color: #00c6c2;
}

.navbar-toggler {
  border: 1px solid #00c6c2 !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 198, 194, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#navbar .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;  /* startuje sa 0 */
  height: 3px;
  background-color: #00c6c2;
  transition: width 0.3s ease-in-out; /* animacija širine */
}

#navbar .nav-item .nav-link:hover::after {
  width: 100%; /* crta se širi do kraja */
}

.hero{
    background: url('../images/SLIDE_001.jpg') no-repeat center center/cover;
}

.hero-blog{
    background: url('../images/SLIDE_002.jpg') no-repeat center center/cover;
}

.hero-gallery{
    background: url('../images/gym-gallery.jpg') no-repeat center center/cover;
}

.hero, .hero-gallery, .hero-blog {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero::before, .hero-gallery::before, .hero-blog::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); /* tamni overlay */
}

.hero-content, .hero-gallery-content{
    position: relative;
    z-index: 2;
}

.hero .btn-hero{
    background-color: #00c6c2;
    color: #0D0D0D;
}

#offer-section{
    background-color: #0D0D0D;
    color: #00c6c2;
    box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    -webkit-box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    -moz-box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    position: relative;
    z-index: 2;
}

#offer-section .card{
    background-color: transparent;
}

#offer-section .offer-icon-img img{
    width: 150px;
}

#motivation-section{
    background: url('../images/limits_landing_page.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    position: relative;
    z-index: 1;
    padding: 150px 0;
}

#motivation-section h2{
    font-size: 100px;
    line-height: 1.0em;
    overflow: visible;

}

#motivation-section .overlay{
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    background-color: #0D0D0D;
    opacity: 0.2;
}

#motivation-section p{
    font-size: 20px;
}

#motivation-section .btn-motivation {
  position: relative;
  padding: 15px 80px;
  font-size: 23px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 15px;
  border: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

/* sivi overlay koji ide s leva na desno */
#motivation-section .btn-motivation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #212529; /* siva boja */
  border-radius: 50px;
  z-index: -1;
  transition: width 0.4s ease;
}

/* hover stanje */
#motivation-section .btn-motivation:hover {
  color: #00c6c2!important; /* plavi tekst */
}

#motivation-section .btn-motivation:hover::before {
  width: 100%; /* preliva se s leva na desno */
}

#pricing-section{
    background-color: #0D0D0D;
    padding: 70px 0;
    color: #fff;
    box-shadow: 0px 0px 25px 30px rgba(13, 13, 13, 1);
    -webkit-box-shadow: 0px 0px 25px 30px rgba(13, 13, 13, 1);
    -moz-box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    position: relative;
    z-index: 2;
}

#pricing-section .card{
    background-color: #0D0D0D;
}

#pricing-section .card-body, #offer-section .card-body{
    background-color: #212529;
    color: #fff;
    box-shadow: 0px 0px 19px 7px rgba(33,37,41,0.69);
    -webkit-box-shadow: 0px 0px 19px 7px rgba(33,37,41,0.69);
    -moz-box-shadow: 0px 0px 19px 7px rgba(33,37,41,0.69);
}

#pricing-section .card-body ul li{
    padding: 10px;
    border-bottom: 3px dotted #00c6c2;
}

#team-section{
    background-color: #0D0D0D;
    color: #fff;
    box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    -webkit-box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    -moz-box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    position: relative;
    z-index: 2;
}

#team-section .team-card, #testimonials-section .owl-item .item{
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0px 0px 19px 7px rgba(33,37,41,0.69)!important;
    -webkit-box-shadow: 0px 0px 19px 7px rgba(33,37,41,0.69)!important;
    -moz-box-shadow: 0px 0px 19px 7px rgba(33,37,41,0.69)!important;
}

#team-section .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

#team-section .team-card h5 {
    margin-top: 10px;
    font-weight: 600;
}

#team-section .team-card p {
    color: #ccc;
}

#statistics-section{
    background-color: #00c6c2;
}

#statistics-section h3{
    font-size: 36px;
    width: 60%;
}

#statistics-section h2{
    color: #fff;
    font-size: 82px;
}

#statistics-section .statistics-desc{
    font-size: 20px;
    font-weight: 600;
}

#faq-section{
    background-color: #0D0D0D;
    color: #fff;
}

#faq-section .accordion-button{
    background-color: #212529;
    color: #fff;
}

#testimonials-section{
    background-color: #0D0D0D;
    color: #fff;
    box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    -webkit-box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    -moz-box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    position: relative;
    z-index: 2;
}

#testimonials-section h2{
    color: #fff;
}
#testimonials-section .owl-item .item{
    color: #fff;
}
#testimonials-section .owl-item .item h6{
    margin-top: 20px;
}
#video-section{
    background: url(../images/video-coach.jpg);
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    z-index: 1;
    padding: 225px 0;
}

#video-section h2{
    font-size: 100px;
    line-height: 1.0em;
    overflow: visible;

}

#video-section .overlay{
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    background-color: #0D0D0D;
    opacity: 0.2;
}

#video-section p{
    font-size: 20px;
}

#video-section .btn-motivation-video {
    position: relative;
    font-size: 23px;
    border-radius: 50%;
    margin-top: 15px;
    border: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 30px;
    color: #fff!important;
}

#video-section .btn-motivation-video i{
    transition: all .4s ease;
}
/* sivi overlay koji ide s leva na desno */
/* #video-section .btn-motivation-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #212529; 
  border-radius: 50px;
  z-index: -1;
  transition: width 0.4s ease;
} */

/* hover stanje */
#video-section .btn-motivation-video:hover {
  color: #0D0D0D!important;
  background-color: #fff!important;
  border-color: #fff!important;
  transform: scale(1.1); 
}

#video-section .btn-motivation-video:hover i{
    transform: scale(1.9); 
}

/* #video-section .btn-motivation-video:hover::before {
  width: 100%; 
} */
.owl-carousel .owl-item img{
    width: 120px!important;
    height: 120px;
    margin: 0 auto;
}

/* GALLERY SECTION */

#gallery-section{
    background-color: #0D0D0D;
    color: #fff;
    box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    -webkit-box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    -moz-box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    position: relative;
    z-index: 2;
}

#gallery-section .nav .nav-item .nav-link{
    color: #fff;
    border:none!important;
}

#gallery-section .nav .nav-item .nav-link:hover{
    border: none!important;
}

#gallery-section .nav .nav-item:hover .nav-link, #gallery-section .nav .nav-item .nav-link.active{
    background: #00c6c2;
    border: none!important;
}

#gallery-section .section-title{
    margin-top: 80px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px; /* da tekst ne nalegne na liniju */
    font-weight: 600;
}

#gallery-section .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;          /* debljina linije */
    height: 60%;         /* visina linije */
    background-color: #00c6c2; /* tvoja plava boja */
    border-radius: 2px;
}

#gallery-section .tab-content img{
    border-radius: 10px;
    transition: all .3s ease;
}

#gallery-section .tab-content img:hover {
    transform: scale(1.03);
}

/* BLOG PAGE */

#blog-section {
    background-color: #0D0D0D;
    color: #fff;
    box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    -webkit-box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    -moz-box-shadow: 0px 0px 25px 30px rgba(13,13,13,1);
    position: relative;
    z-index: 2;
}

/* Sakrij blogove preko inicijalnog broja (npr. prikazujemo samo prve 4) */

.title-blog p {
    padding-bottom: 40px;
}
.blog-img{
    position: relative;
    padding-top: 40px;
}
.blog-img img {
    width: 100%;
}
.blog-img span{
    position: absolute;
    background-color: black;
    color: white;
    top: 14%;
    left: 6%;
    padding: 10px 15px;
    font-size: 14px;
    border: solid 1px #bde800;
}
.blog-img span.two{
    position: absolute;
    background-color: black;
    color: white;
    top: 14%;
    left: 20%;
    padding: 10px 15px;
    font-size: 14px;
}

.title-blog i{
    margin-left: 10px;
}
.Post-details.blog {
    justify-content: flex-start;
}
.Post-details.blog h6 {
    font-size: 14px;
    margin: 0;
    margin-left: 25px;
    text-transform: capitalize;
}
.Post-details.blog i {
    padding-right: 10px;
    color: #c7c7c7;
}
.view-button{
    text-align: center;
    margin-top: 80px;
    font-weight: 500;
}
a.button.back:after {
    background-color: transparent;
    border: solid 1px #bde800;
}
a.button.back i{
    padding-left: 10px;
}
a.button.back:before{
    border: 0;
}
a.button.back:hover,
a.button.back:hover i{
    color: black;
}
/*blog style 2*/
.title-blog.blog-2 h3 > a {
    margin-left: 40px;
    left: 0;
    margin-top: -88px;
    background-color: transparent;
    border: solid 1px white;
    backdrop-filter: blur(25px);
    width: 94%;
    box-shadow: -1px 3px 19px -6px rgb(0 0 0 / 10%);
    -webkit-box-shadow: -1px 3px 19px -6px rgb(0 0 0 / 10%);
    -moz-box-shadow: -1px 3px 19px -6px rgba(0,0,0,0.10);
}
.title-blog.blog-2 .blog-card {
    padding-left: 90px;
    padding-top: 40px;
}
.title-blog h3 > a {
    position: relative;
    padding: 30px;
    width: 85%;
    background-color: white;
    z-index: 0;
    margin-left: -60px;
    font-size: 36px;
}
.title-blog a {
    font-size: 16px;
    font-weight: 800;
    display: flex;
    justify-content: flex-end; /* tekst desno */
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Ikona strelice inicijalno sakrivena i pomerena desno */
.title-blog a .arrow-icon {
    margin-left: 8px; /* razmak od teksta */
    opacity: 0;
    transform: translateX(10px); /* van vidnog dela */
    transition: all 0.3s ease;
}

/* Hover efekat */
.title-blog a:hover {
    color: #00c6c2;
}

.title-blog a:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0); /* strelica dolazi do teksta */
}

.link-box{
    display: flex;
    justify-content: end;
    align-items: center;
}

.link-box a{
    background-color: #00c6c2;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid #00c6c2;
}

.link-box a:hover{
    background-color: #212529;
    transform: translateX(-5px);
}

.previou a,
.meeting-tim h3,
.number-one span,
.number-one h4 a,
.cards h4 a,.Post-1 a,
ul.social-icons li a,
ul.Menu-br li a,
nav ul li ul li a,.duis i:hover,
.photo-section.about i,
.title-blog a,
.title-blog h3 > a,
a.button.back i,.card-img-hover,
.mobile-nav > ul li > a
{
    transition: 0.3s ease-in-out;
}
.hover-style figure:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
.hover-style figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.hover-style figure:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.hover-style figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.hover-style figure {
    position: relative;
}
figure {
    overflow: hidden;
}
.blog-card .Post-details.blog {
    justify-content: start;
    margin-top: 15px;
    border-top-style: solid;
    border-top-color: #1c1c1c;
    border-top-width: 1px;
}

.Post-details.blog {
    justify-content: space-between;
    border: 0;
    margin-top: 0;
}
.Post-details.blog {
    justify-content: flex-start;
}
.Post-details {
    padding-top: 25px;
    border-top-style: solid;
    border-top-color: #1c1c1c;
    border-top-width: 1px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.view-button {
    text-align: center;
    margin-top: 80px;
    font-weight: 500;
}
.view-button .button {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    color: #212529;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 600;
    background-color: #00c6c2;
    border: 1px solid #00c6c2;
    
}
.view-button .button:hover{
    color: #00c6c2!important;
    border: 1px solid #00c6c2!important;
}
.view-button .button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #212529;
    
    transition: all 0.3s;
    z-index: -1;
}
.view-button .button.back:before {
    border: 0;
}
.view-button .button:hover:before {
    width: 100%;
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    list-style: none;
    padding: 0;
    gap: 10px;
}

.pagination li {
    cursor: pointer;
    padding: 3px 5px;
    background: #00c6c2!important;
    color: #fff;
    border-radius: 4px;
    transition: 0.3s;
}

.pagination .page-item .page-link{
    background: #00c6c2!important;
    border: none!important;
    font-size: 18px;
    color: #fff;
}
.pagination .page-item:hover, .pagination .page-item:hover .page-link, .pagination .page-item.active, .pagination .page-item.active .page-link{
    background: #212529!important;
    color: #00c6c2;
    border: 1px solid #00c6c2;
}
@media (max-width: 992px){
    #statistics-section h3{
        width: 85%;
    }
}
@media (max-width: 768px){
    #motivation-section {
        background-attachment: scroll;
        background-position: center;
    }

    #motivation-section h2{
        font-size: 72px;
    }
    #motivation-section .btn-motivation{
        padding: 10px 60px;
        font-size: 21px;
    }
    #statistics-section h3{
        width: 100%;
    }
    #video-section h2{
        font-size: 72px;
    }
}
@media (max-width:460px){
    #motivation-section h2{
        font-size: 46px;
    }

    #video-section h2{
        font-size: 46px;
    }

    .blog-img span{
        left: 2%;
    }

    .blog-img span.two{
        left: 25%;
    }
    .title-blog.blog-2 h3 > a{
        margin-left: 25px;
    }
    .title-blog h3 > a{
        font-size: 28px;
    }
    .title-blog.blog-2 .blog-card {
        padding-left: 60px;
        padding-top: 30px;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}


