/* Alapstílus */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Kártya stílus */
.profile-card {
  background: #fff;
  width: 90%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

/* .profile-card:hover {
  transform: translateY(-5px);
} */

/* Profilkép */
.profile-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #555;
  margin-bottom: 1rem;
}

/* Szövegek */
h2 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.5rem;
}

.title {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Közösségi ikonok */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-icons a {
  color: #444;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #007bff;
}

/* Gomb */
.contact-btn {
  background-color: #555;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; /* ne legyen aláhúzva */
}

.contact-btn:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}