@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/*Apply font to all paragraphs*/
body {
  font-family: 'Playfair Display', serif;
  background-color: #fff8f0;
  color: #20201e;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}


/* Apply green color to all headings */
h1, h2, h3, h4 {
  color: #425623;
}

.logo
{color: #772d10;
font-weight: 700;
font-style: italic;
}


.recipe-image {
  width: 60%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 20px auto; /* centers image */
  border-radius: 10px; /* slightly rounded corners */
}

.main-nav {
  display: block;
  position: sticky;
  top: 0%;
  background-color: #f8f0e3; /* light background */
  padding: 10px 0;
  text-align: center;
}



.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  
  display: inline-block;
  margin: 0 15px;
}

.nav-list a {
  text-decoration: none;
  color: #8b0000; /* dark red */
  font-weight: bold;
  font-family: 'Playfair Display', serif;
}

.nav-list a:hover {
  color: #ff4500; /* highlight on hover */
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

.site-footer {
  background-color: #f8f0e3; 
  padding: 20px 0;
  text-align: center;
  color: #8b0000; 
  font-family: 'Playfair Display', serif;
  border-top: 1px solid #e0d4c0;
  margin-top: 40px;
}

.site-footer a {
  color: #8b0000;
  text-decoration: none;
  font-weight: bold;
  margin: 0 5px;
}

.site-footer a:hover {
  color: #ff4500; 
}


