/* =============================================
   Page Advancements, LLC — Main Stylesheet
   ============================================= */

:root {
  --green-dark:   #2C4A2E;
  --green-mid:    #3D6B40;
  --green-soft:   #3A5C3C;
  --green-light:  #8BA888;
  --gold:         #C4A24D;
  --gold-light:   #D4B56A;
  --cream:        #F8F5F0;
  --cream-dark:   #EDE8E0;
  --text-dark:    #1E2D1F;
  --text-muted:   #6B7280;
  --white:        #FFFFFF;
}

/* ---- Smooth scrolling + fixed-navbar anchor offset ---- */
html {
  scroll-behavior: smooth;
}

/* Sections targeted by in-page anchors clear the fixed navbar */
section[id],
div[id] {
  scroll-margin-top: 150px;
}

/* ---- Typography ---- */
body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 0;
}

/* ---- Navigation ---- */
#mainNav {
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#mainNav.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.navbar-brand img {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
  border: 1px solid var(--gold);
  border-radius: 4px;
  transition: filter 0.3s;
}

#mainNav.scrolled .navbar-brand img {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--white);
}

.brand-llc {
  font-size: 0.85em;
  color: var(--gold);
}

.navbar-nav .nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88) !important;
  padding: 0.5rem 0.85rem;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.btn-nav {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 0 !important;
  padding: 0.45rem 1.1rem !important;
  transition: background 0.2s, color 0.2s;
}

.btn-nav:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  background: url('images/hero.png') center center / cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(28,46,30,0.82) 0%, rgba(28,46,30,0.45) 100%);
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 480px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
}

.btn-green {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.2s;
}

.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}

.btn-outline-green {
  border: 1.5px solid var(--green-dark);
  color: var(--green-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-green:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* ---- Backgrounds ---- */
.bg-cream    { background: var(--cream); }
.bg-cream-dk { background: var(--cream-dark); }
.bg-green-soft { background: var(--green-soft); }

/* ---- Value Cards ---- */
.value-card {
  border: 1px solid var(--cream-dark);
  transition: box-shadow 0.25s, transform 0.25s;
}

.value-card:hover {
  box-shadow: 0 8px 30px rgba(44,74,46,0.10);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 2rem;
  color: var(--gold);
}

.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

/* ---- Approach Cards ---- */
.approach-card {
  background: var(--white);
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.25s;
}

.approach-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

.approach-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.link-gold {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.link-gold:hover { color: var(--gold-light); }

/* ---- About Image ---- */
.about-image-frame {
  max-width: 420px;
}

.rounded-organic {
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
  max-height: 500px;
  border: 5px solid var(--cream-dark);
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--green-dark);
}

/* ---- Page Heroes (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 9rem 0 4rem;
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
}

.page-hero .lead {
  opacity: 0.8;
  font-weight: 300;
}

/* ---- Divider ---- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem auto;
}

.gold-divider-left {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem 0;
}

/* ---- About Page ---- */
.bio-highlight {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.6;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.credential-item:last-child { border-bottom: none; }

.credential-icon {
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* ---- Approach Page ---- */
.approach-section {
  padding: 4rem 0;
}

.approach-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1rem;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.skill-item:last-child { border-bottom: none; }

.skill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- Values Page ---- */
.value-block {
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
  background: var(--white);
  height: 100%;
}

.value-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

/* ---- Fees Page ---- */
.fee-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.25s;
}

.fee-card:hover {
  box-shadow: 0 8px 30px rgba(44,74,46,0.10);
}

.fee-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}

.fee-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 1.5px solid var(--cream-dark);
  color: var(--green-dark);
  font-size: 0.9rem;
  margin: 0.4rem;
}

/* ---- Contact Page ---- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: var(--cream);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.form-control {
  border-radius: 0;
  border-color: var(--cream-dark);
  padding: 0.75rem 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

.form-control:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 0.2rem rgba(61,107,64,0.15);
}

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
}

/* ---- Footer ---- */
.footer {
  background: var(--text-dark);
}

.footer-nav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

.footer .text-muted { color: rgba(255,255,255,0.35) !important; }

/* ---- Utilities ---- */
.text-gold { color: var(--gold) !important; }
.text-green-dark { color: var(--green-dark) !important; }

/* ---- Responsive Tweaks ---- */
@media (max-width: 767px) {
  .hero { min-height: 100svh; }
  .hero-title { font-size: 2.5rem; }
  .page-hero { padding: 7rem 0 3rem; }
  .rounded-organic { max-height: 300px; }
  .value-block { padding: 1.5rem; }
  .bio-highlight { padding: 1rem 1.25rem; }
}
