/* Reset stilova */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: black;
  background-color: white;
  line-height: 1.6;
}

header {
  background-color: black;
  padding: 15px 0;
  text-align: center;
}

header .logo {
  color: white;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* HERO sekcija – SAMO ONA JE ZELENA */
.hero {
  background-color: #77b900; /* Zelena boja sa slike */
  color: black;
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 5px;
}

/* Glavni sadržaj */
.content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
}

.content ul {
  list-style: disc;
  margin-left: 20px;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background-color: black;
  color: white;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  min-width: 250px;
}

.project-card h3 {
  margin-bottom: 10px;
}

a {
  color: #0046ff;
}
