body
{ font-size: 20px;
	font-family: 'Arial', sans-serif;
	font-weight:normal;
	text-decoration: none}
	
.glava 
 {height:100vh;
 background-image: linear-gradient(rgba(0,0,0,0.4)),url(vrt1.jpg);
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;}
 
 nav
	{display: flex;
	align-items: center;
	padding:0px 30px;
	background-color:white;
	justify-content: space-between;
	height:70px;
	box-shadow: 0 20px 20px rgba(0,0,0,0.5)}
	
 ul
  {list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: white;
  display: flex; 
  height: 70px;
  align-items: center;
  gap: 20px}

.meni ul li a 
	{text-decoration: none;
	cursor: pointer;
	font-weight: bold;
	font-size: 22px;
	color:black;
	padding:17px;
	font-family: 'Georgia', sans-serif;
	font-weight: bold;}	
	
.meni ul li a:hover
    {background:#00b359;
	color: white;
	border-radius: 5px;}

.logo
    {height: 50px}
	
.tekst1
{color: white;
	position: absolute;
	top: 32%;
	left: 8%;
	text-align: left;}
	
.tekst1 h1
 {font-size: 94px;
	margin: 0;
	font-family: 'Helvetica', sans-serif;}

.tekst1 p 
{margin: 45px 0px;
	font-family: 'Helvetica', sans-serif;
	font-size: 27px;
	font-weight:}

.gumb {
  background-color: #00b359;
  color: white;
  padding: 13px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Arial', serif;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);}
  
.gumb:hover
{transform: scale(1.05);}

.poglavje1 h2
    {display: block;
    margin: 0 auto 70px ;
    width: 480px;
    border-bottom: 7px solid #00b359;
    padding:7px 0;
	font-size: 40px;
	font-family: 'Georgia', sans-serif;
	font-weight: bold;}
	
.poglavje1
{background-color:#F2FFF2;
    padding: 85px 0;
    text-align: center;}
	
.okvir1 
{display: flex;            
    justify-content: center; 
    gap: 50px;                
    flex-wrap: wrap;}
	
.poglavje1 article 
    {width: 380px;
    height: 550px;
    position: relative;       
    background-size: cover;    
    background-position: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4); 
    border-radius: 10px;       
    overflow: hidden;}
 
.poglavje1 article .okvir2
 {background: rgba(255, 255, 255, 0.95);
    position: absolute;      
    bottom: 0;                
    left: 0;
    width: 100%;             
    height: 50%;              
    padding: 30px;
    box-sizing: border-box;  
    display: flex;
    flex-direction: column;
    justify-content: center;
	transition: transform 0.1s, box-shadow 0.1s;}

.poglavje1 article:hover 
{transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);}
	
article h3 
{border-bottom: 3px solid #00b359;
margin-bottom: 15px;
    padding-bottom: 10px}
	
.link 
{border: 2px solid ;
    color: #00b359;
    padding: 15px 10px;
    border-radius: 8px;
	font-size: 15px;
	font-family: 'Helvetica', sans-serif;
	font-weight: bold;
	text-decoration: none}
	
.link:hover 
{background-color:#00b359;
    color:white}


.poglavje2 
{ padding: 85px 0;
    text-align: center;}
	
.poglavje2 h2
{text-align: center;
    margin: 0 auto 70px ;
    width: 650px;
    border-bottom: 7px solid #00b359;
    padding:7px 0;
	font-size: 40px;
	font-family: 'Georgia', sans-serif;
	font-weight: bold;}
	
.ikone ul 
{list-style: none;
  display: flex;
  justify-content: center; 
  gap: 110px; 
  padding: 0;
  margin: 150px 0 0;
   width: 100%;
  overflow: visible; }

.ikone i 
{font-size: 130px;
  color:#00b359;
  margin-bottom: 10px;
  transition: transform 0.1s ease, color 0.1s ease;}

.ikone li:hover i 
{transform: scale(1.2);}

.ikone h3 
{font-family: 'Helvetica', sans-serif;
  font-size: 25px;
  margin-top: 10px;
  margin-bottom:70px;
  color: black;}	
  

footer 
{padding: 40px 0;
    background-color: #f8fafa;}




@media (max-width: 768px) {

  body {
    font-size: 16px;
	width:100%;
	max-width: 100%;
    overflow-x: hidden;
 margin: 0;
  padding: 0;
  }

  nav {
    flex-direction: column;   
    height: auto;
    padding: 10px 10px;
    gap: 8px;
  }

  ul {
    flex-direction: row;      
    justify-content: center;  
    flex-wrap: wrap;          
    gap: 3px;
    height: auto;
    padding: 0;
  }

  .meni ul li a {
    font-size: 16px;            
	display: inline-block;
  padding: 10px 12px;
  }

  .logo
    {height: 35px}

  .glava {
    height: auto;
    min-height: 90vh;
    background-position: center;
  }

  .tekst1 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-top: 110px;
    text-align: center;
    padding: 0 20px;
  }

  .tekst1 h1 {
    font-size: 42px;
  }

  .tekst1 p {
    font-size: 18px;
    margin: 30px 0px;
  }

  .gumb {
    padding: 10px 20px;
    font-size: 18px;
  }

.poglavje1,
.poglavje2 {
    margin: 0 ;
    padding-top: 50px;
    padding-bottom: 50px;
}

  .poglavje1 h2 {
    width: 93%;
    font-size: 24px;
	margin-bottom: 40px;
  }

  .okvir1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
  }

  .poglavje1 article {
    width: 85%;
    height: auto;
    min-height: 420px; 
	min-width: 250px;
  }

  .poglavje1 article .okvir2 {
    height: auto;
    padding: 15px;
 display: flex;
  justify-content: center;
  gap: 3px;
  flex-wrap: wrap;
  width:100%;

  }


  .poglavje2 h2 {
    width: 93%;
    font-size: 24px;
	margin-bottom: 40px;
  }

  .ikone ul {
    flex-direction: row;   
    justify-content: center;
    gap: 40px;
    margin-top: 5px;
    padding: 0 5px;
    flex-wrap: wrap;    
  }

  .ikone i {
    font-size: 70px;     
  }

  .ikone h3 {
    font-size: 18px;
    margin-bottom: 0px;
}}
  

 
