/* Videography page specific styles */

/* ── Hero overrides ── */
.section-hero.text-bottom p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 500px;
}

/* ── Section backgrounds ── */
.section-why-video { background: var(--color-white); }
.section-video-highlights { background: #f9f9f9; }
.section-packages { background: var(--color-white); }
.section-bundle { background: #f9f9f9; }
.section-process { background: var(--color-white); }

/* ── Video grid ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-featured {
  grid-column: 1 / -1;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: none;
}

/* ── Package cards — videography overrides ── */
.package-card {
  padding: 2rem 1.5rem;
  position: relative;
}

.package-subtitle { font-size: 0.85rem; color: #666; margin-bottom: 1rem; }

.package-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.package-features {
  margin: 0 0 1.5rem;
  flex-grow: 1;
  border-top: none;
}

.package-features li {
  border-bottom: 1px solid #f0f0f0;
}

.package-features li:last-child { border-bottom: none; }

/* ── Bundle callout ── */
.bundle-callout {
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.bundle-callout h3 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.bundle-callout p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

/* ── Benefits grid ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.benefit-card {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
}

.benefit-card h3 { font-size: var(--heading-h3-card); font-weight: 400; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; line-height: 1.5; }

/* ── Process steps ── */
.process-steps { margin-top: 2rem; }

.process-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 50px;
  bottom: -1.5rem;
  width: 2px;
  background: #e5e5e5;
}

.step-number {
  width: 50px; height: 50px;
  background: var(--color-primary, #5A5047);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.step-content h3 { margin-bottom: 0.5rem; font-size: var(--heading-h3-card); font-weight: 400; }
.step-content p { color: var(--color-text-light); margin: 0; line-height: 1.6; font-size: 0.95rem; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}
