/* ============================================================
   process.css — Process page ONLY
   style.css must be loaded before this file.
   Contains: Hero, video embed, 13-step alternating layout.
   Navigation, CTA Card, Footer → style.css only.
   ============================================================ */

/* ── HERO BANNER ────────────────────────────────────────── */
.pr-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
 background: url('assets/process-bg.png') center/cover no-repeat;
 margin-bottom: 60px;
}

.pr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}

.pr-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
}

.pr-hero-logo-wrap {
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  padding: .5rem;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr-hero-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.pr-hero-title {
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

/* ── VIDEO EMBED ────────────────────────────────────────── */
.pr-video {
  background: #ffffff;
  padding-bottom: 1rem;
}

.pr-video-inner {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.pr-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  margin-bottom: 1rem;
}

.pr-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pr-video-label {
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #9B7C2E;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .5rem;
}

/* ── STEPS SECTION ──────────────────────────────────────── */
.pr-steps {
  background: #ffffff;
  padding-top: 0;
}

/* Each step row */
.pr-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-block: 0;
}


/* Image always rounded pill/oval */
.pr-step-img {
  width: 100%;
  border-radius: 2000px;
  overflow: hidden;
}

@media (max-width: 640px) {

  /* Process layout for phones only */
.pr-step {
  grid-template-columns: 1fr;
  text-align: center;
}

.pr-step-img-left,
.pr-step-img-right {
  order: 2;
}

.pr-step-body {
  order: 1;
}

.pr-step-img {
  margin: 0 auto;
}

  .pr-step-img {
  border-radius: 16px;
}

}

.pr-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.pr-step:hover .pr-step-img img { transform: scale(1.02); }

/* Text body */
.pr-step-body {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 408px;
}

.pr-step-num {
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #9B7C2E;
  line-height: 1;
}

.pr-step-title {
  font-family: 'Inria Serif', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}

.pr-step-body p {
  font-size: 20px;
  color: #444444;
  line-height: 1.7;
  font-weight: 400;
}

/* Alternating: img-left = image first, img-right = text first */
.pr-step--img-left  { }
.pr-step--img-right { }

/* On img-right rows the grid order is already: body | img
   so no change needed — HTML order handles it */

/* ── RESPONSIVE — TABLET ────────────────────────────────── */
@media (max-width: 900px) {
  .pr-step     { gap: 2rem; }
  .pr-step-img { border-radius: 80px; }
  .pr-step-title { font-size: 20px; }
}

/* ── RESPONSIVE — MOBILE ────────────────────────────────── */
@media (max-width: 640px) {
  .pr-hero       { height: 220px; }
  .pr-hero-title { font-size: 28px; }
  .pr-connector {
  display: none;
}

  /* Stack all steps vertically, image always on top */
  .pr-step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-block: 2.5rem;
  }

  /* For img-right rows, move image before text on mobile */
  .pr-step--img-right .pr-step-img { order: -1; }

  .pr-step-img { border-radius: 16px; }
}

/* PROCESS CONNECTOR */

.pr-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  pointer-events: none;
}

@media (max-width: 640px) {

  .pr-connector {
    display: none;
    margin: 0;
  }

}

.pr-connector img {
  width:500px;
  max-width: 70%;
  opacity: 0.9;
}