/* Page-specific styles: Kontakt */

.page-kontakt main {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f7f7f7 0%, #eeeeee 100%);
  min-height: 60vh;
}

.contact-card {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 32px;
}

.contact-card h1 {
  text-align: center;
  margin: 0 0 6px 0;
  color: #333;
}

.contact-lead {
  text-align: center;
  margin: 0 0 24px 0;
  color: #666;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.detail {
  background: #fafafa;
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 4px solid #F8B24D;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.label {
  font-weight: 700;
  color: #F8B24D;
}

.label.sep { margin-left: 12px; }

.value, .detail a.value {
  color: #333;
  text-decoration: none;
  word-break: break-word;
}

.detail a.value:hover { text-decoration: underline; }

/* Social icons */
.socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 10px;
}

.social {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  /* było: background: #fff;  -> usuń białe tło, żeby SVG wypełniło całe koło */
  background: transparent;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}

.social:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,0.12); }

/* Facebook: pełne niebieskie koło + białe "f" */
.social.fb { background: transparent; }      /* bez niebieskiego tła z CSS */
.social svg { width: 100%; height: 100%; display: block; }  /* 100% (nie 80%) */

/* Instagram: SVG zawiera gradient i kamerę — nie potrzebujemy starej “circular-image” */
.social.ig { background: none; }
/* remove old rule if present */
/* .social.ig .circular-image { display: none; } */

/* Mobile */
@media (max-width: 600px) {
  .contact-card { padding: 24px 18px; border-radius: 12px; }
  .detail { padding: 12px 12px; }
}