

@import url("css_files/layout.css");
@import url("css_files/fonts/ubuntu_bold_macroman/stylesheet.css");
@import url("css_files/fonts/ubuntutitling_bold_macroman/stylesheet.css");
@import url("css_files/fonts/ubuntutitling_regular_macroman/stylesheet.css");   

.layout-container {
  display: flex;
  flex-wrap: wrap; /* Allows stacking on smaller screens */
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
}
.intro-section {
  background-color: var(--blush);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.intro-content {
  font-family: var(--body-font);
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
}

.intro-visible {
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
}

.intro-label {
  display: inline-block;
  margin: 0.5rem 0;
  font-weight: bold;
  color: var(--green-deep);
  cursor: pointer;
  text-decoration: underline;
}

.intro-toggle {
  display: none;
}

.intro-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

.intro-toggle:checked ~ .intro-hidden {
  max-height: 500px;
  opacity: 1;
}
.recipe-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
}

.tile {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--paper);
}

.recipe-title-b {
  font-family: var(--title-font);
  font-size: 1.5rem;
  text-align: center;
  margin: 1rem 0;
}

.recipe-image {
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.recipe-description {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}