/* --- BODY --- */
body {
  background-color: #E6F6E9; /* svetla, prijazna zelena */
  font-family: 'Montserrat', sans-serif;
  padding: 0;
  margin: 0;
  color: #1F3A2E; /* temnejša zelena za kontrast */
}

/* --- NAVBAR --- */
.navbar {
  width: 100%;
  background: #7DD28D; /* svetla zelena, prijazna */
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-radius: 0 0 12px 12px;
}

.nav-logo {
  font-size: 28px;
  font-weight: bold;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  padding-right: 80px;
}

.nav-links li a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.nav-links li a:hover {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	
}

/* --- CONTENT BOX --- */
.content-box {
  padding: 50px 60px;
  max-width: 900px;
  margin: auto;
}

/* --- HEADINGS --- */
h1 {
  color: #5FC27B; /* svetla, prijazna zelena */
  font-size: 50px;
  margin-bottom: 30px;
}

h2 {
  font-size: 36px;
  font-weight: bold;
  color: #6FD88E; /* svetla zelena, malo kontrast */
  margin-bottom: 15px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 25px;
}

/* --- SECTIONS --- */
section {
  margin-bottom: 50px;
  padding-top: 10px;
  background: #FFFFFF; /* bela za kontrast, čista */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}

section:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* --- BUTTONS --- */
button {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 28px;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: #7DD28D; /* svetla zelena */
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px) scale(1.05);
  background: #6FC17D; /* malce temnejša zelena za hover */
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

button:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* --- DODATNO: link style --- */
a {
  color: #5FC27B;
  text-decoration: none;
  transition: 0.25s ease;
}

a:hover {
  text-decoration: underline;
  color: #6FD88E;
}
