/* ============================================
   Landing Page Styles — Andy Barnhart Photography
   ============================================ */

/* ---- Landing Hero ---- */
.lp-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* ---- Intro ---- */
.lp-intro {
  padding: 80px 0 40px;
}

.lp-intro-inner {
  max-width: 780px;
  margin: 0 auto;
}

.lp-intro p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.85;
  font-style: italic;
  font-family: var(--font-serif);
}

/* ---- Gallery Strip ---- */
.lp-gallery {
  padding: 0 0 0;
}

.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lp-gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.lp-gallery-grid img:hover {
  transform: scale(1.02);
}

/* ---- Body Copy ---- */
.lp-body {
  padding: 80px 0;
}

.lp-body-inner {
  max-width: 780px;
  margin: 0 auto;
}

.lp-body h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.lp-body h2:first-child {
  margin-top: 0;
}

.lp-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.lp-body p:last-of-type {
  margin-bottom: 0;
}

.lp-body strong {
  color: var(--color-text);
  font-weight: 500;
}

/* Location / feature list */
.lp-locations {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.5rem;
}

.lp-locations li {
  padding: 12px 0 12px 20px;
  position: relative;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-border);
}

.lp-locations li:first-child {
  border-top: 1px solid var(--color-border);
}

.lp-locations li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

.lp-locations li strong {
  color: var(--color-text);
  font-weight: 500;
}

.lp-body .btn {
  margin-top: 2.5rem;
}

/* ---- FAQ Section ---- */
.faq-section {
  padding: 80px 0;
  background: var(--color-warm-white);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-of-type {
  border-top: 1px solid var(--color-border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.35;
}

.faq-q svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a p {
  color: var(--color-text-light);
  font-size: 0.93rem;
  line-height: 1.85;
  padding-bottom: 20px;
}

/* ---- CTA Section ---- */
.lp-cta {
  padding: 100px 0;
  text-align: center;
}

.lp-cta h2 {
  margin-bottom: 1rem;
}

.lp-cta p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ---- Footer Service Links ---- */
.footer-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
  margin-top: 14px;
}

.footer-service-links a {
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.footer-service-links a:hover {
  color: var(--color-accent);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .lp-intro {
    padding: 60px 0 32px;
  }

  .lp-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-body {
    padding: 60px 0;
  }

  .faq-section {
    padding: 60px 0;
  }

  .lp-cta {
    padding: 80px 0;
  }
}

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

  .lp-intro p {
    font-size: 1rem;
  }
}
