/* ==============================================
   Veterans Restoration of Louisville – site.css
   Mobile-first shared stylesheet
   ============================================== */

/* === BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; color: #222; overflow-x: hidden; }
img { max-width: 100%; display: block; }

/* === NAV ===
   Nav markup + styling now lives in _includes/nav.html (single
   source of truth, included by _layouts/default.html on every
   page). Do not re-add nav rules here. */

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: #B22222; color: white;
  padding: 15px 32px; min-height: 44px;
  font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600;
  text-decoration: none; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 3px; border: 2px solid #B22222;
  transition: background 0.2s, border-color 0.2s; cursor: pointer;
  line-height: 1.2;
}
.btn-primary:hover { background: #8B0000; border-color: #8B0000; color: white; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: white;
  padding: 15px 32px; min-height: 44px;
  font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600;
  text-decoration: none; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 3px; border: 2px solid white;
  transition: background 0.2s, color 0.2s; cursor: pointer;
  line-height: 1.2;
}
.btn-outline:hover { background: white; color: #1a1a2e; }

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center;
  background: #0f0f23; color: white;
  padding: 15px 32px; min-height: 44px;
  font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600;
  text-decoration: none; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 3px; border: 2px solid #0f0f23;
  transition: 0.2s; cursor: pointer; line-height: 1.2;
}
.btn-dark:hover { background: #1a1a4e; border-color: #1a1a4e; color: white; }

/* === SHARED SECTION ELEMENTS === */
.section-eyebrow {
  display: block;
  font-family: 'Oswald', sans-serif; font-size: 13px;
  letter-spacing: 3px; color: #B22222; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-divider { width: 60px; height: 4px; background: #B22222; margin-bottom: 28px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(to bottom, rgba(10,10,30,0.88) 0%, rgba(10,10,30,0.75) 60%, rgba(178,34,34,0.5) 100%),
              url('/assets/images/Logo_Dean.jpeg') center / cover no-repeat;
  padding: 120px 24px 64px;
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to right, #B22222, #ffffff, #3C3B6E);
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: #B22222; font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero-eyebrow::before, .page-hero-eyebrow::after { content: '★'; }
.page-hero h1 {
  font-family: 'Oswald', sans-serif; font-size: 44px; font-weight: 700;
  color: white; text-transform: uppercase; line-height: 1.05;
  margin-bottom: 16px; text-shadow: 2px 4px 12px rgba(0,0,0,0.8);
}
.page-hero h1 .red { color: #B22222; }
.page-hero .hero-sub {
  color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.8;
  max-width: 640px; margin: 0 auto 32px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

@media (min-width: 768px) {
  .page-hero { padding: 140px 80px 80px; }
  .page-hero h1 { font-size: 60px; }
}

/* === BADGES BAND === */
.badges {
  background: #3C3B6E;
  padding: 36px 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.badge-item {
  color: white; text-align: center;
  padding: 12px 18px; min-width: 120px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.badge-item:last-child { border-right: none; }
.badge-item span { display: block; font-size: 26px; margin-bottom: 6px; }
.badge-item strong {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 2px;
}
.badge-item p { font-size: 11px; color: rgba(255,255,255,0.55); }

@media (min-width: 768px) {
  .badges { padding: 44px 40px; }
  .badge-item { padding: 16px 40px; min-width: 150px; }
  .badge-item span { font-size: 36px; margin-bottom: 8px; }
  .badge-item strong { font-size: 13px; margin-bottom: 4px; }
  .badge-item p { font-size: 12px; }
}

/* === CONTACT STRIP === */
.contact-strip {
  background: #0f0f23;
  padding: 32px 24px;
  border-top: 3px solid #B22222;
  text-align: center;
}
.contact-strip h3 {
  font-family: 'Oswald', sans-serif; color: white;
  font-size: 22px; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 20px;
}
.contact-strip h3 span { color: #B22222; }
.contact-links {
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap; justify-content: center;
}
.contact-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 15px; transition: color 0.2s;
  min-height: 44px; display: flex; align-items: center;
  white-space: nowrap;
}
.contact-links a:hover { color: #B22222; }

@media (min-width: 768px) {
  .contact-strip {
    padding: 36px 80px;
    display: flex;
    justify-content: space-between; align-items: center;
    text-align: left; flex-wrap: wrap; gap: 20px;
  }
  .contact-strip h3 { margin-bottom: 0; font-size: 26px; }
  .contact-links { gap: 32px; }
}

/* === FOOTER === */
footer {
  background: #080818;
  color: rgba(255,255,255,0.5);
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
}
footer .footer-logo {
  height: 50px; opacity: 0.85;
  margin: 0 auto 16px; display: block;
}
.footer-links { margin: 16px 0; }
.footer-links a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  margin: 0 8px; display: inline-block; margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #B22222; }
.footer-social { margin: 12px 0 8px; }
.footer-social a {
  color: rgba(255,255,255,0.6); font-size: 18px;
  margin: 0 8px; text-decoration: none; transition: color 0.2s;
}
.footer-social a:hover { color: #B22222; }

@media (min-width: 768px) {
  footer {
    padding: 32px 80px;
    display: flex;
    justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px; text-align: left;
  }
  footer .footer-logo { margin: 0; }
  .footer-links a { margin-bottom: 0; }
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a4e 50%, #0f0f23 100%);
  padding: 64px 24px;
  text-align: center;
  border-top: 4px solid #B22222;
  border-bottom: 4px solid #B22222;
}
.cta-banner .stars-row {
  color: #B22222; font-size: 20px; letter-spacing: 8px; margin-bottom: 20px;
}
.cta-banner h2 {
  font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700;
  color: white; text-transform: uppercase; line-height: 1.1; margin-bottom: 16px;
}
.cta-banner h2 .red { color: #B22222; }
.cta-banner p {
  color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.7;
  margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (min-width: 768px) {
  .cta-banner { padding: 80px 80px; }
  .cta-banner h2 { font-size: 52px; }
}

/* === TAGLINE BAND === */
.tagline-band {
  background: #0f0f23;
  padding: 24px 24px;
  text-align: center;
  border-bottom: 3px solid #B22222;
}
.tagline-band h2 {
  font-family: 'Oswald', sans-serif; font-size: 22px;
  color: white; text-transform: uppercase; letter-spacing: 3px;
}
.tagline-band h2 span { color: #B22222; }
@media (min-width: 768px) {
  .tagline-band { padding: 28px 40px; }
  .tagline-band h2 { font-size: 32px; }
}

/* === CARDS === */
.card {
  background: white; border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 4px solid #B22222;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.card-body { padding: 28px 24px; }
.card h3 {
  font-family: 'Oswald', sans-serif; font-size: 20px;
  color: #0f0f23; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 10px;
}
.card p { color: #555; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.card-link {
  color: #B22222; font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; font-weight: 600;
}
.card-link:hover { text-decoration: underline; }

/* === GRID UTILITIES === */
.grid-1 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }

@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* === SECTION WRAPPERS === */
.section-light { background: #f4f4f4; padding: 60px 24px; }
.section-dark { background: #0f0f23; padding: 60px 24px; }
.section-white { background: white; padding: 60px 24px; }
.section-navy { background: #3C3B6E; padding: 60px 24px; }
.inner { max-width: 1100px; margin: 0 auto; }
.inner-wide { max-width: 1280px; margin: 0 auto; }

@media (min-width: 768px) {
  .section-light, .section-dark, .section-white, .section-navy { padding: 80px 40px; }
}

/* === SECTION HEADING PATTERN === */
.section-heading {
  font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700;
  color: #0f0f23; text-transform: uppercase; line-height: 1.1;
  margin-bottom: 8px;
}
.section-heading.light { color: white; }
.section-heading .red { color: #B22222; }

@media (min-width: 768px) {
  .section-heading { font-size: 40px; }
}

/* === PROCESS STEPS === */
.step-num {
  width: 56px; height: 56px;
  background: #B22222; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700;
  color: white; margin: 0 auto 14px; flex-shrink: 0;
}
.process-step { text-align: center; }
.process-step h3 {
  font-family: 'Oswald', sans-serif; font-size: 17px;
  color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.process-step p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; }

/* === WHY ITEMS === */
.why-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding-bottom: 22px; margin-bottom: 22px;
  border-bottom: 1px solid #e0e0e0;
}
.why-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.why-icon {
  background: #B22222; color: white;
  width: 42px; height: 42px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.why-item h3 {
  font-family: 'Oswald', sans-serif; font-size: 17px;
  color: #0f0f23; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 4px;
}
.why-item p { color: #555; font-size: 14px; line-height: 1.6; }

/* === STORM ITEMS === */
.storm-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid #B22222;
  padding: 18px 20px; border-radius: 3px;
}
.storm-item h3 {
  font-family: 'Oswald', sans-serif; color: white;
  font-size: 15px; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 6px;
}
.storm-item p { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.6; }

/* === FORM ELEMENTS === */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #0f0f23; margin-bottom: 8px; font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 2px solid #ddd; border-radius: 3px;
  font-family: 'Open Sans', sans-serif; font-size: 15px;
  color: #222; background: white;
  transition: border-color 0.2s; min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: #B22222;
}
.form-group textarea { min-height: 130px; resize: vertical; }
