html {
  background-color: #d67009; /* orange backing */
}

/* Simulate the white "paper" */
.page-wrapper {
  background-color: white;           /* the paper itself */
  max-width: 1000px;
  margin: 2rem auto;                 /* vertical space + horizontal centering */
  padding: 1in;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* subtle floating effect */
  font-family: 'Lobster', cursive;
  font-size: 12pt;
  line-height: 1.15;
  border-radius: 4px;                /* optional: soft corners */
}

a {
    color: #d67009;
    text-decoration: none; /* Optional: remove underline */
}

a:hover {
    color: #a14e00;
    text-decoration: underline; /* Optional: visual feedback on hover */
}

.site-footer {
    background-color: #a14e00; /* deep brown for rustic feel */
    color: #f8ede3;            /* warm light text */
    width: 100%;
    padding: 2rem 1rem;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    border-top: 6px solid #d67009; /* pumpkin orange border */
    margin-top: 3rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
  .page-wrapper {
    padding: 20px; /* or padding: 1.25rem; — much smaller */
    max-width: 100%; /* allow it to fill mobile screens */
    margin: 1rem 0;  /* optional: reduce vertical margin */
  }
}

/*
#d67009 Dark Orange (primary orange hue; used for background)
#a14e00 Darker Orange (used for footer, to hover and highlight)
#ffac1c Light Orange (from Price Table; heading)
#FFD580 Light Orange (from Price Table; rows) 
#FCA55D Peach-Orange (from Price Table; rows)
#E49B0F Burnt Orange (old Table)

#4e7530 Dark Green (logo)
#6b543d Brown (logo)
#ffffff White (logo)
#000000 Black (logo) 

#f5f5dc Light-Greenish-Beige (Logo bar background)
#fef6e4 Creamish-Beige Reverse Feature color (presently unused)
#fffaf0 Sand-colored Beige (Feature background)
#e3cbb2 Oatmeal Beige (Old lighter price table color)
#d2b48c Tan  (Old darker price table color)

#E8A6A1 Light Red (apples on price table)
#edc4bd Light Red (apples on price table)
#E9967A Red (apples headings on price table)
*/



