@font-face {
  font-family: 'VAGRounded';
  src: url('assets/fonts/VAGRounded.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'VAGRounded', sans-serif;
  background: url('town-bg.png') no-repeat center top;
  background-size: 1400px auto;
  min-height: 100vh;
  line-height: 2;
}

.top-pill-bar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: linear-gradient(to bottom, #57aaff, #2d94ff);
  border: 2px solid #005ca9;
  border-radius: 40px;
  box-shadow: inset 0 3px 6px rgba(255,255,255,0.8), inset 0 -3px 6px rgba(255,255,255,0.6), 0 2px 8px rgba(0,0,0,0.15);
  z-index: 1000;
  padding: 0 10px;
}

.pill-half {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  font-size: 18px;
  color: white;
  text-decoration: none;
  height: 60px;
  white-space: nowrap;
  cursor: pointer;
}

.separator {
  width: 1px;
  background-color: black;
  height: 40px;
  align-self: center;
  margin: 0 5px;
}

.logo-side img {
  height: 55px;
  border-radius: 5px;
  transition: transform 0.2s;
}

.logo-side:hover img {
  transform: scale(1.05);
}

.text-side:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.7));
}

.mobile-header {
  display: none;
  align-items: center;
  background: linear-gradient(to bottom, #57aaff, #2d94ff);
  border-bottom: 2px solid #005ca9;
  padding: 10px;
}

.menu-button {
  margin-left: auto;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

.sidebar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to bottom, #57aaff, #2d94ff);
  border-right: 2px solid #005ca9;
  padding-top: 60px;
  z-index: 1000;
}

.sidebar a {
  display: block;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
}

.sidebar.open {
  display: block;
}

.disclaimer {
  text-align: center;
  font-size: 12px;
  margin: 20px 0;
}

.content {
  max-width: 1000px;
  margin: 120px auto 0;
  background: linear-gradient(to bottom, rgba(214, 230, 246, 0.8), rgba(124, 177, 234, 0.8));
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.content h1,
.content h2,
.content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.content h2, 
.content h3 {
  font-family:'Times New Roman', Times, serif
}

.content h1 {
  text-align: center;
}

.content p,
.content ul {
  margin-bottom: 15px;
  font-family:'Times New Roman', Times, serif
}

.content ul {
  padding-left: 25px;
}

.content li {
  margin-bottom: 5px;
}

.bottom-ui {
  text-align: center;
  margin: 40px 0;
  font-size: 14px;
  color: #444;
  font-family: Arial, sans-serif;
}

.bottom-ui a {
  color: #333;
  text-decoration: none;
  margin: 0 12px;
}

.bottom-ui a:hover {
  text-decoration: underline;
}

.footer-icons {
  margin-top: 15px;
}

.footer-icons a {
  margin: 0 8px;
  vertical-align: middle;
  font-weight: bold;
  color: #005ca9;
  text-decoration: none;
  font-size: 14px;
}

.footer-icons img {
  height: 28px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .top-pill-bar {
    display: none;
  }

  .mobile-header {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  .content {
    margin: 160px 10px 0;
    padding: 20px;
  }
}
