/* --- KONTENER --- */
.category-buttons {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;

}

/* --- BOXY --- */
.category-buttons .btn {
  display: block;
  width: 90%;          /* szerokość względem kontenera */
  max-width: 800px;    /* maksymalna szerokość na dużych ekranach */
  height: 350px;       /* większa wysokość */
  margin: 15px 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- EFEKT HOVER --- */
.category-buttons .btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* --- NAPIS --- */
.category-buttons .btn span {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #ffcc00;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
  .category-buttons .btn {
    width: 100%;
    height: 250px;  /* mniejsze na telefonie */
  }
  .category-buttons .btn span {
    font-size: 1rem;
    padding: 6px 10px;
  }
}
