/* 📝 Algemene content */
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* 🥘 Recepten & Categorieën grids */
.recipe-grid, .inspiration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.recipe-card, .inspiration-card, .about-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease, transform 0.3s ease;
}

.recipe-card img, .about-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.recipe-card:hover, .inspiration-card:hover, .about-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* 🍽 Receptdetail */
.recipe-detail h1 {
  font-size: 2.5rem;
  color: #d35400;
  margin-bottom: 1rem;
}

.recipe-detail p {
  margin-bottom: 1.5rem;
}

.ingredients, .instructions {
  margin-top: 2rem;
}

.ingredients ul, .instructions ol {
  margin-left: 1.5rem;
}

.ingredients li, .instructions li {
  margin-bottom: 0.7rem;
}

/* 💌 Contactformulier */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  resize: vertical;
}

.contact-form button {
  background-color: #d35400;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}

/* 🏠 Over-pagina */
.about-page h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #d35400;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.about-image {
  text-align: center;
  margin-top: 2rem;
}

.about-image img {
  max-width: 80%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 📝 Inspiratie pagina */
.inspiration h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #d35400;
  margin-bottom: 1rem;
}

.inspiration p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* 📱 Responsiveness uitbreiding */
@media (max-width: 768px) {
  .recipe-grid, .inspiration-grid, .about-content {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    padding: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
.ingredients li.checked {
  text-decoration: line-through;
  color: #999;
}

.instructions li.completed {
  background-color: #fff0e6;
  border-left: 4px solid #d35400;
  padding-left: 0.5rem;
}

.btn-favorite {
  background-color: #fff8f0;
  border: 2px solid #d35400;
  color: #d35400;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  transition: 0.3s ease;
}

.btn-favorite.favorited {
  background-color: #d35400;
  color: #fff;
}
