body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
header { background: black; display: flex; justify-content: center; align-items: center; padding: 20px; position: relative; height: 20px;}
header img { height: 60px; }
.nav-left, .nav-right { display: flex; gap: 15px; align-items: center; }
nav a { color: #fff; text-decoration: none; font-weight: bold; }
nav { display: flex; justify-content: space-between; flex: 1; max-width: 800px; margin: 0 20px; }
footer a { color: #fff; text-decoration: none; font-weight: bold; }
footer { background: #000; text-align: center; padding: 20px; font-size: 14px; margin-top: 40px; color: #fff;}
.hero { background: url('images/Home.jpg') center/cover no-repeat; color: black; text-align: center; padding: 100px 20px; }
.hero-table {
  background-color: #ffffff;
  border-radius: 9999px;   /* makes it oval/pill shape */
  overflow: hidden;        
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  padding: 5px 5px;      /* more horizontal padding for oval look */
  height: 20px;
  line-height: 10px; /* centers text vertically */
   /* control width here */
  height: 70px;
  width: 100%;       /* responsive percentage */
  max-width: 800px; /* prevents it from being too wide on big screens */
  margin: 0 auto;   /* keeps it centered */
  /* centering */
  margin: 0 auto;   /* centers horizontally */

  }
.container { max-width: 1000px; margin: auto; padding: 20px; }
.hamburger { color: #fff; display: none; cursor: pointer; max-width: 800px; font-size: 20px; font-weight: bold; position: absolute; right: 15px; top: 10px; }
@media (max-width: 900px) {
  nav { display: none; position: absolute; top: 30px; left: 0; right: 0; background: Black; flex-direction: column; align-items: center; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
  nav.active { display: flex; }
  .nav-left, .nav-right { flex-direction: column; gap: 10px; }
  .hamburger { display: block; }
}
