/* ======== EXIT BUTTON ======== */
#exitBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #00c896; /* szmaragdowy */
  color: #00c896;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1001; /* wyżej niż overlay */
}
#exitBtn:hover {
  background: #00c896;
  color: black;
}

/* ======== MODAL ======== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1002; /* wyżej niż overlay i przycisk */
}
.modal-content {
  background: #111;
  padding: 30px;
  border-radius: 10px;
  color: white;
  position: relative;
  min-width: 250px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: white;
}
.close:hover { color: #00c896; }


.contact-list {
  display: flex;
  flex-direction: column;
  align-items: center;   /* środek w poziomie */
  justify-content: center; /* środek w pionie */
  gap: 8px;              /* odstęp między liniami */
  line-height: 1.4;
}

.contact-list p {
  margin: 0;
  font-size: 16px;
  text-align: center;
}
.contact-list strong {
  color: #00c896; /* podkreślenie etykiet (email/ig) */
}
