/* ============================================================
   Value Hunter Daily — Shared Stylesheet
   Brand Colors:
     Navy:   #1E3A5F
     Orange: #E07B00
     Light:  #F8F9FA
     Text:   #2C2C2C
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #2C2C2C;
  background: #FFFFFF;
  line-height: 1.7;
}

a { color: #1E3A5F; text-decoration: none; }
a:hover { color: #E07B00; text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #1E3A5F;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p  { margin-bottom: 1rem; }

/* ---------- Layout Containers ---------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: #FFFFFF;
  border-bottom: 3px solid #E07B00;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Logo: never stretch, always natural aspect ratio */
.logo-img {
  height: 44px;
  width: auto;        /* CRITICAL: let width follow natural ratio */
  max-width: none;    /* override global img max-width:100% */
  display: block;
  object-fit: contain;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1E3A5F;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Nav Links */
.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E3A5F;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  background: #1E3A5F;
  color: #FFFFFF;
  text-decoration: none;
}
.site-nav a.nav-cta {
  background: #E07B00;
  color: #FFFFFF;
  border-radius: 6px;
}
.site-nav a.nav-cta:hover { background: #c96b00; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #2a5080 100%);
  color: #FFFFFF;
  padding: 5rem 1.25rem 4rem;
  text-align: center;
}
.hero h1 { color: #FFFFFF; margin-bottom: 1rem; }
.hero p  { font-size: 1.15rem; max-width: 640px; margin: 0 auto 2rem; opacity: 0.9; }
.hero-badge {
  display: inline-block;
  background: #E07B00;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: #E07B00;
  color: #FFFFFF;
  border: 2px solid #E07B00;
}
.btn-primary:hover { background: #c96b00; border-color: #c96b00; color: #fff; text-decoration: none; }
.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.btn-outline:hover { background: #FFFFFF; color: #1E3A5F; text-decoration: none; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: #F8F9FA;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 2rem 1.25rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #E07B00;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: #6B7280;
  font-weight: 500;
}

/* ---------- Feature Cards ---------- */
.features-section {
  padding: 4rem 1.25rem;
  background: #FFFFFF;
}
.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: #6B7280;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-card {
  background: #F8F9FA;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid #E5E7EB;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(30,58,95,0.12);
  transform: translateY(-3px);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p  { color: #6B7280; font-size: 0.95rem; margin: 0; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: #1E3A5F;
  color: #FFFFFF;
  padding: 4rem 1.25rem;
  text-align: center;
}
.cta-section h2 { color: #FFFFFF; margin-bottom: 1rem; }
.cta-section p  { opacity: 0.85; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #2a5080 100%);
  color: #FFFFFF;
  padding: 3.5rem 1.25rem 3rem;
  text-align: center;
}
.page-hero h1 { color: #FFFFFF; margin-bottom: 0.5rem; }
.page-hero p  { opacity: 0.85; max-width: 600px; margin: 0 auto; }

/* ---------- Content Sections ---------- */
.content-section {
  padding: 3.5rem 1.25rem;
  max-width: 820px;
  margin: 0 auto;
}
.content-section h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #E07B00;
}
.content-section h2:first-child { margin-top: 0; }
.content-section ul, .content-section ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.content-section li { margin-bottom: 0.4rem; }

/* ---------- About Page ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.team-card {
  background: #F8F9FA;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #E5E7EB;
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1E3A5F;
  color: #FFFFFF;
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.85rem; color: #E07B00; font-weight: 600; margin-bottom: 0.75rem; }
.team-card p  { font-size: 0.9rem; color: #6B7280; margin: 0; }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.mission-item {
  background: #F8F9FA;
  border-left: 4px solid #E07B00;
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
}
.mission-item h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.mission-item p  { font-size: 0.9rem; color: #6B7280; margin: 0; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-card {
  background: #F8F9FA;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid #E5E7EB;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-card h3  { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-card p   { font-size: 0.9rem; color: #6B7280; margin: 0; }
.contact-card a   { color: #E07B00; font-weight: 600; }

.contact-form-wrap h2 { margin-bottom: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #1E3A5F;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #2C2C2C;
  background: #FFFFFF;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1E3A5F;
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: #9CA3AF; margin-top: 0.5rem; }

/* ---------- FAQ Accordion ---------- */
.faq-section {
  background: #F8F9FA;
  padding: 3.5rem 1.25rem;
}
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E3A5F;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: #E07B00;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.1rem;
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1E3A5F;
  color: #CBD5E1;
  padding: 3rem 1.25rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size: 0.9rem; margin-top: 0.75rem; opacity: 0.8; }

/* Footer logo: white version via CSS filter, natural aspect ratio */
.footer-logo-img {
  height: 38px;
  width: auto;        /* CRITICAL: natural width */
  max-width: none;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #CBD5E1; font-size: 0.9rem; }
.footer-col a:hover { color: #E07B00; text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  opacity: 0.7;
}
.footer-bottom a { color: #CBD5E1; }
.footer-bottom a:hover { color: #E07B00; }
.footer-disclaimer {
  font-size: 0.78rem;
  opacity: 0.65;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  line-height: 1.6;
}

/* ---------- Utility ---------- */
.text-orange { color: #E07B00; }
.text-navy   { color: #1E3A5F; }
.bg-light    { background: #F8F9FA; }
.divider     { border: none; border-top: 1px solid #E5E7EB; margin: 2rem 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
  .contact-grid   { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .nav-toggle     { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    gap: 0.25rem;
  }
  .site-nav.open  { display: flex; }
  .site-nav a     { padding: 0.75rem 1rem; border-radius: 6px; }
  .features-grid  { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: 1fr; }
  .mission-grid   { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .hero           { padding: 3.5rem 1.25rem 3rem; }
  .page-hero      { padding: 2.5rem 1.25rem 2rem; }
}
