body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /*background-color: #f4f4f4;*/
  /*background-color: #1B3740;*/
  background-color: #345;
  color: #222;
}
header {
  background-color: #234;
  color: #fff;
  padding: 1rem;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 2.5rem;
}
nav {
  background-color: #456;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}
nav a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  background: url('hero.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 6rem 0rem;
  text-align: center;
}
.hero h2 {
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 0.5rem 1rem;
}
.content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
  padding: 2rem;
}
.article {
  background-color: #eef;
  padding: 1rem;
  border-left: 5px solid #00f;
}
.sidebar {
  background-color: #dde;
  padding: 1rem;
}
footer {
  background-color: #234;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
img.logo {
  width: 8vw;          /* scale with screen */
  height: auto;         /* keep proportions */
  max-width: 100%;      /* don’t exceed container */
  min-width: 200px;     /* set minimum width */
  display: block;
  margin: auto;
}
img.fcoap {
  width: 40vw;          /* scale with screen */
  height: auto;         /* keep proportions */
  max-width: 100%;      /* don’t exceed container */
  min-width: 700px;     /* set minimum width */
  display: block;
  margin: auto;
}
@media (max-width: 768px) {
  .content {
    display: block;
    padding: 1rem;
  }

  .article, .sidebar {
    margin-bottom: 2rem;
  }

  .article, .sidebar {
    border-left: none;
    background-color: #fff;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 0.5rem 0;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h2 {
    font-size: 1.5rem;
    padding: 0.5rem;
  }
  img.fcoap {
    min-width: 300px;     /* set minimum width */
  }
}
img.about-me {
  width: 6vw;          /* scale with screen */
  height: auto;         /* keep proportions */
  max-width: 100%;      /* don’t exceed container */
  min-width: 200px;     /* set minimum width */
  margin: auto;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #aa0000;
  padding-left: 1em;
  margin: 1em 0;
}
nav a {
  position: relative;
}

nav a:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%; /* position above the link */
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000;
  padding: 0.5em 1em;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
}

nav a:hover::before {
  content: '';
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff;
}
.liberty-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}

.liberty-poem {
  flex: 2;
  min-width: 250px;
}

.liberty-image {
  flex: 1;
  min-width: 150px;
}

.liberty-image img {
  max-width: 100%;
  height: auto;
  border-left: 4px solid #ccc;
  padding-left: 1rem;
}
.tooltip-link {
  position: relative;
}

.tooltip-link .tooltip-box {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000;
  padding: 0.5em 1em;
  font-size: 0.95rem;
  font-weight: bold;
  white-space: nowrap;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
}

.tooltip-link.show-tooltip .tooltip-box {
  display: block;
}
hr {
  border: none;
  height: 3px;
  background-color: #667788;  /* subtle contrast */
  /* margin: 1rem 0; */
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.veteran-resources {
  background: #223344;
  color: #ddeeff;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.veteran-resources h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
  border-bottom: 2px solid #445566;
  padding-bottom: 0.25rem;
}

.veteran-resources ul {
  list-style: none;
  padding: 0;
}

.veteran-resources li {
  margin: 0.75rem 0;
}

.veteran-resources a {
  color: #aaddff;
  text-decoration: none;
  font-weight: bold;
}

.veteran-resources a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .veteran-resources {
    padding: 1rem;
  }
  .veteran-resources h3 {
    font-size: 1.4rem;
  }
}
.bio-box {
  background-color: #556677;
  color: #ddeeff;
  padding: 1.5rem;
  border-left: 4px solid #aa0000;
  margin-top: 2rem;
  font-size: 1.2rem;
  border-radius: 6px;
  max-width: 750px;
}
.bio-box h4 {
  color: #fff;
  margin-top: 0;
}
.quote-options {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.quote-options li {
  background-color: #223344;
  color: #ddeeff;
  border-left: 4px solid #aa0000;
  padding: 1em;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  border-radius: 6px;
}

.quote-label {
  font-weight: bold;
  color: #ffccaa;
  margin-bottom: 0.25em;
  font-size: 1rem;
}

.quote-options em {
  display: block;
  margin: 0;
  font-style: italic;
}
