body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-image: url('assets/final.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #342E1D;
}

.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  background: linear-gradient(to right, #A40865, #E45811);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  z-index: 10;
}

.back-button:hover {
  transform: scale(1.05);
}

.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.slaw-wrapper {
  background-color: rgba(255, 255, 240, 0.95);
  backdrop-filter: blur(2px);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 800px;
  margin: -60px auto 60px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.slaw-wrapper h1 {
  font-size: 2.5rem;
  color: #A40865;
  margin-bottom: 20px;
  text-align: center;
}

.intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #3A1900;
  text-align: center;
}

.recipe-card {
  background-color: #FFF6EE;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.recipe-card h2 {
  font-size: 1.4rem;
  margin-top: 30px;
  color: #E45811;
}

.recipe-card ul,
.recipe-card ol {
  font-size: 1rem;
  margin-left: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.recipe-card li {
  margin-bottom: 8px;
}
