@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

html, body {
  background-color: rgb(0, 0, 0);
    margin: 0;
    padding: 0;
  }

#main1{
    width: 100%;
    background-color: rgb(0, 0, 0);
    background-size: cover;
    background-position: center;
    
}

.scroll-down {
  text-align: center;
  margin-top: 40px;
  animation: pulseDown 1.5s infinite;
}

.scroll-down i {
  font-size: 28px;
  color: #8b001c;
  transition: transform 0.3s ease;
}

@keyframes pulseDown {
  0% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.7; }
}


@keyframes bgLiftIn {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes typingExitUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px);
  }
}

.bg-anim-finish {
  background: url('../assets/img/bg2.jpg') center center / cover no-repeat;
  animation: bgLiftIn 0.5s ease-out forwards;
}
#flash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}

.flash-sequence {
  animation: flashSequence 1s steps(1) forwards;
}


@keyframes flashSequence {
  0%   { background: url('../assets/img/flash1.jpg') center center / cover no-repeat; opacity: 1; transform: translate(0, 0); }
  10%  { background: url('../assets/img/flash2.jpg') center center / cover no-repeat; transform: translate(3px, -3px); }
  20%  { background: url('../assets/img/flash3.jpg') center center / cover no-repeat; transform: translate(-4px, 2px); }
  30%  { background: url('../assets/img/flash4.jpg') center center / cover no-repeat; transform: translate(5px, -2px); }
  40%  { background: url('../assets/img/flash5.jpg') center center / cover no-repeat; transform: translate(-5px, 4px); }
  50%  { background: url('../assets/img/flash6.jpg') center center / cover no-repeat; transform: translate(3px, -4px); }
  60%  { background: url('../assets/img/flash7.jpg') center center / cover no-repeat; transform: translate(-3px, 2px); }
  70%  { background: url('../assets/img/flash8.jpg') center center / cover no-repeat; transform: translate(2px, -2px); }
  80%  { background: url('../assets/img/flash9.jpg') center center / cover no-repeat; transform: translate(-1px, 1px); }
  90%  { background: url('../assets/img/flash10.jpg') center center / cover no-repeat; transform: translate(0, 0); }
  100% { background: #000; opacity: 0; transform: none; }
}


#tv-static {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 19998;
  width: 100%;
  height: 100%;
  background: url('../assets/img/static1.gif') center center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
  animation: staticOut 1.8s ease-out forwards;
}

@keyframes staticOut {
  0% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}


.typing-disappear {
  animation: typingExitUp 1s ease-in forwards;
}

  #hero-intro {
    min-height: 40vh;
    padding-top: 50px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
 text-align: center;
  }
  
#main-content {
    display: none;
  }
  


.navbar-container {
    background-color: #000;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    max-height: 40px;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
  }
  
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .nav-links li a:hover {
    color: #c40000;
  }
  
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 35px;
    height: 18px;
    cursor: pointer;
    z-index: 200;
    position: relative;
  }
  
  .menu-toggle span {
    display: none;

  }
  
  
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  
  /* Responsive nav */
  @media (max-width: 768px) {


    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 1px;
        transition: all 0.4s ease-in-out;
        transform-origin: center;
      }

    .nav-links {
        flex-direction: column;
        background: rgba(17, 17, 17, 0.7);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        padding-top: 80px;
        padding-left: 30px;
        padding-right: 30px;
        transition: left 0.4s ease-in-out;
        z-index: 99;
        box-shadow: inset 0 0 60px rgba(255, 0, 51, 0.15);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
      }
      
  
    .nav-links li {
      border-bottom: 1px solid #333;
      padding: 15px 0;
    }
  
    .nav-links.show {
      left: 0;
    }
  
    .menu-toggle {
      display: flex;
      z-index: 100;
    }
  }
  

  #main-content {
    display: none;
  }
  


  
  @keyframes typing {
    to {
      width: 20ch;
    }
  }
  
  @keyframes blink-caret {
    50% {
      border-color: transparent;
    }
  }
  

  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  #responsive-typing {
    font-family: 'Courier New', monospace;
    font-size: clamp(2rem, 6vw, 4rem);
    color: #fff;
    margin-top: 100px;
    text-align: center;
  }
  
  .cursor::after {
    content: "|";
    animation: blink-caret 0.8s step-end infinite;
  }
  
  @keyframes blink-caret {
    50% {
      opacity: 0;
    }
  }
  

  @keyframes revealMagic {
    0% {
      opacity: 0;
      transform: scale(0.95);
      filter: blur(8px);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      filter: blur(0);
    }
  }
  
  #main-content.reveal-animate {
    animation: revealMagic 1.4s ease-out forwards;
  }
  

  .main-intro {
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .intro-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
  }
  
  .intro-sub {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #ccc;
    margin-bottom: 30px;
  }
  
  .intro-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #ddd;
    line-height: 1.8;
    font-weight: 400;
  }

  .info-block {
    background-color: #000000;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
  }
  
  .info-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 60px rgba(255, 0, 51, 0.2);
  }
  
  .icon-space {
    height: 60px;
    margin-bottom: 20px;
    background: none;
  }

  .icon-space img{
    width: 80px;
  }
  
  .block-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
  }

  .block-subtitle{
    color: white;
  }

  .block-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
  }
  
  .block-list li {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #c40000;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #ff1a4d;
  }
  

  .hero-banner {
    background-color: #000000c8;
    padding: 80px 20px 40px;
    text-align: center;
    box-shadow: inset 0 0 60px rgba(184, 166, 166, 0.03), inset 0 0 20px rgba(109, 99, 99, 0.05);
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #c40000;
    margin-bottom: 10px;
  }
  
  .breadcrumb-nav {
    color: #aaa;
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .breadcrumb-nav {
    color: #aaa;
    font-size: 1rem;
  }
  
  .breadcrumb-nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
  }
  
  .breadcrumb-nav a:hover {
    color: #c40000;
    text-decoration: underline;
  }
  

 #poverenje {
    width: 100%;
    height: auto;
    background-image: url('../assets/img/try1.jpg');
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 50px;
 }

 .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 800;
  }
  
  .about-lead {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    color: #ddd;
    text-align: left;
    max-width: 800px;
    width: 50%;
    font-weight: 400;
  }
  

  @import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

.section-title {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: #fff;
  text-align: left;
  letter-spacing: 1px;
  position: relative;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 40px;
  padding-bottom: 10px;
}

.section-title.dramatic-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: #851111;
  border-radius: 10px;
  opacity: 0.6;
}

.longterm-message {
    background-color: #851111;
    color: #fff;
    padding: 20px 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 50%;

   
    box-shadow: 0 0 25px rgba(139, 3, 3, 0.2);
  }
  
  .longterm-message .icon {
    font-size: 1.8rem;
  }
  
  .longterm-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
  }
  
  @media (max-width: 800px) {
    .longterm-message {
      flex-direction: column;
  
      padding: 25px 20px;
      width: 100%;
    }

    .about-lead {
      width: 90%;
     padding: 5px;
      }
  
    .longterm-message .icon {
      font-size: 2rem;
    }
  
    .longterm-text {
      font-size: 1rem;
    }
    #poverenje {
    
        background-image: url('../assets/img/respp1.jpg');
        background-position: center;
       
     }
  }
  
  .fullwidth-section {
    background-color: #000;
    padding: 60px 20px;
  }
  
  .anton-heading {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    font-size: clamp(2rem, 6vw, 3.2rem);
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    font-weight: 800;
  }
  
  .section-divider {
    width: 60px;
    height: 4px;
    background-color: #9a001f;
    margin: 0 auto 25px;
    border-radius: 10px;
    opacity: 0.85;
  }
  
  .section-text {
    color: #ccc;
    font-size: clamp(1rem, 2.3vw, 1.2rem);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
  }
  

  .service-card {
    background-color: #111;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.05);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(255, 0, 51, 0.15);
  }
  
  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #c40000;
  }
  
  .service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .service-text {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
  }
  

  .site-footer {
    background-color: #000;
    padding: 60px 20px 30px;
    color: #ccc;
    border-top: 1px solid white;
  }
  
  .footer-logo {
    max-width: 100px;
    margin-bottom: 25px;
  }
  
  .footer-text {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: #aaa;
  }
  
  .footer-divider {
    width: 60px;
    height: 3px;
    background-color: #9a001f;
    margin: 25px auto 25px;
    border-radius: 5px;
    opacity: 0.8;
    
  }
  
  .footer-copy {
    font-size: 0.9rem;
    color: #666;
  }
  
  .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #c40000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
  }
  
  .icon-circle:hover {
    background-color: #ff1a4d;
    transform: scale(1.1);
  }
  

  .butonizer {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
  }
  
  #butonizer-toggle {
    width: 54px;
    height: 54px;
    background-color: #c40000;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.4);
    cursor: pointer;
    animation: pulse 1.6s infinite;
    transition: transform 0.3s ease;
  }
  
  #butonizer-toggle:hover {
    transform: scale(1.1);
  }
  
  .butonizer-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 70px;
    left: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;

  }

  .butonizer-options a{
    text-decoration: none;
  }
  
  .butonizer.active .butonizer-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .buton-circle {
    width: 44px;
    height: 44px;
    background-color: #111;
    color: #d40404;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .buton-circle:hover {
    background-color: #a50101;
    color: #fff;
    transform: scale(1.1);
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 0, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 51, 0); }
  }
  

  /*blog*/
  
.blog-section {
    padding: 40px;
    background: #000000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    width: 100%;
    margin-top: 30px;
    
  }
  
  /* .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #ff4d4d;
  } */
  
  /* Sad neka grid ide cele širine */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
  }
  
  .blog-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(255, 77, 77, 0.5);
  }
  
  .blog-card img {
    width: 100%;
  
    object-fit: cover;
  }
  
  .blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .blog-content h3 {
    margin: 0;
    font-size: 20px;
    color: #ff4d4d;
  }
  
  .meta {
    font-size: 14px;
    color: #aaa;
  }
  
  .blog-content p {
    font-size: 15px;
    color: #ccc;
    flex: 1;
  }
  
  .read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #ff4d4d;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    align-self: flex-start;
    transition: 0.3s;
  }
  
  .read-more:hover {
    background: #ff6666;
  }
  
  .blog-single {
    position: relative;
    padding: 50px 20px;
    background: rgba(44, 2, 2, 0.486); /* Pozadina koja će biti zamagljena */
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(178, 34, 34, 0.5);
    color: #ddd;
    text-align: left;
    margin-top: 60px;
    z-index: 1; /* Osigurava da tekst bude ispred pozadine */
  }
  
  .blog-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 2, 2, 0.637); /* Blaga pozadina sa opacitetom */
    backdrop-filter: blur(10px); /* Zamagljena pozadina */
    border-radius: 15px; /* Isti border-radius kao i kod glavnog div-a */
    z-index: -1; /* Pozadina iza teksta */
  }
  
  
  .blog-podnaslov {
    padding-top: 20px;
    border-top: 1px solid white;
  }
  
  .blog-pitanje {
  padding: 10px;
  color: #fff;
  text-shadow:
          0 0 2px white,
          0 0 4px rgba(255, 255, 255, 0.6),
          0 0 8px rgba(255, 255, 255, 0.4);
  }
  
  .blog-quote {
    font-size: 25px;
    padding-left: 15px;
    border-left:2px solid white ;
  }
  
  .blog-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(178,34,34,0.7);
    margin-bottom: 10px;
  }
  
  .blog-meta {
    font-size: 1rem;
    color: #bbb;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #b22222;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  
  .blog-categories-tags {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
  }
  
  .category, .tag {
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
  }
  
  .category {
    background: #b22222;
    color: #fff;
  }
  
  .tag {
    background: rgba(178,34,34,0.2);
    color: #b22222;
    border: 1px solid #b22222;
  padding: 12px;
  }
  
  .blog-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
  }
  
  .blog-content p strong {
    color: #fff;
    font-weight: bold;
  }
  
  .blog-content p em {
    color: #b22222;
    font-style: normal;
  }
  
  @media (max-width: 768px) {
    .blog-title {
        font-size: 2.2rem;
    }
  
    .blog-meta {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
  
    .blog-categories-tags {
        justify-content: start;
  
    }
  
    .blog-content p {
        font-size: 1.1rem;
    }
  }


  .contact-page-section {
    background-color: #000;
    padding: 80px 20px;
  }
  
  .section-subtext,
  .form-intro {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .contact-info-box {
    background-color: #111;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.07);
    text-align: left;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
    font-size: 1rem;
  }
  
  .info-item i {
    color: #ff0033;
    font-size: 1.2rem;
    min-width: 20px;
  }
  
  .info-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .info-item a:hover {
    color: #ff0033;
  }
  
  .info-divider {
    height: 1px;
    background-color: #333;
    margin: 15px 0;
    width: 100%;
  }
  
  
  .form-divider {
    width: 80px;
    height: 3px;
    background-color: #9a001f;
    margin: 40px auto;
    border-radius: 10px;
    opacity: 0.8;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    background-color: #111;
    color: #fff;
    font-size: 1rem;
  }
  
  .contact-form textarea {
    resize: none;
  }
  
  .contact-form button {
    background-color: #ff0033;
    color: #fff;
    padding: 12px 20px;
    border: none;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #ff1a4d;
  }
  