/* ===================================
   AI FAMA - START HERE PAGE
   Roadmap-style learning path
   =================================== */

:root {
  --color-primary: #1C1C1E;
  --color-background: #F6F5F2;
  --color-secondary: #8E8E93;
  --color-accent: #9C7A4B;
  --color-white: #FFFFFF;
  --color-border: #E5E5E5;
  --color-hover: #736045;
  --color-light-bg: #FAFAF9;
}

/* ===================================
   PAGE CONTAINER
   =================================== */

.aifama-start-here {
  background: var(--color-background);
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.start-here-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===================================
   HEADER
   =================================== */

.start-here-header {
  padding: 40px 0 32px;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}

/* Breadcrumbs */
.start-here-breadcrumbs {
  font-size: 13px;
  color: var(--color-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.start-here-breadcrumbs a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.start-here-breadcrumbs a:hover {
  color: var(--color-accent);
}

.start-here-breadcrumbs .separator {
  margin: 0 8px;
  color: var(--color-secondary);
}

.start-here-breadcrumbs .current {
  color: var(--color-primary);
  font-weight: 500;
}

/* Page Title */
.start-here-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary);
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.start-here-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-secondary);
  max-width: 700px;
  margin: 0;
  font-weight: 400;
}

/* ===================================
   LEARNING ROADMAP
   =================================== */

.learning-roadmap {
  padding: 56px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ===================================
   STAGE CARD
   =================================== */

.stage-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s ease;
}

.stage-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Stage Header */
.stage-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.stage-number {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  background: var(--color-accent);
  padding: 8px 16px;
  border-radius: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.stage-info {
  flex: 1;
}

.stage-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.stage-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-secondary);
  margin: 0;
  font-weight: 400;
}

/* ===================================
   STAGE POSTS - Using Archive Card Style
   =================================== */

.stage-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stage-post-card {
  /* Inherits .archive-card styles from library.css */
}

.stage-no-posts {
  text-align: center;
  padding: 40px 20px;
  color: var(--color-secondary);
  font-size: 15px;
}

/* ===================================
   STAGE CONNECTOR (Arrow Between Stages)
   =================================== */

.stage-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  color: var(--color-accent);
}

.stage-connector svg {
  width: 24px;
  height: 48px;
}

/* ===================================
   CTA SECTION
   =================================== */

.start-here-cta {
  padding: 60px 0 80px;
  background: var(--color-background);
  border-top: 1px solid var(--color-border);
  margin-top: 40px;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.cta-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-secondary);
  margin: 0 0 28px 0;
}

.cta-button {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-accent);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: var(--color-hover);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(156, 122, 75, 0.3);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .start-here-container {
    padding: 0 24px;
  }
  
  .start-here-title {
    font-size: 36px;
  }
  
  .stage-posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stage-card {
    padding: 32px;
  }
  
  .stage-title {
    font-size: 24px;
  }
  
  .cta-title {
    font-size: 28px;
  }
}

/* Mobile (max 767px) */
@media screen and (max-width: 767px) {
  .start-here-container {
    padding: 0 20px;
  }
  
  .start-here-header {
    padding: 32px 0 24px;
  }
  
  .start-here-title {
    font-size: 28px;
  }
  
  .start-here-description {
    font-size: 15px;
  }
  
  .learning-roadmap {
    padding: 40px 0 32px;
  }
  
  .stage-card {
    padding: 24px;
  }
  
  .stage-header {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  
  .stage-number {
    font-size: 12px;
    padding: 6px 14px;
  }
  
  .stage-title {
    font-size: 22px;
  }
  
  .stage-description {
    font-size: 14px;
  }
  
  .stage-posts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stage-connector {
    padding: 20px 0;
  }
  
  .start-here-cta {
    padding: 48px 0 60px;
    margin-top: 32px;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .cta-description {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .cta-button {
    font-size: 15px;
    padding: 12px 28px;
  }
}

/* Small Mobile (max 480px) */
@media screen and (max-width: 480px) {
  .start-here-container {
    padding: 0 16px;
  }
  
  .start-here-title {
    font-size: 24px;
  }
  
  .stage-card {
    padding: 20px;
  }
  
  .stage-title {
    font-size: 20px;
  }
  
  .cta-title {
    font-size: 22px;
  }
}

