.contact-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  color: #007b8f;
  margin-bottom: 20px;
  border-bottom: 2px solid #007b8f;
  display: inline-block;
  padding-bottom: 6px;
}

.contact-card {
  display: flex;
  flex-direction: column; /* kolona na mobilnom */
  gap: 15px;
  align-items: center;
  margin: 20px 0;
}

.contact-item {
  background-color: #000; /* crni box */
  color: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  width: 80%;
  max-width: 350px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.25s;
}

.contact-item img {
  width: 32px;
  height: 32px;
}

.contact-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.contact-item:hover {
  background-color: #007b8f; /* promjena boje na hover */
}


#email{
  margin:0 auto;
}

/* Desktop prikaz */
@media(min-width: 769px) {
  .contact-card {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
