/* Logo and header layout */
.logo-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
}

.logo {
  height: 45px;
  width: auto;
}

header h1 {
  font-size: 1.8em;
  color: #ffee00;
  margin: 0;
}

/* Navigation styling */
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 10px 0;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a:hover {
  color: #cde73c;
}
body {
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  background-color: #fffaf5;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.8;
}

header {
  background: linear-gradient(90deg,  #FFD700, #c7ae21, #FFD700);
  padding: 30px;
  text-align: center;
  color: white;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

main {
  padding: 40px;
  max-width: 1000px;
  margin: auto;
}

section {
  margin-bottom: 40px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
}

button {
  background-color: #f08080;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #e06666;
}

footer {
  background: linear-gradient(90deg,  #FFD700, #c7ae21, #FFD700);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}
.featured-recipe {
  display: flex;
  gap: 20px;
  align-items: center;
}

.featured-recipe img {
  width: 250px;
  border-radius: 8px;
}

.testimonials blockquote {
  background: #f9f9f9;
  padding: 15px;
  border-left: 5px solid #ccc;
  margin-bottom: 10px;
}

.button {
  display: inline-block;
  padding: 10px 15px;
  background-color: #e74c3c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

form input[type="email"] {
  padding: 8px;
  margin-right: 10px;
}
