﻿/* ============================================================
   FILE: 11-process-timeline.css
   "How Your Talisman Is Prepared" — Timeline Section
   Project: Gentlwish.com
   ============================================================ */

/* ========================================
   SECTION CONTAINER
   ======================================== */

.gentlwish-process-section {
  background: var(--color-bg) !important;
  padding: 90px 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* ========================================
   SECTION HEADER
   ======================================== */

.gentlwish-process-header {
  text-align: center !important;
  margin-bottom: 60px !important;
}

.gentlwish-process-label {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--color-secondary) !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  margin: 0 0 12px !important;
  display: block !important;
}

.gentlwish-process-title {
  font-family: var(--font-heading) !important;
  font-size: 38px !important;
  font-weight: 600 !important;
  color: var(--color-text) !important;
  line-height: 1.2 !important;
  margin: 0 0 16px !important;
}

.gentlwish-process-intro {
  font-family: var(--font-body) !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  color: var(--color-text-light) !important;
  max-width: 540px !important;
  margin: 0 auto !important;
  line-height: 1.7 !important;
}

.gentlwish-process-divider {
  width: 50px !important;
  height: 2px !important;
  background: var(--color-secondary) !important;
  margin: 16px auto 0 !important;
}

/* ========================================
   TIMELINE — DESKTOP HORIZONTAL
   ======================================== */

.gentlwish-process-timeline {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  max-width: var(--content-width) !important;
  margin: 0 auto !important;
  padding: 0 var(--content-padding) !important;
  position: relative !important;
}

/* Timeline connecting line (behind the circles) */
.gentlwish-process-timeline::before {
  content: "" !important;
  position: absolute !important;
  top: 44px !important;
  left: calc(12.5% + 20px) !important;
  right: calc(12.5% + 20px) !important;
  height: 2px !important;
  background: var(--color-border) !important;
  z-index: 0 !important;
}

/* ========================================
   TIMELINE STEP
   ======================================== */

.gentlwish-process-step {
  flex: 1 !important;
  text-align: center !important;
  position: relative !important;
  z-index: 1 !important;
  padding: 0 12px !important;
  max-width: 260px !important;
}

/* ========================================
   STEP NUMBER / CIRCLE
   ======================================== */

.gentlwish-process-circle {
  width: 88px !important;
  height: 88px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  border: 2px solid var(--color-border) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 20px !important;
  position: relative !important;
  transition: all var(--transition-base) !important;
}

.gentlwish-process-circle .step-number {
  font-family: var(--font-heading) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--color-secondary) !important;
  transition: color var(--transition-base) !important;
}

.gentlwish-process-step:hover .gentlwish-process-circle {
  border-color: var(--color-primary) !important;
  background: var(--color-primary) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 8px 24px rgba(158, 42, 43, 0.15) !important;
}

.gentlwish-process-step:hover .gentlwish-process-circle .step-number {
  color: #FFFFFF !important;
}

/* ========================================
   STEP CONTENT
   ======================================== */

.gentlwish-process-step-title {
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--color-text) !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
}

.gentlwish-process-step-desc {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--color-text-light) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* ========================================
   STEP ICON (below circle, alternative)
   ======================================== */

.gentlwish-process-step-icon {
  display: block !important;
  font-size: 14px !important;
  color: var(--color-secondary) !important;
  margin-top: 4px !important;
  letter-spacing: 1px !important;
}

/* ========================================
   BACKGROUND DECORATION
   ======================================== */

.gentlwish-process-section::before {
  content: "" !important;
  position: absolute !important;
  bottom: -150px !important;
  left: -150px !important;
  width: 400px !important;
  height: 400px !important;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.04) 0%, transparent 60%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.gentlwish-process-section > * {
  position: relative !important;
  z-index: 1 !important;
}

/* ========================================
   TABLET (768-1024px)
   ======================================== */

@media screen and (max-width: 1024px) {
  .gentlwish-process-section {
    padding: 70px 0 !important;
  }

  .gentlwish-process-title {
    font-size: 32px !important;
  }

  .gentlwish-process-step {
    max-width: 220px !important;
  }

  .gentlwish-process-circle {
    width: 76px !important;
    height: 76px !important;
  }

  .gentlwish-process-circle .step-number {
    font-size: 24px !important;
  }

  .gentlwish-process-timeline::before {
    top: 38px !important;
  }
}

/* ========================================
   MOBILE — VERTICAL TIMELINE (max 767px)
   ======================================== */

@media screen and (max-width: 767px) {
  .gentlwish-process-section {
    padding: 56px 0 !important;
  }

  .gentlwish-process-title {
    font-size: 28px !important;
  }

  .gentlwish-process-header {
    margin-bottom: 40px !important;
  }

  /* Vertical layout */
  .gentlwish-process-timeline {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0 20px !important;
    gap: 0 !important;
  }

  /* Vertical line on left */
  .gentlwish-process-timeline::before {
    top: 44px !important;
    bottom: 44px !important;
    left: 28px !important;
    right: auto !important;
    width: 2px !important;
    height: auto !important;
  }

  .gentlwish-process-step {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    max-width: 100% !important;
    padding: 0 0 40px 0 !important;
    gap: 20px !important;
    position: relative !important;
  }

  .gentlwish-process-step:last-child {
    padding-bottom: 0 !important;
  }

  /* Circle on left side */
  .gentlwish-process-circle {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    margin: 0 !important;
  }

  .gentlwish-process-circle .step-number {
    font-size: 20px !important;
  }

  .gentlwish-process-step-content {
    flex: 1 !important;
    padding-top: 6px !important;
  }

  .gentlwish-process-step-title {
    font-size: 18px !important;
    margin: 0 0 6px !important;
  }

  .gentlwish-process-step-desc {
    font-size: 14px !important;
  }
}
