/* ---------------------------
   Navigation
---------------------------- */

nav {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 3rem 0;   /* adds space above and below */
  padding-left: 2rem;     /* pulls it slightly away from the edge */
  padding-top: 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-align: center
    
}

nav a {
  text-decoration: none;
  color: #1f3a4a;
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #1f3a4a;
  transition: width 0.2s ease;
}

nav a:hover::after {
  width: 100%;
}

body {
  font-family: "EB Garamond", serif;
  background-color: #f4f1e8;
  background-image: 
    linear-gradient(
      rgba(244, 241, 232, 0.92),
      rgba(244, 241, 232, 0.92)
    ),
    url("https://upload.wikimedia.org/wikipedia/commons/6/6c/A_new_and_accurate_chart_of_the_Bay_of_Chesapeak_including_Delaware_Bay_%283046378650%29.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: #000;
  line-height: 1.6;
  margin: 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.site-header {
  text-align: center;
  margin-bottom: 3rem;
}

.site-header h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.tagline {
  font-size: 1.4rem;
  margin-top: 0.75rem;
  color: #1f3a4a; /* dark blue */
  white-space: nowrap;
}

h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  color: #1f3a4a;
}

h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  color: #2f4f3e; /* dark green */
}

p {
  margin-top: 0.5rem;
}

.fees {
  font-size: 0.95rem;
  color: #333;
}

.fees ul {
  list-style: none;
  padding-left: 0;
}

.fees li {
  margin-bottom: 0.25rem;
}

.site-footer {
  margin-top: 4rem;
  font-size: 0.95rem;
}

a {
  color: #1f3a4a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}