header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

header img {
  width: 80px;
  height: auto;
}

header h1 {
  font-size: 2.5rem;
  color: #8B0040;
  margin: 0;
}

header p {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #333;
}


nav a {
  text-decoration: none;
  color: white;
  background-color: #cc0000;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

nav a:hover {
  background-color: #700000;
  transform: translateY(-2px);
}

section {
  background-color: #ffffff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

section h3 {
  color: #cc0000;
  margin-bottom: 0.5rem;
}

.kartica {
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kartica:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

#onas {
  background-color: #fef5f7;  /* soft pinkish background for contrast */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 2rem;
}