body {
  background-color: #f9f5f0;
  font-family: 'Georgia', serif;
  color: #333;
}

.portada {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
  url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1200');
  background-size: cover;
  color: white;
  margin-bottom: 2rem;
}

.titulo-revista {
  font-family: 'Playfair Display', serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitulo {
  font-style: italic;
}

/* Tarjetas de recetas */
.receta {
  cursor: pointer;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.receta:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.receta img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

.receta:hover img {
  transform: scale(1.05);
}

.card-body {
  background: white;
}

.badge {
  font-family: 'Segoe UI', sans-serif;
}

.meta-receta {
  color: #666;
}

/* Modal */
.modal-content {
  border-radius: 15px;
}

.modal-header {
  background-color: #8b5a2b;
  color: white;
  border-bottom: none;
}

.detalles-receta {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
}

/* Footer */
footer {
  font-size: 0.9rem;
}
