
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #111;
    margin: 0;
    padding: 0;
}
header {
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px;
}
.logo {
    height: 50px;
    margin-right: 10px;
}
nav {
    background-color: #333;
    padding: 10px;
}
nav a {
    color: #fff;
    margin-right: 15px;
    text-decoration: none;
}
main {
    padding: 20px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.gallery figure {
    width: 300px;
    text-align: center;
}
.gallery img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
/* Animacja Dlaczego warto nas wybrać */
.why-us {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.why-us h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffcc00;
  animation: slideIn 1s ease-in-out;
}
.reasons {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.reasons li {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}
.reasons li:nth-child(1) { animation-delay: 0.2s; }
.reasons li:nth-child(2) { animation-delay: 0.4s; }
.reasons li:nth-child(3) { animation-delay: 0.6s; }
.reasons li:nth-child(4) { animation-delay: 0.8s; }
.reasons li:nth-child(5) { animation-delay: 1s; }

/* Animacje */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.contact {
  padding: 40px;
  background-color: #fefefe;
  animation: fadeIn 1s ease-in-out;
}

.contact h2 {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
  outline: none;
}

.contact-form button {
  padding: 12px;
  font-size: 18px;
  background-color: #ff0000;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #cc0000;
}

/* Animacja pojawiania się sekcji */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Ogólna animacja wejścia (dla każdej sekcji) */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

/* Dla lekkich animacji tekstów lub ikon */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideLeft 1s ease-out forwards;
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideRight 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.logo {
  width: 60px;
  height: auto;
  animation: pulseLogo 2s ease-in-out 1;
}

@keyframes pulseLogo {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
/* 🔧 RESPONSYWNOŚĆ – dopasowanie do telefonów */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 10px;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  nav a {
    margin: 5px 0;
    font-size: 16px;
  }

  main {
    padding: 10px;
  }

  .gallery figure {
    width: 100%;
  }

  .gallery img {
    border-radius: 5px;
  }

  form input,
  form textarea {
    width: 100%;
    font-size: 16px;
  }

  .hero-img {
    max-width: 100%;
    height: auto;
  }

  .reasons {
    padding-left: 20px;
  }

  .reasons li {
    font-size: 16px;
    line-height: 1.6;
  }
}
a[href*="facebook.com"] {
  font-weight: bold;
  color: #3b5998;
}
footer.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 10px;
  margin-top: 40px;
}

.partners {
  text-align: center;
  padding: 20px;
}

.partner-logos img {
  max-width: 150px;
  margin: 10px;
}
.footer-section {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
}

.partners {
  text-align: center;
  margin-bottom: 10px;
}

.partners h3 {
  color: #fff;
  margin-bottom: 10px;
}

.partner-logos img {
  max-width: 150px;
  margin: 10px;
}

footer.footer {
  text-align: center;
  font-size: 12px;
}
.map-section {
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
}

.map-section h2 {
  margin-bottom: 15px;
}

.map-container iframe {
  width: 100%;
  max-width: 1200px;
  height: 400px;
  border: none;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  height: 60px;
  width: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.cta-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cta {
  background-color: #e60000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta:hover {
  background-color: #cc0000;
}

.cta.secondary {
  background-color: #f4b400;
  color: #000;
}

.cta.secondary:hover {
  background-color: #e0a800;
}

.cta.whatsapp {
  background-color: #25d366;
  color: #fff;
}

.cta.whatsapp:hover {
  background-color: #1da851;
}


