/* --- Karta profilov s jednoduchým dvojfarebným gradientom --- */
.profile-card {
  display: flex;
  align-items: center;
  background-color: #e29930; /* desktop verzia */
  padding: 20px;
  border-radius: 12px;
  max-width: 700px;
  margin: 20px auto;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* --- Obrázok --- */
.profile-card img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-right: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.profile-card img:hover {
  transform: scale(1.05);
}

/* --- Informácie o profile --- */
.profile-info h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff; /* text biely */
}

.profile-info p {
  margin: 0;
  font-size: 1.1rem;
  color: #fff; /* text biely */
  line-height: 1.5;
}

/* --- Instagram ikona --- */
.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(1.2);
}

.social-icons img {
  width: 35px;  /* desktop verzia */
  height: 35px;
  border-radius: 0; /* žiadny kruh */
}

/* --- Responzívne pre mobil --- */
@media (max-width: 600px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    background-color: #edad51; /* jednofarebné pozadie */
  }
  .profile-card img {
    margin: 0 0 15px 0;
    width: 120px;
    height: 120px;
  }
  .social-icons {
    justify-content: center;
  }
  .social-icons img {
    width: 25px; /* menšia ikonka */
    height: 25px;
  }
  .profile-info h2,
  .profile-info p {
    color: #fff; /* text biely */
  }
}
