*{
  box-sizing:border-box;
  margin: 0;
  padding: 0;
}
										/* Telo strani */
body {
  background-color: rgba(0, 255, 0, 0.15);
  padding-bottom: 60px;
}

h1 {
  margin: 20px 0;
  color: darkgreen;
  text-align: center;
  font-family: Arial;
  font-size: 400%;
}

h2 {
  font-size: 250%;
  text-indent: 60px;
  margin: 25px 100px 0 100px;
}

h3 {
  color: darkgreen;
}
h4{
  font-size: 12px;
  text-align: center;
  margin: 0px auto;
}

p {
  color: darkgreen;
  font-family: Verdana;
  font-size: 22px;
  margin: 10px 100px 10px 60px;
}

aside {
  display: block;
}

										/* Posebni razredi */
.povdarjen_odstavek {
  color: rgba(100, 200, 50, 1);
  font-size: 23px;
}

.levo_odstavek {
  float: left;
  max-width: 80%;
  margin-left: 100px;
}
.levo_odstavek h2{
  font-size: 250%;
  text-indent: 0px;	
  margin-left: 0px;
}

.odstavek_sredina{
  text-align: center;
}

										/* Slike */
.cipresa, .cipresa1 {
  
  display: block;
  margin: 0 auto;
  max-width: 40%;
  height: auto;
  border-radius: 15px;
  border: 5px solid rgb(0, 60, 0);

}

.slika_desno {
  float: right;
  max-width: 30%;
  height: auto;
  margin: 10px;
  border-radius: 15px;
  border: 5px solid rgb(0, 60, 0);
}

									/* Tabela */
table {
  float: left;
  border-collapse: collapse;
  width: 50%;
  margin: 40px;
  padding-bottom: 60px;
  font-family: Arial;
}

th, td {
  border: 1px solid #333;
  padding: 8px 12px;
  text-align: left;
}

th {
  font-weight: bold;
}

										/* Linki */
a:link {
  color: darkgreen;
}

a:visited {
  color: rgba(0, 200, 50, 1);
}

a:hover, a:active {
  background-color: green;
  color: white;
  border-radius: 10px;
}

a.activno {
  background-color: darkgreen !important;
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
}

										/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 10px 0px;
  background: rgba(8, 242, 49, 0.4);
  font-size: 25px;
  color: white;
  box-sizing: border-box;
  box-shadow: 0px 15px 16px rgba(0,0,0,0.2)
}
header nav a {
  display: inline-block;
  background-color: rgb(17, 183, 36)!important;
  color: white!important;
  text-decoration: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  font-weight: bold;
}

header nav a:hover {
  background-color: rgb(74, 202, 67)!important;
}

header nav a:visited {
  background-color: rgb(20, 90, 50);
}

									/* Footer */
footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgb(20, 90, 50);
  color: white;
  text-align: center;
  padding: 10px 0;
  display: flex; 
  justify-content: space-between;   
  align-items: center; 
}
.na_vrh {
  color: white!important;
  padding: 0px 5px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 12px;
  transition: background 0.3s;
  background-color: rgba(255, 255, 255, 0.1);
}

.na_vrh:hover {
	background-color: rgba(255, 255, 255, 0.3);
  
}

										/* Sekcija #onas */
#onas {
  position: relative;
  height: 85vh;
  margin: 0;
}

#onas {
  position: relative;
}

#onas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('slike/4.jpg');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(to bottom, transparent 5%, black 90%);
  mask-image: linear-gradient(to bottom, transparent 5%, black 90%);
  z-index: -1;
}

#onas h1,
#onas h2,
#onas p {
  position: relative;
  margin: 0 20px;
}
#onas h1 {
  margin-top: 10px;
}

#onas h2 {
  text-align: center;
}

#onas p {
  text-align: center;

}

#onas p.signature {
  text-align: right;
}
										/* Galerija */
.galerija {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.galerija img {
  width: 100%;
  max-width: 250px;
  border-radius: 5px;
  object-fit: contain;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.galerija img:hover {
  transform: scale(1.05);
}
@media (max-width: 1100px) {
  h1 {
    font-size: 220%;
    text-align: center;
  }
  h2 {
    font-size: 160%;
    margin: 15px 20px 0 20px;
    text-indent: 20px;
  }
  p {
    font-size: 10px;
    margin: 10px 20px;
  }
  #onas h1 {
  margin-top: 10px;
}

#onas h2 {
  text-align: center;
  font-size: 20px;
}

#onas p {
  text-align: center;
  font-size: 15px;
}

#onas p.signature {
  text-align: right;
}
  .povdarjen_odstavek {
    color: rgba(100, 200, 50, 1);
    font-size: 14px;
  }
  .odstavek_sredina{
    text-align: center;
  }
  .levo_odstavek {
  float: left;
  max-width: 65%;
  margin-left: 20px;
  font-size: 12px;
}
  .levo_odstavek h2{
  margin-left: 0px;
  font-size: 20px; 
  }
  p[style="color:Darkgreen; font-size:30px"] {
    font-size: 15px!important;
  }
  .cipresa_naslov{ 
    font-size: 300%!important;
  }
  .cipresa, .cipresa1 {
    max-width: 80%;
    display: block;
    margin: 10px auto;
	border: 3px solid rgb(0, 60, 0);
  }
  .slika_desno {
    float: none;
    display: block;
    margin: 10px auto;
    max-width: 80%;
  }
header {
  width: 100%;
  padding: 5px;
  background: rgba(8, 242, 49, 0.4);
  font-size: 25px;
  color: white;
  box-sizing: border-box;
}
  header nav a {
    font-size: 60%;
    display: block;
    width: 90%;
    margin: 5px auto;
	text-align: center;
  }
  table {
    width: 100%;
    float: none;
    margin: 20px 20px 80px 20px ;
    font-size: 14px;
  }
  th, td {
    padding: 6px 8px;
  }
.meni_gumb {
  font-family: Times New Roman;
  background-color: rgb(17, 183, 36);
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  color: white;
  padding: 12px 16px;
  margin: 0px 5px;
  font-size: 16px;
  font-weight:bold;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.meni .meni_del {
  display: none;
  position: absolute;
  left: 0; 
  top: 100%;
  background-color: rgb(249, 249, 249);
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.4);
  background: rgba(8, 242, 49, 0.4);
}

.meni .meni_del a {
  color: rgb(0, 0, 0);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.meni .meni_del a:hover {
  background-color: rgb(74, 202, 67);
}

.meni:hover .meni_del {
  display: block;
}

.meni:hover .meni_gumb {
  background-color: rgb(74, 202, 67);
  border-radius: 10px;
}
}
@media (min-width: 1101px){
  header{}
 .meni_gumb {
    display: none;
  }
}
