.main-header {
  background-color: #22272A;
  font-family: 'Oswald', sans-serif;
  color: white;
}

/* GÓRNY PANEL */
.top-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  position: relative;
  text-align: center;
  flex-wrap: wrap;
}

/* LOGO W LEWYM GÓRNYM ROGU */
.logo {
  position: absolute;
  top: 20px;
  left: 30px;
}

.logo img {
  height: 120px;
  object-fit: contain;
  filter: brightness(1.8) contrast(1.2);
  background-color: #22272A;
}

/* WYŚRODKOWANE INFORMACJE */
.centered-info {
  font-size: 24px;
  color: white;
}

.company-name {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #ff4b4b;
}

.contact-info a,
.centered-info a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 26px;
}

.icon {
  color: red;
  margin-right: 6px;
  font-size: 26px;
}

/* DOLNE MENU */
.bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #444;
  padding: 10px 30px;
  flex-wrap: wrap;
}

.menu-left {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.menu-left li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 6px 8px;
  transition: color 0.3s ease;
}

.menu-left li a:hover {
  color: #ff4b4b;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }

  .logo {
    position: static;
    margin-bottom: 10px;
  }

  .menu-left {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}



.call-now-button {
  display: none;
}

@media (max-width: 768px) {
  .call-now-button {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff4b4b;
    color: white;
    padding: 14px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    animation: bounce 1.5s infinite;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(-5px);
    }
  }
}
