:root {
}

/* Reset & Base */
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  background: #f7f8fa;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

a {
  color: #0066cc;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.fh-header-inner {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.fh-header {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  padding: 0.5rem 0;
  padding-bottom: 0;
}

.fh-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.fh-header-right {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.fh-logo img {
  max-height: 60px;
}

.fh-contact {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}

.fh-contact a {
  font-size: 0.85rem;
  text-decoration: none;
}

.fh-contact a:hover {
  opacity: 0.8;
}

.contact-btn svg.icon {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  vertical-align: middle;
}

.fh-header-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin: 0.5rem 0 0.25rem;
  padding: 0 1rem;
}

.fh-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.fh-nav-toggle span {
  display: block;
  height: 3px;
  background: #031030;
  border-radius: 2px;
}

.contact-btn {
  background-color: #8b0000;
  color: white !important;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  margin-left: 0.5rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #a30000;
}

.fh-nav {
  background: #031030;
  width: 100%;
}

.fh-nav ul.container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;       /* <-- center the UL itself */
  padding: 0 1rem;      /* <-- restore the same 1rem side‑padding your .container usually has */
  box-sizing: border-box;
}

.fh-nav li {
  position: relative;
}

.fh-nav > ul > li > a {
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  display: block;
  font-size: 0.95rem;
}

.fh-nav li a:hover {
  color: #ffcc00;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 1000;
  padding: 0.5rem 0;
  white-space: nowrap;
  flex-direction: column;
}

.dropdown:hover > .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  padding: 0.75rem 1rem;
  display: block;
  color: #031030;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
  color: #8b0000;
}

.hero {
  /* flag + blue overlay in one go */
  background:
    linear-gradient(rgba(3,16,48,0.6), rgba(3,16,48,0.6)),
    url('/images/american-flag-1024.jpg') center/cover no-repeat;

  /* full‑screen height + centering */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* text */
  color: white;
  text-align: center;
  padding: 0 2rem;
}


.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease;
}

.btn-primary {
  background: #8b0000;
  color: white;
}

.btn-primary:hover {
  background: #a30000;
}

.features {
  background: white;
  padding: 3rem 1rem;
}

.features .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature {
  flex: 1 1 250px;
  background: #f1f1f1;
  padding: 1.5rem;
  border-radius: 10px;
}

.feature h2 {
  margin-top: 0;
  color: #031030;
}

.highlight {
  background: #fff5d7;
  padding: 3rem 1rem;
  text-align: center;
}

.highlight h2 {
  margin-bottom: 1rem;
  color: #444;
}

.cta {
  background: #031030;
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.cta a {
  color: #ffcc00;
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .features .grid {
    flex-direction: column;
  }

  .fh-header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .fh-header-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .fh-nav-toggle {
    display: flex;
    margin-top: 0.5rem;
    justify-content: flex-start;
  }

  .fh-contact {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.5rem;
  }

  .fh-nav {
    display: none;
    width: 100%;
  }

  .fh-nav.open {
    display: block;
  }

  .fh-nav.open ul {
    flex-direction: column;
    gap: 0;
  }

  .fh-nav.open li a {
    padding: 1rem;
    border-top: 1px solid #eee;
  }

  .fh-header,
  .fh-nav.open {
    width: 100%;
    padding: 0.5rem 1rem;
  }
  

}

/* tighten up dropdown spacing */
.fh-nav .dropdown-menu {
  padding: 0.25rem 0;          /* less space above & below the items */
}
.fh-nav .dropdown-menu li a {
  padding: 0.4rem 1rem;        /* shrink the top/bottom padding on each link */
  line-height: 1.3;            /* optional: pull the text lines a bit closer */
}

/* ========== MOBILE FIRST ========== */
/* Always show the hamburger button */
.fh-nav-toggle {
  display: flex;               /* show by default */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 20;
}

/* Hide the full menu until it’s “open” */
.fh-nav {
  display: none;
  width: 100%;
}

/* When “open” is toggled via JS, reveal it */
.fh-nav.open {
  display: block;
}

/* ========== DESKTOP OVERRIDES ========== */
@media (min-width: 769px) {
  /* Hide the hamburger on desktop */
  .fh-nav-toggle {
    display: none !important;
  }

  /* Always show desktop nav */
  .fh-nav {
    display: block !important;
  }
  
  /* And if you had .fh-nav.open rules, they’ll still work, but aren’t needed */
}
