
:root {
    --bg: #014421;     /* deep royal green */
    --text: #f8f8f2;   /* off-white */
    --accent: #60a5fa;
    --hover-text: #d2b48c; /* tan */
  }

  
  img {max-width: 100%;
    height: auto;
  }
  

  * { box-sizing: border-box; }
  html, body { margin: 0; }
  body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; background: #fff; color: #000; }

  /* NAVBAR WRAPPER */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3); /* subtle shadow */
  }

  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 0.5rem; /* tightened right padding */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* all items to the right */
    gap: 0.5rem;
  }

  /* LINKS */
  .nav-links {
    list-style: none;
    margin: 0; padding: 0;
    display: none; /* mobile hidden */
    flex-direction: column;
    gap: .25rem;
    width: 100%;
    text-align: right;
  }

  .nav-links a {
    display: block;
    padding: .5rem .75rem;
    border-radius: .5rem;
    text-decoration: none;
    color: var(--text);
    border: 1px solid transparent; /* base border for outline effect */
    transition: all 0.3s ease;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    border-color: var(--text);
    background: transparent; /* outlined style instead of fill */
    color: var(--hover-text); /* tan text on hover */
    outline: none;
  }

  .cta { font-weight: 600; border: 1px solid var(--text); }
  .cta:hover,
  .cta:focus-visible {
    border-color: var(--text);
    color: var(--hover-text); /* tan on hover for contact */
    background: transparent;
  }

  /* HAMBURGER */
  .menu-toggle {
    appearance: none;
    border: none;
    background: transparent;
    color: var(--text);
    padding: .5rem;
    border-radius: .5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .menu-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

  .hamburger { width: 24px; height: 18px; position: relative; }
  .hamburger span,
  .hamburger::before,
  .hamburger::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    position: absolute; left: 0;
    transition: transform .25s ease, opacity .2s ease;
  }
  .hamburger span { top: 50%; transform: translateY(-50%); }
  .hamburger::before { top: 0; }
  .hamburger::after { bottom: 0; }
  .menu-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(9px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-9px) rotate(-45deg); }
  .menu-toggle[aria-expanded="true"] .hamburger span { opacity: 0; }

  /* MOBILE PANEL */
  .mobile-panel { display: none; padding: 0 .5rem .75rem; text-align: right; }
  .mobile-panel[data-open="true"] { display: block; }

  /* FOOTER THEME */
  footer {
    background: var(--bg);
    color: var(--text);
    margin-top: 2rem;
    padding: 1.25rem 1rem;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.25);
  }
  footer a { color: var(--text); text-decoration: none; }
  footer .row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; align-items: center; max-width: 1100px; margin: 0 auto; }
  footer .column { text-align: center; }
  footer img { max-width: 120px; filter: invert(1) brightness(1.2); }
  footer p { text-align: center; margin: 1rem 0 0; opacity: .9; }

  .contact-section {
  display: flex;
  justify-content: center;
  margin: 30px auto;
  max-width: 800px;
}
.contact-form {
  width: 100%;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}
.contact-form h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #2f4f4f;
}
.contact-form label {
  display: block;
  margin: 12px 0 6px;
  font-weight: bold;
  color: #333;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form button {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  border: 2px solid #2f4f4f;
  background: transparent;
  color: #2f4f4f;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: tan;
  color: white;
  border-color: tan;
}

#formMessage {
  margin-top: 15px;
  font-size: 15px;
  font-weight: bold;
}

.alert {
  padding: 12px 15px;
  border-radius: 8px;
  border: 2px solid;
  margin-top: 10px;
  text-align: center;
}

.alert-success {
  color: #2f4f4f;
  border-color: tan;
  background-color: #fdf8f3; /* subtle tan background */
}

.alert-error {
  color: #b22222;
  border-color: #b22222;
  background-color: #fff5f5; /* light red background */
}

.alert {
  padding: 12px 15px;
  border-radius: 8px;
  border: 2px solid;
  margin-top: 10px;
  text-align: center;
}

.alert-success {
  color: #2f4f4f;
  border-color: tan;
  background-color: #fdf8f3; /* subtle tan background */
}

.alert-error {
  color: #b22222;
  border-color: #b22222;
  background-color: #fff5f5; /* light red background */
}


  @media (min-width: 768px) {
    .menu-toggle { display: none; }
    .nav-inner { padding: .85rem 0.5rem; }
    .nav-links { display: flex; flex-direction: row; gap: .5rem; width: auto; }
    .mobile-panel { display: contents; padding: 0; }
    footer img { max-width: 140px; } }