/*
Theme Name: Ledger Forged
Theme URI: https://ledgerforged.com
Author: Ledger Forged
Description: Custom theme for Ledger Forged, a QBO certified bookkeeping practice serving small and medium sized businesses nationwide.
Version: 1.0
Requires at least: 5.0
Requires PHP: 7.4
Text Domain: ledgerforged
*/

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f4f5f7;
  color: #333;
}
.site {
  max-width: 1100px;
  margin: 0 auto;
  background: #f4f5f7;
  overflow: hidden;
}

/* NAV */
nav.site-nav {
  background: #122845;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-lines {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-line {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.logo-line-1 { color: #ffffff; }
.logo-line-2 { color: #d9a441; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: #c7cfdb;
  list-style: none;
}
.nav-links a { color: inherit; text-decoration: none; }
.nav-links a:hover { color: #ffffff; }
.btn-consult {
  background: #ffffff;
  color: #122845;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* HERO */
.hero {
  background: #1a3358;
  padding: 80px 40px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: #dbe3ee;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
}
.hero-tagline {
  color: #d9a441;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  font-style: italic;
  margin-bottom: 8px;
}
.hero-audience {
  color: #8fa1ba;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero p.sub {
  color: #aeb9c9;
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: #d9a441;
  color: #3a2a08;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #4a5f7d;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* SERVICES */
.services {
  background: #eef0f3;
  padding: 60px 40px;
}
.section-title {
  color: #122845;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.section-subtitle {
  color: #5f5e5a;
  font-size: 14px;
  text-align: center;
  margin-bottom: 40px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #ffffff;
  border: 1px solid #d7dbe2;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.card i { color: #1a3358; font-size: 26px; }
.card h3 {
  color: #122845;
  font-size: 16px;
  font-weight: 600;
  margin: 14px 0 8px;
}
.card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* SPECIALIZED */
.specialized {
  background: #ffffff;
  padding: 60px 40px;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.spec-item {
  border-top: 3px solid #d9a441;
  padding: 18px 4px 4px;
  text-align: center;
}
.spec-item h4 {
  color: #122845;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.spec-item p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* ABOUT PAGE */
.about-hero {
  background: #1a3358;
  padding: 56px 40px;
  text-align: center;
}
.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #d9a441;
  margin-bottom: 20px;
}
.about-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 56px 40px;
}
.about-body p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-body p:last-child { margin-bottom: 0; }

/* CONTACT FORM */
.contact-section {
  background: #eef0f3;
  padding: 60px 40px;
}
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #d7dbe2;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  align-self: center;
}
.contact-details {
  max-width: 500px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #d7dbe2;
  padding-top: 24px;
}
.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
}
.contact-detail i { color: #1a3358; font-size: 18px; }
.contact-detail a { color: #4b5563; text-decoration: none; }
.contact-detail a:hover { color: #1a3358; text-decoration: underline; }

/* FOOTER */
footer.site-footer {
  background: #122845;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer .footer-name {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
footer .footer-tag {
  color: #8b98ab;
  font-size: 13px;
}
.footer-icons {
  display: flex;
  gap: 20px;
  color: #c7cfdb;
  font-size: 20px;
}
.footer-icons a { color: inherit; }

@media (max-width: 700px) {
  .cards-grid, .spec-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
