/* Style dla sekcji kontaktowej - nowa wersja */
@import url('colors.css');

.contact-section {
  padding: 5rem 0;
  background-color: var(--color-background);
}

.contact-info {
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
  font-weight: 700;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.contact-info p i {
  color: var(--color-primary);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.contact-info h4 {
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem;
  color: var(--color-secondary);
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-secondary);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--color-primary);
  transform: translateY(-5px);
}

.contact-map {
  height: 100%;
  min-height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsywność */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 4rem 0;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .contact-info h3 {
    font-size: 1.6rem;
  }
  
  .contact-info p {
    font-size: 1rem;
  }
  
  .contact-map {
    min-height: 400px;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  
  .contact-info h4 {
    font-size: 1.2rem;
  }
  
  .social-links a {
    width: 36px;
    height: 36px;
  }
  
  .contact-map {
    min-height: 350px;
  }
}

@media (max-width: 575.98px) {
  .contact-info h3 {
    font-size: 1.3rem;
  }
  
  .contact-info p {
    font-size: 0.95rem;
  }
  
  .social-links a {
    width: 32px;
    height: 32px;
  }
  
  .contact-map {
    min-height: 300px;
  }
}
