
/* ========== Base / Reset-ish ========== */
*,
*::before,
*::after { box-sizing: border-box; }

html { 
  /* 1rem ≈ 16px base */
  font-size: 100%;
}

body {
  margin: 0;
  color: #000;
  background-color: white;
  font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
  font-size: 0.9375rem; /* ~15px */
  font-weight: 500; /* or "normal"/"bold" */
  line-height: 1.5;
}

/* Responsive wrapper */
#wrapper {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 1rem;
}

/* Headings (percentages relative to body size) */
h1 { font-size: 150%; }
h2 { font-size: 130%; }
h3 { font-size: 120%; }
h4 { font-size: 110%; }
h5 { font-size: 100%; }

/* Text sizing fixes */
p  { font-size: 75%; }
td { font-size: 80%; }

/* Utility alignment classes (fixed spelling) */
.align-left   { text-align: left; }
.align-center { text-align: center; }
.align-right  { text-align: right; }

/* Images scale down on small screens */
img { max-width: 100%; height: auto; display: block; }

/* Logo */
#logo { 
  float: left;
  text-align: left;
}

/* ========== Navigation ========== */
/* Renamed "mensu"→menu; fixed Helvetica spelling */
#styletwo {
  clear: both;
  position: relative;
  display: block;
  min-height: 24px;
  font-size: 11px;
  font-weight: bold;
  font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
  background: transparent url(/images/bgOFF.gif) repeat-x top left;
  border-bottom: 2px solid red;
}

/* Use flex instead of floats for the list */
#styletwo ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1px;
}

#styletwo li { margin: 0; }

#styletwo a {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 6px 20px 0 20px;
  min-height: 24px;
}

#styletwo a:hover,
#styletwo a.current,
#styletwo a:focus-visible {
  color: #fff;
  background: transparent url(/images/bgON.gif) repeat-x top left;
  outline: none;
}

/* ========== Forms ========== */
form#Order,
form#Contact {
  background-color: #ccc;
  color: #000;
  border: 1px solid red; /* was #999999, keep red per your comment */
  font-size: 80%;
  font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
  text-align: left;
  padding: 1rem;
  border-radius: 4px;
}

/* Inputs INSIDE these forms */
#Order .text,
#Contact .text,
#Order input[type="text"],
#Contact input[type="text"],
#Order input[type="email"],
#Contact input[type="email"],
#Order select,
#Contact select {
  font-family: inherit;
  font-size: 100%;
  margin-right: 6px;
}

textarea#comment {
  width: 300px;
  height: 150px;
  max-width: 100%;
}

/* ========== Tables ========== */
table {
  border-collapse: collapse;
  font-size: 115%;
  width: 100%;
  border: 1px solid #000;
  background: #fff;
}

table caption {
  color: #000;
  font-weight: bold; 
  margin: 0;
  padding: 8px 20px;
  text-align: center;
  border: 1px solid #000;
  border-bottom: none;
  background: #fff; 
}

table th, 
table td {
  margin: 0;
  padding: 8px 20px;
  border-bottom: 1px solid #b5b5b5; 
}

table th { color: #000; }

table .center { text-align: center; }
table .left   { text-align: left; }
table .right  { text-align: right; }

/* ========== Layout (modernized) ========== */
/* If you keep floats, this keeps your intent; otherwise switch to flex below */
#content {
  float: left;
  text-align: left;
  width: 65%;
  margin-right: 5%;
}

#sidebar {
  float: right;
  width: 30%;
}

#homepageleft {
  float: left;
  text-align: left;
  width: 63%;
  margin-right: 2%;
}

#homepageright{
  float: right;
  text-align: center;
  width: 33%;
  margin-right: 2%;
}

/* About section */
#about{
  float:left; 
  width: 100%; /* was 800px; let wrapper control width */
}

#about dl{
  float:left;
  margin: 10px 20px;
  padding:0;
}

#about dt{
  float: left;
  width: 610px; /* consider % for responsiveness */
  margin: 0;
  padding:0;
}

#about dd{
  margin:0;
  padding:0;
}

#about dd.img img{
  float: right;
}

/* Footer (remove negative margin hack) */
#footer {
  clear: both;
  border-top: 2px solid red;
  text-align: center;
  min-height: 40px;
  padding-block: 10px;
  margin: 0 auto;
}

/* Clearfix utility when you still float things */
.clearfix::after { content: ""; display: block; clear: both; }

/* ========== Responsive tweaks ========== */
@media (max-width: 900px) {
  #content, #sidebar, #homepageleft, #homepageright {
    float: none;
    width: 100%;
    margin: 0 0 1rem 0;
    text-align: left;
  }

  #about dt { width: 100%; }
}
