/* Apply background image to entire body */
body {
    margin: 0;
    padding: 0;
    font-family: 'Cal Sans', sans-serif;
    
  }

  p{
    font-family: "Food Craft Font";
    font-size: 1.5em;
    word-spacing: 0.3em;
    letter-spacing: 0.15em;
    width: 82%;
    background-color: rgba(210, 235, 209, 0.85); /* 85% opaque white */
    margin: 2em auto;
    padding-top: -10px;
    padding-bottom: -10px;
    line-height: 1.5;
    color: black; /* dark green */
    text-align: center;
    border-radius: 8px;
  }
  
  #homePage{
    background: url(../images/foods2.jpg) no-repeat center center fixed;
    background-size: cover;
   
  }

  #breakfastPage{
    background: url(../images/breakfast2.jpeg) no-repeat center center fixed;
    background-size: cover;
  }

  #lunchPage{
    background: url(../images/lunch5.png) no-repeat center center fixed;
    background-size: cover;
  }

  #dinnerPage{
    background: url(../images/dinner2.jpg) no-repeat center center fixed;
    background-size: cover;
  }

  #dessertPage{
    background: url(../images/dessert8.png) no-repeat center center fixed;
    background-size: cover;
  }

  #title{
    width: 82%;
    background-color: rgba(32, 139, 28, 0.85); /* 85% opaque white */
    margin: 2em auto;
    padding: 0em;
    line-height: 1.5;
    color: black; /* dark green */
    text-align: left;
    border-radius: 8px;
    
  }

  #breakfast {
    width: 60%;
    background-color: rgba(255, 255, 255, 0.7); /* 85% opaque white */
    margin: 2em auto;
    padding: 2em;
    line-height: 1.5;
    color: black; /* dark green */
    text-align: left;
    border-radius: 8px;
  }
  
  /* Navigation styles */
  nav {
    font-family: "Food Craft Font";
    font-size: 2em;
    background-color: #333333; /* dark grey */
    color: white;
    text-align: center;
    position: sticky;
    margin-bottom: 2em;
    padding: 1em 0;
    
    top: 0.0in; /* about ½ inch down */
  }
  
  nav a {
    font-family: "Food Craft Font";
    font-size: 2em;
    color: white;
    text-decoration: none;
    padding: 0 1em;
    font-size: 1.1em;
  }
  
  nav a:hover {
    color: #ffff99; /* pale yellow */
  }
  
  /* Header spacing (after nav) */
  header h1,
  header h2 {
    margin: 0.5em auto;
  }
  
  /* Main content box */
  main {
    width: 60%;
    background-color: rgba(255, 255, 255, 0); /* 85% opaque white */
    margin: 2em auto;
    padding: 2em;
    line-height: 1.5;
    color: black; /* dark green */
    text-align: left;
    border-radius: 8px;
  }

button{
    font-family: "Food Craft Font";
    font-size: 100px;
    width: 400px;
    height: 200px;

}
  
  /* Footer */
  @media DISABLED footer {
    background-color: #003300; /* dark green */
    color: white;
    text-align: center;
   
    padding: 1em 0;
    bottom: 0;
    width: 100%;
    margin-top: 3em;
    position: sticky;
  }

  

  p{}

  h1{
    font-size: 3em;
  }
  h2{
    font-size: 2em;
    




    

  }

  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  main {
    flex: 1; /* Fills the remaining space and pushes footer down */
  }
  
  footer {
    background-color: #003300;
    color: white;
    text-align: center;
    padding: 1em 0;
    width: 100%;
    bottom: 0;
    position: sticky;
    /* Remove position and margin-top */
  }
  
  