/* Reset i osnovni stilovi */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        p {
            padding-bottom: 20px;
        }

        h2 {
            padding: 20px 0px;
        }

        .video-background {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            z-index: -1; /* Ostaje iza sadržaja */
        }

        .video-background video {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            object-fit: cover;
            z-index:-1;
        }

        .video-overlay {
            position: absolute;
            top: 0!important;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3); /* Tamni overlay za bolju čitljivost teksta */
        }

        /* Header i navigacija */
        header {
            background-color: rgba(255, 255, 255, 0.3);
            position: fixed;
            top: 0;
            width: 100%;
            margin: auto;
            z-index: 100;
        }

        header:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative; /* Osigurava da header ostane iznad */
            z-index: 10;
            background-color: transparent; /* Možete dodati rgba boju sa providnošću */
        }

        .glavno_telo {
            width: 100%;
            background-color: #ffffff;
        }


        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
       
        /* Mobilni meni */
        .menu-toggle {
            display: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        .hamburger {
            width: 25px;
            height: 3px;
            background-color: rgb(255, 0, 55);
            margin: 5px 0;
            transition: 0.4s;
        }
        
        /* Navigacija */
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            font-size: 20px;
            color: rgb(9, 30, 100);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #3498db;
        }

        /* Dropdown meni - desktop verzija */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            padding-left: 10px;
            background-color: #ffffff;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        /* Dropdown linkovi */
        .dropdown-menu li {
            padding: 0;
            margin: 0;
        }

        /* Hero sekcija preko video pozadine */
        .hero-section {
            position: absolute;
            top: 300px;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
            z-index: 10; /* Iznad video overlay-a */
            margin-top: -80px; /* Kompenzacija za header visinu */
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 15;
        }

        .hero-section h1 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
            animation: fadeInDown 1s ease-out;
        }

        .subtitle {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            animation: fadeIn 1.5s ease-out;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            width: 200px;
            background-color: #ff6b6b;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out;
        }

        .cta-button:hover {
            background-color: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Animacije */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsivni prilagodbe */
        @media (max-width: 768px) {
            .hero-section {
                top:150px;
                height: 90vh;
                margin-top: -60px;
            }
            
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-section h1 {
                font-size: 1.1rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .cta-button {
                padding: 10px 25px;
                margin-top: 10px;
            }
        }

        /* Glavni sadržaj */
        .logos-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 70px;
            padding: 40px;
            margin: 20px auto;         /* Centriranje kontejnera */
            max-width: 800px;          /* Maksimalna širina */
        }

        .logo2 {
            max-width: 250px;
            height: auto;
            transition: transform 0.3s ease;
        }

        .logo2:hover {
            transform: scale(1.05);    /* Blago uvećanje pri hoveru */
            filter: drop-shadow(0 0 8px rgba(0,0,0,0.2));  /* Senka */
        }

        main {
            padding: 2rem 0;
            background-color: #ffffff;
        }
        
        section {
            margin-bottom: 2rem;
            padding: 1rem;
        }

        .centar {
            text-align: center;
            margin-bottom: 20px;
        }
        
        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 1.5rem 0;
        }
        
        /* Responsivni dizajn */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #ffffff;
                clip-path: circle(0px at 90% -10%);
                transition: clip-path 0.5s ease-in-out;
            }
            
            nav.active {
                clip-path: circle(1000px at 90% -10%);
            }
            
            nav ul {
                flex-direction: column;
                padding: 1rem 0;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
                padding: 0.8rem 0;
            }
            
            nav ul li a {
                display: block;
                padding: 0.5rem;
            }
            
            /* Hamburger animacija */
            .menu-toggle.active .hamburger:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .menu-toggle.active .hamburger:nth-child(2) {
                opacity: 0;
            }
            
            .menu-toggle.active .hamburger:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

.custom-translate-container {
    margin-top: 30px;
}
/* Stilizacija dropdown dugmeta */
.goog-te-menu-value {
  border: 1px solid #ddd !important;
  padding: 8px 15px !important;
  border-radius: 4px !important;
  background: white !important;
  cursor: pointer;
  display: inline-block;
}

.goog-te-menu-value span {
  color: #333 !important;
  font-size: 14px !important;
}

.goog-te-menu-value span[style*="border-right"] {
  display: none !important;
}

/* Stilizacija padajućeg menija */
.goog-te-menu2 {
  border: none !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  border-radius: 4px !important;
}

.goog-te-menu2-item div {
  padding: 8px 20px !important;
}

/* Sekcija pune širine ekrana */

.full-width-escape {
  width: 100vw;
  margin-left: calc(-50vw + 49%);
  background: #f0f0f0;
  overflow-x: hidden; /* Sprečava horizontalni scroll */
}

.full-width-escape img {
  display: block; /* Uklanja inline spacing */
  width: 100%;
  max-width: 100%;
}

.full-width-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Paralax na naslovnoj strani */

.parallax-section {
  position: relative;
  height: 100vh; /* Visina ekrana */
  width: 100vw;
  margin-left: calc(-50vw + 49%);
  overflow: hidden;
}

.parallax-background {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 120%; /* Dodatnih 20% za paralaks efekat */
  background-image: url('slike/poruke.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Ključno za paralaks */
  z-index: -1;
  
  /* Filter za smanjenje intenziteta slike */
  filter: brightness(0.8);
}

.content-container {
  max-width: 800px; /* Uži kontejner */
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.85); /* Prozirna bela pozadina */
  border-radius: 10px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

