/* ===================================================================
   MPBH Šamorín – Energetika frontend stylesheet
   Font: Plus Jakarta Sans · Ikony: Lucide
   =================================================================== */

:root{
  --slate: #145A8D;
--slate-hero-2:#184075;
 --teal:#184075;
  --teal-hover:#145A8D;
  --teal-bright:#14b8a6;
}

/*------------------- Widgety ---------------------*/

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  padding: 28px;
  border-radius: 24px;
  color: #ffffff;
  min-height: 260px;

  display: flex;
  flex-direction: column;

  box-shadow: 0 12px 30px rgba(0, 31, 63, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 31, 63, 0.28);
}

/* Farba prvej karty – Ingatlanjog */
.card:nth-child(1) {
  background: linear-gradient(135deg, #3fa9d8 0%, #001f3f 100%);
}

/* Farba druhej karty – Energetika */
.card:nth-child(2) {
  background: linear-gradient(135deg, #00a896 0%, #005f73 100%);
}

/* Farba tretej karty – Karbantartás */
.card:nth-child(3) {
  background: linear-gradient(135deg, #8e6ccf 0%, #30205f 100%);
}

.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
}

.card-title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.card-desc {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.card-link {
  margin-top: auto;
  padding-top: 24px;

  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* Responzívne zobrazenie */
@media (max-width: 800px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
