/* Celá stránka jako vizitka uprostřed */
body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: #f4f5f7;
  margin: 0;
  padding: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 100vh;
}

/* Bílá karta – vizitka */
.container {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 18px;
  box-shadow: 0px 8px 26px rgba(0, 0, 0, 0.12);
  max-width: 650px;
}

/* Nadpisy */
h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}

/* Sekce */
h2 {
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.profile-photo {
  max-width: 200px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}


/* Kontakt */
.contact p {

  font-size: 1.4rem;
}

.contact p a {
  text-decoration: none;
  color: #0066cc;
}

.contact p a:hover {
  text-decoration: underline;
}

/* Sociální ikony */
.social-links a {
  color: #444;
  margin-right: 15px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #007bff;
  transform: scale(1.2);
}


/* Seznam služeb */
.list-group-item {
  border: none;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.15rem;
  margin-bottom: 0rem;
  color: #333;
}

.footer {
  color: #888;
  margin-top: 2rem;
}

/* Na mobilu lehce zvětšíme mezery */
@media (max-width: 600px) {
  .container {
    padding: 2rem;
  }
}
