/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

/* Global Styles */
body {
  font-family: "Roboto", Verdana, Geneva, Tahoma, sans-serif;
  background-color: #fff8f0; /* light cream background */
  color: #333;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.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;
}


.logo {
  width: 50px;      
  height: auto;
}

.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: "Arial", sans-serif;
}

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

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

.site-footer {
  background-color: #f8f0e3; /* same light background as nav */
  padding: 20px 0;
  text-align: center;
  color: #8b0000; /* dark red */
  font-family: "Arial", sans-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; /* highlight on hover */
}


