/* === Ogólne === */
body {
  background: #000; /* lepiej zawsze hexa */
  margin: 0;
  padding: 0;
  color: #e5e5e5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
}

/* === Sekcje wspólne === */
.lokalizacje,
.kontakt-box,
.uslugi-container,
.hero-text {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
  box-sizing: border-box; /* zawsze warto */
}

/* === Efekt scroll fade-in === */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Box kontaktowy === */
.kontakt-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
}

.kontakt-info,
.kontakt-formularz {
  flex: 1 1 480px;
  background-color: #1f2937;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.kontakt-info h2,
.kontakt-formularz h2 {
  color: #3b82f6;
  margin-bottom: 20px;
  text-align: center;
}

.kontakt-info p {
  margin: 15px 0;
  font-size: 1.1rem;
  text-align: center;
}

.kontakt-info a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.kontakt-info a:hover {
  text-decoration: underline;
  color: #3b82f6;
}

.kontakt-formularz > div {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 2rem;
}

/* === Sekcja lokalizacji === */
.lokalizacje h2 {
  text-align: center;
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 40px;
}

.lokalizacje-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  box-sizing: border-box;
}

.lokalizacja {
  flex: 1 1 480px;
  background-color: #1f2937;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  box-sizing: border-box;
}

.lokalizacja.visible {
  opacity: 1;
  transform: translateY(0);
}

.lokalizacja h3 {
  margin-bottom: 10px;
  color: #93c5fd;
}

.lokalizacja p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.lokalizacja iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
  margin-top: 15px;
}

/* === Responsywność === */
@media (max-width: 768px) {
  .kontakt-box {
    flex-direction: column;
  }

  .lokalizacja iframe {
    height: 200px;
  }
}

/* === Obrazek logo hero === */
.hero-logo {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.1s;
}

.hero-logo img {
  max-width: 320px;    /* większe logo */
  width: 80vw;         /* responsywne do 80% szerokości ekranu */
  height: auto;
  border-radius: 12px; /* delikatne zaokrąglenia */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hero-logo img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.uslugi-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.usluga-box {
  background: #111;
  margin: 1rem;
  padding: 1.5rem;
  width: 300px;
  border-radius: 8px;
  ...
}
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: cover;
  margin-bottom: 40px;
}
h1 {
  color: #2563eb; /* mocny niebieski */
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 0.5em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); /* lekki cień dla lepszej czytelności */
}

h2 {
  color: #3b82f6; /* jasniejszy niebieski */
  border-bottom: 3px solid #60a5fa; /* jaśniejszy akcent */
  padding-bottom: 8px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* subtelny cień */
  transition: border-color 0.3s ease;
}

h2:hover {
  border-color: #2563eb; /* podkreślenie zmienia kolor przy najechaniu */
  cursor: default;
}

h3 {
  color: #60a5fa; /* lub inny pasujący do Twojego motywu kolor */
  font-weight: 600;
  margin-top: 1.6em;
  margin-bottom: 0.8em;
}

