/* ----- Pocetna ----- */

body{
    position: relative;
}

.hero-section{
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    background-image: url('../images/sekcija-1.webp');
    background-size: cover;
    padding: 400px 0;
}


.my-nav-toggle{
    background-color: var(--dark-color);
    top: 0px !important;
}

.dropdown-menu{
    width: 260px !important;
    background-color: var(--light-dark-color) !important;
    white-space: normal !important;
}
.dropdown-item{
    color: white !important;
    white-space: normal !important;
}
.dropdown-item:hover{
    background-color: transparent !important;
}


.black-overlay::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    background-color: rgba(0,0,0,.5);
    z-index: 1;
}

.black-overlay-medium::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    background-color: rgba(0,0,0,.7);
    z-index: 1;
}

.black-overlay-darker::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    background-color: rgba(0,0,0,.85);
    z-index: 1;
}


.navbar-toggler{
    background-color: var(--gold-color) !important;
    color: white !important;
}
.nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pre-nav{
    position: fixed;
    width: 100%;
    z-index: 2;
    padding: 10px 0;
}


.my-nav{
    position: fixed;
    left: 0;
    top: 40px;
    z-index: 100;
    width: 100%;
    transition: background-color .5s,top .4s;
}

.sticking{
    top: 0px;
    opacity: 1 !important;
}

.nav-link{
    font-size: var(--fs-400) !important;
    color: white !important;
    z-index: 200 !important;
    white-space: normal !important;
}
.nav-link:hover{
    color: var(--gold-color) !important;
}

.active{
    color: var(--gold-color) !important;
}

.section-1{
    position: relative;
    background-image: url("../images/hero-2.webp");
    background-size: cover;
    padding: 100px 0;
}

.section-1-img{
    border: 6px solid rgb(50, 49, 49);
    transition: 0.3s transform;
}

.section-1-img:hover{
    transform: scale(1.06);
}


.gold-line{
    width: 160px;
    height: 0;
    border: 1px solid var(--gold-color);
    opacity: 1 !important;
}

.section-2-card{
    padding: 40px 24px;
    transition: 0.3s background-color,0.3s padding !important;
}
.section-2-card:hover {
    padding: 20px 24px 60px 24px;
    background-color: var(--gold-color) !important;
    color: black !important;
}


.section-2-card>*{
    transition: 0.3s color !important;
}
.section-2-card:hover>*{
    
    color: black !important;
} 


.section-2-card>div{
    transition: 0.3s margin-top !important;
}


/*.section-2-card:hover>div{
    margin-top: -20px !important;
}*/

.section-3{
    padding: 100px 0;
}


.btn-tab{
    padding: 10px 8px;
    text-align: left;
    color: var(--gray-color);
    
    background-color: transparent;
    border: none;
    font-weight: bold;
    transition: 0.15s color;
}

.btn-tab:hover{
    color: var(--gold-color);
}

.tab-toggle{
  background-color: var(--gold-color); color: black;
}

.tab-toggle:hover{
  color: black;
}

.active-tab{
  background-color: var(--gold-color); color: black;
}




/* ---- O nama ---- */

.onama-header{
    position: relative;
    width: 100%;
    background-image:url("../images/onama-pozadina-2.jpg");
    background-size: cover;
    background-position: center;
    
}




.about-numbers{
    padding: 10px 15px;
    transition: 0.3s background-color !important;
    cursor: pointer;
}
.about-numbers:hover {
    background-color: var(--gold-color) !important;
    color: black !important;
}


.about-numbers>*{
    transition: 0.3s color !important;
}
.about-numbers:hover>*{
    
    color: black !important;
} 

.onama-section-2{
    width: 56% !important;
}


.scroller {
    max-width: 1200px;
  }
  
  .scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(
      90deg,
      transparent,
      white 20%,
      white 80%,
      transparent
    );
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  }
  
  .scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s)
      var(--_animation-direction, forwards) linear infinite;
  }
  
  .scroller[data-direction="right"] {
    --_animation-direction: reverse;
  }
  
  .scroller[data-direction="left"] {
    --_animation-direction: forwards;
  }
  
  .scroller[data-speed="fast"] {
    --_animation-duration: 20s;
  }
  
  .scroller[data-speed="medium"] {
    --_animation-duration: 40s;
  }

  .scroller[data-speed="slow"] {
    --_animation-duration: 60s;
  }
  
  @keyframes scroll {
    to {
      transform: translate(calc(-50% - 0.5rem));
    }
  }
  
  /* general styles */
  
  :root {
    --clr-neutral-100: hsl(0, 0%, 100%);
    --clr-primary-100: hsl(205, 15%, 58%);
    --clr-primary-400: hsl(215, 25%, 27%);
    --clr-primary-800: hsl(217, 33%, 17%);
    --clr-primary-900: hsl(218, 33%, 9%);
  }

  .tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
  }
  
  .tag-list li {
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
  }

  .scroll-img{
    width: auto;
    height: 60px;
    
  }


  /* ----- Kontakt ----- */


  .kontakt-header{
    position: relative;
    width: 100%;
    background-image:url("../images/kontakt-background.jpg");
    background-size: cover;
    background-position: center;
  }

  .contact-icon{
    background-color: var(--gold-color);
    padding: 24px 20px;
    display: inline-block;
    border-radius: 3px;
  }

  .icon-card{
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .form-control{
    background-color:var(--medium-dark-color) !important;
    color: white !important;
    border: 1px solid var(--light-gold-color) !important;
  }

  .form-control::placeholder{
    color: var(--light-gold-color) !important;
  }

  .form-control:focus{
    border: 2px solid var(--gold-color) !important;
    box-shadow: none !important;
  }
  




  /* ---- Usluga sredjivanja ---- */


  .usluga-sredjivanja-header{
    background-image: url("../images/hero-2.webp");
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
  }


  .quote-container {
    position: relative;
    padding: 66px;
    font-family: 'Georgia', serif;
    
    max-width: 1000px;
    margin: 0 auto;
}

blockquote {
    position: relative;
    font-size: 18px;
    font-style: italic;
    color: #666;
    line-height: 1.5;
    z-index: 1;
}

.quote-container::before {
    width: 100%;
    height: 100%;
    content: "“";
    position: absolute;
    font-size: 150px;
    color: rgba(83, 71, 71, 0.6);
    z-index: 0;
}

.quote-container::after {
    content: "”";
    position: absolute;
    bottom: -50px;
    right: 20px;
    font-size: 150px;
    color: rgba(83, 71, 71, 0.6);
    z-index: 0;
}

.quote-container::before,
.quote-container::after {
    font-family: 'Georgia', serif;
}

.quote-container::before {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold-color);
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    left: 0;
}



.propisi-header{
  position: relative;
  width: 100%;
  background-image:url("../images/propisi-background.jpg");
  background-size: cover;
  background-position: center;
}


.propisi-tabela{
  border: 2px solid var(--gold-color) ;
}


table.propisi-tabela>thead>tr>*{
  color: black;
  background-color: var(--gold-color);
  padding: 7px;
  border: 2px inset black;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}

table.propisi-tabela>tbody>tr>*{
  padding: 30px;
  border: 2px solid var(--gold-color);
}

table.propisi-tabela>tbody>tr>*:hover{
  background-color: rgb(226, 191, 94);
  border: 2px solid black;
}

.omot-tabela{
  border: 2px solid var(--gold-color) ;
}

table.omot-tabela>thead>tr>*{
  color: black;
  background-color: var(--gold-color);
  padding: 20px;
  border: 2px inset black;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  font-size: var(--fs-450);
  font-weight: bold;
}

table.omot-tabela>tbody>tr>*{
  padding: 20px 130px 20px 20px;
  border: 2px solid var(--gold-color);
  color: var(--gray-color) !important;
  font-size: var(--fs-450);
}

table.omot-tabela>tbody>tr>*:hover{
  background-color: rgb(226, 191, 94);
  border: 2px solid black;
  color: black !important;
  font-weight: bold;
}



.unistavanje-header{
  position: relative;
  width: 100%;
  background-image:url("../images/unistavanje-background.jpg");
  background-size: cover;
  background-position: center;
}