/* ==========================================================================
   Lee's Custom Tailoring — Wedding Page Additions
   Loaded after style.css. Contains ONLY rules specific to weddings.html;
   the approved homepage (index.html + style.css) is not modified by this file.
   ========================================================================== */

/* -------------------- Hero lead copy --------------------
   The hero reuses the homepage's .hero-image-photo background (same
   photo, same treatment) — intentional, for brand consistency between
   the two pages. No image override needed here. */

.hero-lead {
  font-size: 1.15rem;
  color: var(--color-warm-gray-light);
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* -------------------- Active nav state (this page) -------------------- */
.nav-link-active::after {
  width: 100%;
}

/* -------------------- Wider hamburger-nav range for the 10-item nav --------------------
   The shared 900px breakpoint in style.css was tuned for a 9-item nav.
   This page's nav now has 10 items (includes "Knowledge"), so it needs a
   wider range before the horizontal nav has room. Scoped to this page
   only via wedding.css — style.css itself is not modified. */
@media (min-width: 901px) and (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--color-off-white);
    border-bottom: 1px solid var(--color-warm-gray-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .primary-nav.open { max-height: 400px; }
  .primary-nav ul { flex-direction: column; gap: 0; padding: 10px 32px 26px; }
  .primary-nav li { border-bottom: 1px solid var(--color-warm-gray-light); }
  .primary-nav li:last-child { border-bottom: none; }
  .nav-link { display: block; padding: 14px 0; }
}

/* -------------------- Section 2: Three Wedding Paths -------------------- */
.wedding-paths {
  padding: 110px 0 120px;
  background-color: var(--color-white);
}

.wedding-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 50px;
}

.wedding-path-card {
  border: 1px solid var(--color-warm-gray-light);
  padding: 48px 40px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.wedding-path-card:hover,
.wedding-path-card:focus-within {
  border-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(11, 11, 10, 0.08);
}

.wedding-path-card h3 {
  font-size: 1.35rem;
  margin-bottom: 22px;
  text-align: center;
}

.wedding-path-card ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.wedding-path-card li {
  position: relative;
  padding-left: 22px;
  color: var(--color-charcoal-light);
  font-size: 0.95rem;
}

.wedding-path-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
}

.wedding-paths-note {
  margin-top: 44px;
  color: var(--color-charcoal-light);
  font-size: 0.88rem;
  font-style: italic;
}

/* -------------------- Section 3: Why Master Tailor Fitting Matters -------------------- */
.wedding-fit-matters {
  padding: 120px 0;
  background-color: var(--color-off-white);
}

.wedding-fit-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.wedding-fit-text p {
  color: var(--color-charcoal-light);
  margin-bottom: 18px;
}

.dot-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 4px 0 26px;
}

.dot-list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-charcoal-light);
  font-size: 0.95rem;
}

.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
}

/* -------------------- Section 4: Wedding Process -------------------- */
.wedding-process {
  padding: 120px 0;
  background-color: var(--color-white);
}

.wedding-process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.wedding-process-step {
  text-align: center;
}

.wedding-process-step h3 {
  font-size: 1.05rem;
  margin: 4px 0 8px;
}

.wedding-process-step p {
  color: var(--color-charcoal-light);
  font-size: 0.88rem;
  max-width: 240px;
  margin: 0 auto;
}

.wedding-process-note {
  margin-top: 60px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-charcoal);
}

/* -------------------- Section 5: Wedding Party Coordination -------------------- */
.wedding-coordination {
  padding: 120px 0;
  background-color: var(--color-off-white);
}

/* -------------------- Section 6: Beyond the Wedding Day -------------------- */
.wedding-beyond {
  padding: 120px 0;
  background-color: var(--color-white);
}

/* -------------------- Section 8: Final CTA -------------------- */
.wedding-final-cta {
  padding: 130px 0;
  background-color: var(--color-charcoal);
  color: var(--color-off-white);
  text-align: center;
}

.wedding-final-cta h2 {
  color: var(--color-white);
  font-size: 2.3rem;
  max-width: 760px;
  margin: 0 auto 38px;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 1024px) {
  .wedding-fit-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wedding-path-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .wedding-paths,
  .wedding-fit-matters,
  .wedding-process,
  .wedding-coordination,
  .wedding-beyond {
    padding: 80px 0;
  }

  .wedding-final-cta {
    padding: 90px 0;
  }

  .wedding-path-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 34px;
  }

  .wedding-process-grid {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .dot-list {
    grid-template-columns: 1fr;
  }

  .wedding-final-cta h2 {
    font-size: 1.65rem;
  }
}
