/* Page-Specific Styles */


.hero-food-title {
  bottom: var(--space-xl);
  left: var(--space-xl);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 7rem;
  text-align: center;
  text-transform: capitalize;
  flex: 2;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.5),
    4px 4px 12px rgba(0, 0, 0, 0.3);
}

/* Nutrition Facts */


.nutrition-facts-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  border-bottom: 8px solid var(--color-black);
  padding-bottom: var(--space-xs);
}

.nutrition-facts-content {
  min-height: 300px;
}

.nutrition-facts-item {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.nutrition-facts-label {
  font-weight: 400;
}

.nutrition-facts-value {
  font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-food {
    height: 300px;
  }

  .hero-food-title {
    font-size: 3rem;
    left: var(--space-md);
    bottom: var(--space-md);
  }

  .nutrition-facts {
    position: relative;
    top: auto;
    right: auto;
    margin: -50px auto var(--space-lg);
    max-width: 90%;
  }
}
