/* boje koje mije lazar posalo : 6ABEA7 0094C6 */
* {
	 
	margin: 0;
  	padding: 0;
  	box-sizing: border-box;
  }

html, body {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden; 
  overflow-y: auto;
}

/* Optional: Add some padding to sections to account for fixed header */
.scrollspy {
  scroll-margin-top: 80px; /* Adjust based on your header height */
  padding-top: 20px;
}

nav{
	background-color:#1d1e37;
	/* new #1d1e37*/
	/*old 1c1c3b */
	height:64px;
	/*background-color: #676F54;*/
}
/* Dodaj ovo u tvoj style.css fajl */


#logo {
    height: 100%; /* Logo će zauzimati 80% visine navigacionog bara */
    width: auto; /* Širina će se automatski prilagoditi da održi proporcije */
    max-height: 64px; /* Maksimalna visina - možeš podesiti po potrebi */
    padding: 5px 0; /* Mali padding gore i dole za bolji izgled */
}

/* Responsive prilagodba za manje ekrane */
@media only screen and (max-width: 600px) {
    .nav-wrapper {
        height: 56px; /* Manja visina na mobilnim uređajima */
    }
    
    #logo {
        height: 70%; /* Možeš podesiti procente za mobilne */
    }
}
.page-footer{
	background-color:#1d1e37
	
}

#about_us{
	background-color: #063970;
	
}
#about_work{
	background-color: #ffffff;
}

#posteri{
	padding-top: calc(10px + 6vw);
}

#text_1{
	color:white;
	font-family: "Roboto Condensed", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: <weight>;
  	font-style: normal;
	font-size: calc(9px + 1vw); /* Počinje od 9px i raste sa ekranom */
}
#text_2{
	font-family: "Roboto Condensed", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: <weight>;
  	font-style: normal;
	font-size: calc(9px + 1vw);

}
#text_3{
	font-family: "Roboto Condensed", sans-serif;
  	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size:small;
}
#nav_text{
	font-family: "Roboto Condensed", sans-serif;
  	font-optical-sizing: auto;
	  font-weight: 500;
}

#naslov_1{
	color:white;
	font-family: "Roboto Condensed", sans-serif ;
	font-weight: bold;
}

#naslov_2{
	font-family: "Roboto Condensed", sans-serif ;
	font-weight: bold;

}


@media only screen and (min-width: 601px) {
	.carousel {
	  padding: 0 15px;
	}
	
	.carousel .carousel-item img {
	  max-height: 380px;
	}
  } /* Ovo je zagrada koja nedostaje */


/* Kartice o grupama*/

/* Dodajte ovaj CSS */
 .equal-height-cards {
	display: flex;
	flex-wrap: wrap;
  }
  
  .equal-height-cards .col {
	display: flex;
	flex-direction: column;
	padding: 0 15px; /* Dodaje prostor između kartica */
	margin-bottom: 30px; /* Razmak ispod kartica na mobilnim */
  }
  
  .card-wrapper {
	height: 100%;
	display: flex;
	flex-direction: column;
  }
  
  .card {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .card-image {
	flex-shrink: 0;
  }
  
  .card-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
  }
  
  .card-content {
	flex-grow: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
  }
  
  .text-container {
	flex-grow: 1;
	overflow-y: visible; /* Omogućava skrolovanje ako tekst ne stane */
	max-height: 200px; /* Ograničava visinu teksta */
	padding-right: 10px;
	}
  
  .textovi {
	text-align: justify;
	hyphens: auto;
	margin: 0;
	line-height: 1.6;
  }
  .row {
  overflow-y: visible !important;
}
  /* Responsive prilagodbe */
  @media only screen and (max-width: 992px) {
	.equal-height-cards .col {
	  flex: 0 0 100%;
	  max-width: 100%;
	}
	
	.text-container {
	  max-height: none; /* Uklanja ograničenje visine na mobilnim */
	}
  }
  
  .read-more-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
  }
  
  .expanded .text-container {
    max-height: none;
  }
  
  .expanded .text-container:after {
    display: none;
  }

/* Group Cards - Equal sized, clean design */
.group-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.group-title {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
  color: white;
  margin: 0;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.group-card .card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.group-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.group-card .card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.group-description {
  color: #333;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  text-align: justify;
  flex-grow: 1;
}

/* Ensure equal height for all cards in a row */
.row .col {
  display: flex;
  flex-direction: column;
}

.row .col .group-card {
  height: 100%;
  min-height: 500px; /* Set minimum height for all cards */
}

/* Force equal heights for all cards in a row */
.row {
  display: flex;
  flex-wrap: wrap;
}

.row .col {
  display: flex;
  flex-direction: column;
}

.row .col .group-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Responsive adjustments */
@media only screen and (max-width: 600px) {
  .group-title {
    font-size: 1.2rem;
    padding: 15px;
  }
  
  .group-card .card-image {
    height: 180px;
  }
  
  .group-card .card-content {
    padding: 15px;
  }
  
  .group-description {
    font-size: 0.9rem;
  }
}

#bullet_point{
	font-size: 0.7em;
	vertical-align: middle;
	margin-right: 4px;
  }



  @media only screen and (min-width: 992px) {
	.order-l1 { order: 1; }
	.order-l2 { order: 2; }
  }


  @media only screen and (max-width: 992px) {
	.push-l5, .pull-l7 {
		position: static;
		left: auto;
		right: auto;
	}
	
	.valign-wrapper {
		height: auto !important;
		margin-bottom: 20px;
	}
	
	#text_2 {
		margin-top: 20px;
	}
}

#start_dugme{
	background-color: rgba(29, 30, 55, 0.9);
	border: 2px solid white;
	border-radius: 8px;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 12px 40px;
	margin-top: 30px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	display: inline-block;
	min-width: 250px;
	text-align: center;
}

#start_dugme:hover{
	background-color: rgba(29, 30, 55, 1);
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}
/* Karusel stilovi */
#posteri {
    padding-top: 0;
    height: 100%;
}
/* Karusel stilovi */
#posteri {
	margin-top: 20px;
  }
  
  .carousel {
	height: 400px; /* Fiksna visina za desktop */
	overflow: hidden;
  }
  
  .carousel .carousel-item {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .carousel .carousel-item img {
	max-height: 100%;
	width: auto;
	max-width: 100%;
	object-fit: contain;
  }
  
  /* Responzivni stilovi */
  @media only screen and (max-width: 600px) {
	.carousel {
	  height: 250px; /* Manja visina na mobilnim */
	  margin: 0 auto;
	  width: 90%;
	}
	
	#posteri {
	  order: 2; /* Karusel ide posle liste na mobilnim */
	}
	
	.col.l7.s12 {
	  order: 1; /* Lista ide pre karusela na mobilnim */
	}
  }
  
  @media only screen and (min-width: 601px) {
	.carousel {
	  padding: 0 15px;
	}
	
	.carousel .carousel-item img {
	  max-height: 380px;
	} 

/*gallery style*/




#gallery{
	
	padding-top: 100px;
}

#gallery_section{
	background-color: #063970;
}
#gallery_text{
	color: white;
	font-family: "Roboto Condensed", sans-serif ;
	font-weight: 500;

}

#gal_button{
	background-color: rgba(255, 255, 255, 0.2);
	border: 2px solid white;
	border-radius: 5px;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0 30px;
	margin-top: 60px;
	backdrop-filter: blur(5px);
	transition: all 0.3s ease;
}

#dugme
{
	padding-top: 50px;
	align-items: center;
  justify-content: center;
}

.parallax-container {
	height:450px;
  }

/*preloader*/
/* Preloader styles */
.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #063970;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  
  .loader img {
	width: 150px;
	height: auto;
	animation: pulse 1.5s infinite;
  }
  
  .loader.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
  }
  
  @keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.1); }
	100% { transform: scale(1); }
  }



/*SVG items*/
  .kontakt-lista {
    list-style-type: none;
    padding-left: 0;
  }
  
  .kontakt-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .kontakt-item svg {
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .kontakt-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .kontakt-item a:hover {
    color: #1e88e5;
    text-decoration: underline;
  }
  
 .footer-links li, .social-links li {
    padding: 5px 0;
  }
  
  .hover-accent {
    transition: color 0.3s ease;
  }
  
  .hover-accent:hover {
    color: #ff6b6b !important;
    text-decoration: none;
  }
  
  @media only screen and (max-width: 992px) {
    .footer-links, .social-links {
      margin-top: 20px;
    }


	.kontakt-lista {
  padding-left: 0;
}

.kontakt-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.kontakt-item svg {
  margin-right: 10px;
  flex-shrink: 0;
}

.kontakt-item p {
  margin: 0;
}

@media only screen and (max-width: 600px) {
  .kontakt-lista {
    flex-direction: column;
    align-items: flex-start;
  }
  .kontakt-item {
    margin-bottom: 10px;
  }
}






/*Fix za sidescrool*/
#team_info2 .container {
  overflow-x: hidden;
}