/* =========================================================
   Burros for Heroes Foundation, Inc.
   Shared Website Styles
   ========================================================= */

/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Images */
img {
  max-width: 100%;
}

/* Main layout container */
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* =========================================================
   Header / Logo / Navigation
   Keeps the logo and tabs locked in the same position
   ========================================================= */

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(18, 48, 79, 0.1);
  position: relative;
  z-index: 10;
}

.site-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header .logo {
  width: 120px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.site-header .nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #12304f;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.55rem 0.7rem;
  white-space: nowrap;
  line-height: 1;
  min-height: 38px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header .nav a:hover,
.site-header .nav a.active {
  background-color: #12304f;
  color: #ffffff;
}

@media (max-width: 1000px) {
  .site-header .header-inner {
    flex-direction: column;
    justify-content: center;
  }

  .site-header .nav {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-header .logo {
    width: 105px;
  }

  .site-header .nav a {
    font-size: 0.86rem;
    padding: 0.5rem 0.6rem;
  }
}

/* =========================================================
   Typography helpers
   ========================================================= */

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  font-weight: 900;
}

p {
  color: #2f3b45;
}

.section-label {
  color: #556b2f;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: #12304f;
  color: #ffffff;
  border-color: #12304f;
}

.btn-primary:hover {
  background-color: #0d243b;
  border-color: #0d243b;
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  color: #12304f;
  border-color: #12304f;
}

.btn-outline:hover {
  background-color: #12304f;
  color: #ffffff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

@media (max-width: 520px) {
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row .btn {
    width: 100%;
  }
}

/* =========================================================
   Reusable option navigation cards
   ========================================================= */

.option-clean {
  background-color: #ffffff;
  border: 1px solid rgba(18, 48, 79, 0.12);
  border-radius: 18px;
  padding: 1rem;
  min-height: 128px;
  box-shadow: 0 10px 24px rgba(18, 48, 79, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.option-clean:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(18, 48, 79, 0.1);
}

.option-clean strong {
  color: #12304f;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.option-clean span {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.35;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background-color: #12304f;
  color: #ffffff;
}

.footer-clean {
  padding: 1.4rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 720px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   Contact form shared helpers
   ========================================================= */

input,
select,
textarea,
button {
  font-family: inherit;
}

.hidden-field {
  display: none;
}

/* =========================================================
   Follow the Mission social links section
   Reusable section for Facebook, TikTok, and LinkedIn
   ========================================================= */

.social-section {
  padding: 2.5rem 0;
  background-color: rgba(247, 243, 232, 0.65);
}

.social-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.social-wrap h2 {
  color: #12304f;
  margin-bottom: 0.75rem;
}

.social-wrap p {
  font-size: 1.07rem;
  max-width: 760px;
  margin: 0 auto 1rem;
}

.social-button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

/* Forces all social buttons to match, even if one uses btn-primary by mistake */
.social-button-row .btn {
  background-color: transparent;
  color: #12304f;
  border-color: #12304f;
}

.social-button-row .btn:hover {
  background-color: #12304f;
  color: #ffffff;
  border-color: #12304f;
}

@media (max-width: 520px) {
  .social-section {
    padding: 2rem 0;
  }

  .social-button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .social-button-row .btn {
    width: 100%;
  }
}