body { font-family: Outfit, sans-serif;
    background-color: #F5EBDD;
    color: #121212; 
}
.logo-img {
  height: 40px;  /* možeš povećati ili smanjiti po potrebi */
  width: auto;
  object-fit: contain;
}
.hero-bg{
    background-image: url('hero.png.png');
    background-color: #2C1E3E;
    color: white;
    padding: 100px 0;
    text-align: center; 
    background-size: cover;
    background-repeat: no-repeat;
    
}
.hero-servis-televizora{
    background-image: url('../images/servis-televizora-tv-servis-tv-popravka-pozadinsko-osvetljenje.png');
    background-color: #2C1E3E;
    color: white;
    padding: 100px 0;
    text-align: center; 
    background-size: cover;
    background-repeat: no-repeat;
    
}
.hero-servis-pc{
    background-image: url('../images/pc-servis-popravka-racunara-laptop.png');
    background-color: #2C1E3E;
    color: white;
    padding: 100px 0;
    text-align: center; 
    background-size: cover;
    background-repeat: no-repeat;
    
}
.hero { 
    background-color: #1B263B;
    color: white;
    padding: 100px 0;
    text-align: center; 
}
.section { 
    background-color: #F5EBDD;
    padding: 60px 0;
}
.section-dark {
    background-color: #1B263B;
    color: white; 
}
.card-img-top { 
    height: 280px;
    object-fit: cover; 
}
.card-icon {
      font-size: 48px;
      color: #CBA135;
    }
.btn-custom {
      background-color: #CBA135;
      color: white;
      border: none;
    }
.btn-custom:hover {
      background-color: #b3892b;
    }
.portfolio-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: scale(1.03);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 20px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.custom-hover-card:hover .card-img {
  filter: brightness(50%);
  transition: filter 0.3s ease;
}

.custom-hover-card .card-img-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-hover-card:hover .card-img-overlay {
  opacity: 1;
}
.digital-card {
  position: relative;
  background-color: #0d3b66;
  color: white;
  border-radius: 12px;
  height: 250px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.digital-card .card-front,
.digital-card .card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.digital-card .card-front {
  z-index: 2;
  background-color: #0d3b66;
}

.digital-card .card-back {
  z-index: 1;
  opacity: 0;
  background-color: #145da0;
}

.digital-card:hover .card-front {
  opacity: 0;
}

.digital-card:hover .card-back {
  opacity: 1;
}


.accordion-body{
    color: brown;
    font-weight: 500;
}
.counter {
  font-size: 3rem;
  font-weight: bold;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}




@media (min-width: 768px) {
  .hero-bg {
    min-height: 80vh;
  }
}