body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff8f0;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: rgba(142,59,0,.92);
  color: white;
  text-align: center;
  padding: 35px 20px;
}

header h1 {
  margin: 0;
  font-size: 42px;
}

header p {
  margin-top: 8px;
  font-size: 18px;
}

nav {
  background-color: rgba(142,59,0,.92);
  text-align: center;
  padding: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 14px;
  font-weight: bold;
}

nav a:hover {
  color: #ffd9a0;
}

.hero {
  background-color: rgba(243,156,18,.90);
  color: #222;
  text-align: center;
  padding: 70px 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  max-width: 750px;
  margin: auto;
  font-size: 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

.card {
  background-color: rgba(255,255,255,.95);
  padding: 25px;
  border-left: 6px solid #d35400;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 18px;
  margin-top: 40px;
}
.recipe-image {

    width: 100%;

    max-width: 250px;

    height: auto;

    display: block;

    margin: 15px auto;

    border-radius: 10px;

}
.background-section {

    display: flex;

    align-items: flex-start;

    gap: 30px;

    flex-wrap: wrap;

}

.about-image {

    width: 300px;

    height: auto;

    border-radius: 10px;

    box-shadow: 0 4px 10px rgba(0,0,0,.2);

}

.background-text {

    flex: 1;

    min-width: 300px;

}

.banner {
    text-align: center;
    background-color: #fff8f0;
    padding: 20px;
}

.banner img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.recipe-video {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.photo-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.photo-row img {
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form button {
  background-color: #d35400;
  color: white;
  border: none;
  padding: 14px;
  font-size: 17px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #8e3b00;
}