/* Podstawowy styl nagłówka */
h1 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: black;
  margin-bottom: 20px;
  position: relative;
}

/* Sekcja Kontakt */
.contact-section {
  padding: 40px 20px;
  text-align: center;
}

.contact-text {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

/* Pasek pod nagłówkiem galerii */
.contact-text::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #c0b39a;
  margin: 8px auto 0;
  border-radius: 5px;
}

/* Kontener na dane kontaktowe */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Pojedyncza kategoria kontaktowa */
.contact-item {
  background-color: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.contact-item h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 18px;
  color: #1a73e8;
}

/* Styl dla tekstu, który wygląda jak link, ale nie jest linkiem */
.contact-highlight {
  color: #1a73e8;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}

.contact-highlight:hover {
  color: #0a53c1;
  text-decoration: underline;
}

/* Responsywność */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    width: 100%;
    max-width: 500px;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  /* Zmniejszenie czcionki w tekstach na małych ekranach */
  .contact-text {
    font-size: 16px;
  }

  .contact-item h2 {
    font-size: 22px;
  }

  .contact-item p {
    font-size: 16px;
  }
}
