body {
  font-family: "Inter", sans-serif;
  color: #f4f4f5;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #09090b, #0f0f14);
  z-index: -2; /* pod všetkým */
}

.recept-detail {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.recept-detail h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  color: #34d399;
}

.recept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start; /* pôvodne bolo start, zmeníme */
}

.recept-obrazok {
  width: 100%;
  height: 380px; /* rovnaká výška pre všetky recepty */
  border-radius: 1.8rem;
  overflow: hidden; /* 🔴 TOTO TAM MUSÍ BYŤ */
  border: 2px solid #34d399;
}

.recept-obrazok img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* oreže, nedeformuje */
  display: block; /* odstráni divné medzery */
}

.recept-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.8rem;
  color: #34d399;
}

.recept-info ul,
.recept-info ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #a1a1aa;
}

.recept-info li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.tlacidlo-recepty {
  display: inline-block;
  padding: 1rem 2.8rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  background: linear-gradient(135deg, #34d399, #2dd4bf);
  border-radius: 2rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tlacidlo-recepty:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(52, 211, 153, 0.35);
}

/* Responsívne pre mobil */
@media (max-width: 768px) {
  .recept-grid {
    grid-template-columns: 1fr;
  }
}
