* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  font-size: 16px;
}

.main-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.site-header {
  background: #ffffff;
  border-bottom: 2px solid #d32f2f;
  margin-bottom: 30px;
}

.nav-container {
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title h1 {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.5rem;
  color: #d32f2f;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #d32f2f;
  font-weight: 700;
  transition: ease .3s;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border: 2px solid #dddddd;
  border-radius: 20px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 30px;
  text-align: center;
}

.recipe-title {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 4rem;
  color: white;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.362);
}

.recipe-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.recipe-meta {
  background: #f5f5f5;
  border: 1px solid #dddddd;
  border-radius: 20px;
  padding: 20px;
  margin-top: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 10px;
}

.meta-icon {
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d32f2f;
  color: white;
  border-radius: 50%;
  font-weight: bold;
}

.meta-content {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.9rem;
  color: #666666;
  font-weight: 500;
}

.meta-value {
  font-size: 1rem;
  color: #333333;
  font-weight: 600;
}

.recipe-content {
  margin: 20px 0;
}

.description-section h2 {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.5rem;
  color: #d32f2f;
  margin-bottom: 15px;
  margin-top: 15px;
}

.recipe-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.ingredients-section,
.equipment-section {
  background: #f5f5f5;
  border: 1px solid #dddddd;
  border-radius: 20px;
  padding: 20px;
}

.ingredients-section h2,
.equipment-section h2 {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.3rem;
  color: #d32f2f;
  margin-bottom: 15px;
}

.ingredients-list,
.equipment-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.ingredient-item,
.equipment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 10px;
}

.ingredient-amount {
  font-weight: 600;
  color: #d32f2f;
  min-width: 80px;
}

.ingredient-name,
.equipment-name {
  flex: 1;
  font-weight: 500;
}

.instructions-section {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.instructions-section h2 {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.5rem;
  color: #d32f2f;
  margin-bottom: 20px;
}

.instructions-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.instruction-step {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #f5f5f5;
  border-left: 4px solid #d32f2f;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.step-number {
  width: 30px;
  height: 30px;
  background: #d32f2f;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.1rem;
  color: #d32f2f;
  margin-bottom: 5px;
}

.step-content p {
  color: #666666;
  line-height: 1.5;
}

.process-gallery,
.image-gallery {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.process-gallery h2,
.image-gallery h2 {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.5rem;
  color: #d32f2f;
  margin-bottom: 15px;
}

.process-images,
.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.process-image,
.gallery-image {
  text-align: center;
}

.process-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid #dddddd;
}

.gallery-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid #dddddd;
}

.image-caption {
  margin-top: 8px;
  font-style: italic;
  color: #666666;
  font-size: 0.9rem;
}

.site-footer {
  background: #f5f5f5;
  border-top: 2px solid #d32f2f;
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer-section h3 {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #d32f2f;
}

.footer-section p {
  margin-bottom: 5px;
}

.inspiration-links,
.reference-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-section a {
  color: #333333;
  text-decoration: none;
}

.footer-section a:hover {
  color: #d32f2f;
  text-decoration: underline;
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 10px;
  }
  
  .nav-menu {
    gap: 15px;
  }
  
  .recipe-title {
    font-size: 1.8rem;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .meta-grid {
    grid-template-columns: 1fr;
  }
  
  .recipe-grid {
    grid-template-columns: 1fr;
  }
  
  .process-images,
  .gallery-images {
    grid-template-columns: 1fr;
  }
  
  .instruction-step {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .recipe-title {
    font-size: 1.5rem;
  }
  
  .meta-item {
    flex-direction: column;
    text-align: center;
  }
  
  .ingredient-item,
  .equipment-item {
    flex-direction: column;
    text-align: center;
  }
}