/* ===== BASE ===== */
:root {
  --blue: rgb(0, 20, 64);   /* CETACEAN BLUE */
  --white: #ffffff;
  --silver: #c0c0c0;
  --text: #111;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.5;
}

/* ===== NAV ===== */
.menu-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;

  background: var(--blue);
  padding: 10px;
}

.menu-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
}

.menu-nav a:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== SECTIONS ===== */
section {
  padding: 20px 14px;
  max-width: 900px;
  margin: 0 auto;
}

h2 {
  color: var(--blue);
  border-bottom: 2px solid var(--silver);
  padding-bottom: 6px;
  margin-top: 10px;
}

h3 {
  margin-top: 24px;
  color: var(--blue);
  font-size: 18px;
}

/* ===== LOGO ===== */
.menu-sun {
  display: block;
  max-width: 220px;
  width: 100%;
  margin: 10px auto 20px;
}

/* ===== TABLES ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

td {
  padding: 10px 6px;
  vertical-align: top;
  border-bottom: 1px solid #eee;
}

td:last-child {
  text-align: right;
  white-space: nowrap;
  color: var(--blue);
  font-weight: bold;
}

/* item description styling */
em {
  font-style: normal;
  color: #666;
  display: block;
  font-size: 0.9em;
  margin-top: 2px;
}

/* ===== MOBILE STACK TABLE ===== */
@media (max-width: 600px) {
  table, tbody, tr, td {
    display: block;
    width: 100%;
  }

  tr {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  td:last-child {
    text-align: left;
    margin-top: 4px;
  }
}

/* ===== OPTIONAL CLEAN DIV SPACING ===== */
section > div {
  margin-bottom: 22px;
}