body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f8fbfa;
  color: #232323;
  margin: 0;
  padding: 0;
}

header {
  background: linear-gradient(90deg,#ffb347 0%,#ffcc33 100%);
  color: #232323;
  text-align: center;
  padding: 2rem 1rem 1.2rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

header h1 {
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 1px;
}

header .subtitle {
  margin: 0;
  font-size: 1.15rem;
  color: #685400;
}

nav {
  margin-bottom: 0.7rem;
}
.nav-link {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  margin: 0 1rem;
}
.nav-link:hover {
  color: #e67e22;
}

.intro, .recipe-intro {
  max-width: 620px;
  margin: 2rem auto 1.5rem auto;
  padding: 0 1rem;
  text-align: center;
}
.recipe-image-container {
  margin: 1.2rem 0;
  text-align: center;
}
.recipe-image {
  width: 85%;
  max-width: 380px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

blockquote {
  background: #fffbe6;
  border-left: 5px solid #ffcc33;
  margin: 1.5em auto;
  padding: 1em 2em;
  font-style: italic;
  color: #a67c00;
  max-width: 500px;
  border-radius: 10px;
}
.quote-author {
  display: block;
  font-size: 0.96em;
  color: #888;
  margin-top: 0.7em;
}

.recipe-list ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
}

.recipe-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1.2rem 2rem;
  margin: 1rem 0;
  text-decoration: none;
  color: #232323;
  transition: box-shadow 0.2s, transform 0.2s;
}
.recipe-link:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  transform: translateY(-3px) scale(1.01);
  background: #fffbe6;
}
.recipe-name {
  font-size: 1.28rem;
  font-weight: 600;
}
.recipe-desc {
  font-size: 1rem;
  color: #a67c00;
  margin-top: 0.2em;
}

.btn, .jump-link {
  background: #ffb347;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 1rem;
}
.btn:hover, .jump-link:hover {
  background: #e67e22;
}

.recipe-table-container {
  overflow-x: auto;
  margin: 1.2rem 0;
}
.recipe-table {
  border-collapse: collapse;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.recipe-table caption {
  caption-side: top;
  font-size: 1.18rem;
  font-weight: bold;
  margin-bottom: 0.7em;
  color: #a67c00;
  background: #fffbe6;
  padding: 0.3em 0;
}
.recipe-table th, .recipe-table td {
  border: 1px solid #f1e7c6;
  padding: 0.75em 1.2em;
  text-align: left;
}
.recipe-table th {
  background: #fffbe6;
  color: #a67c00;
  font-weight: 700;
}
.recipe-table tr:nth-child(even) td {
  background: #faf7ed;
}
.recipe-table td {
  color: #333;
}

footer {
  background: #232323;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  margin-top: 2.5rem;
  font-size: 1rem;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.4rem;
  }
  .recipe-link {
    padding: 1rem 1rem;
  }
  .recipe-image {
    width: 100%;
    max-width: 100%;
  }
  .recipe-table th, .recipe-table td {
    padding: 0.7em 0.6em;
  }
}
