/* ==== Kontaktne kartice ==== */
.kontakt-kartice {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.kartica {
  background: #ffdac1;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  font-family: 'Comic Neue', cursive;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.kartica a {
  text-decoration: none;
  color: #333;
}

.kartica:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.2);
  background: #ffb6b3;
}

/* ==== Kontaktni obrazec ==== */
.kontakt-forma {
  max-width: 500px;
  margin: 30px auto;
  padding: 25px;
  background: #fff8f0;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  border: 2px dashed #ffdac1;
}

.kontakt-forma form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kontakt-forma label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #ff6f61;
  font-size: 1rem;
}

.kontakt-forma input,
.kontakt-forma textarea {
  padding: 12px;
  border-radius: 15px;
  border: 2px solid #ffdac1;
  font-family: 'Comic Neue', cursive;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  background: #fffbea;
}

.kontakt-forma input:focus,
.kontakt-forma textarea:focus {
  outline: none;
  border-color: #ff9aa2;
  box-shadow: 0 0 6px rgba(255,154,162,0.5);
}

.kontakt-forma button {
  background: linear-gradient(90deg, #ff9aa2, #ffdac1);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 25px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Comic Neue', cursive;
}

.kontakt-forma button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  background: linear-gradient(90deg, #ff6f61, #ffb6b3);
}

.kontakt-opis {
  text-align: center;
  font-size: 1rem;
  font-weight: normal;
  margin-top: 10px;
  max-width: 400px; /* krajša širina za lepšo postavitev */
  margin-left: auto;
  margin-right: auto;
}


/* ==== Responsive ==== */
@media (max-width: 768px) {
  .kontakt-kartice {
    flex-direction: column;
    align-items: center;
  }

  .kartica {
    width: 80%;
    text-align: center;
  }

  .kontakt-forma {
    padding: 20px;
  }

  .kontakt-forma input,
  .kontakt-forma textarea,
  .kontakt-forma button {
    font-size: 1rem;
  }
}
