body {
  font-family: "Source Sans Pro", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 30px;
  color: #333;
  margin: 0 0 1rem 0;
  text-align: left;
}

header, footer {
  padding: 1rem;
}

p {
  margin:0;
  font-size: 14px;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4em;
  margin-bottom: 8px;
}

.site-nav a {
  margin-right: 1rem;
}

.hero {
  padding: 2rem 1rem;
  border-bottom: 1px solid #eee;
}

/* Steps Guide */
.steps-guide {
  border-bottom: 1px solid #eee;
}

.steps-guide h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.75rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.step {
  width: 100%;
  padding: 2rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: border-color 0.2s ease;
}



.step:last-child {
  border-bottom: none;
}

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h2 {
  margin: 0 0 0.5rem 0;
  color: #333;
  font-size: 1.5rem;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

/* Personal Bio Section - Full Width */
.personal-bio {
  grid-column: 1 / -1; /* Makes it span full width */
  margin: 20px 0;
}

.bio-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.bio-image {
  flex-shrink: 0;
  width: 20%;
  min-width: 80px;
}

.bio-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #77777e;
}

.image-caption {
  margin: 0.75rem 0 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  line-height: 1.3;
  width: 100%;
}

.bio-text {
  flex: 1;
}

/* .bio-text h3 {
  margin: 0 0 0.5rem 0;
  color: #333;
  font-size: 1.5rem;
} */

/* .subtitle {
  margin: 0 0 1rem 0;
  color: #ff00ff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  font-style: italic;
} */

.coaching-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff00ff;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s ease, transform 0.2s ease, outline 0.2s ease;
  cursor: pointer;
}

.coaching-link:hover {
  background: #ff00ff;
  transform: translateY(-2px);
  color: white;
  outline: 2px solid #ff00ff;
  outline-offset: 2px;
}

.coaching-options {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  margin-top: 1.5rem;
  align-items: center;
}

.coaching-option {
  text-align: center;
}

.coaching-option p {
  margin: 0 0 1rem 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}

.step-resources {
  margin: 20px 0 0 0;
}

.step-resources .resources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* Mobile responsive - allow cards to be full width */
@media (max-width: 560px) {
  .step-resources .resources {
    grid-template-columns: 1fr;
  }
}

/* Step 4 specific layout - 3 columns */
.step:nth-child(4) .step-resources .resources {
  grid-template-columns: repeat(3, 1fr);
}

/* Mobile responsive for step 4 */
@media (max-width: 560px) {
  .step:nth-child(4) .step-resources .resources {
    grid-template-columns: 1fr;
  }
}

/* Step 1 specific layout - 2 columns with placeholder */
.step:nth-child(1) .step-resources .resources {
  grid-template-columns: repeat(2, 1fr);
}

.placeholder-card {
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Mobile responsive for step 1 */
@media (max-width: 560px) {
  .step:nth-child(1) .step-resources .resources {
    grid-template-columns: 1fr;
  }
  
  .step:nth-child(1) .placeholder-card {
    display: none;
  }
}

.resources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 1rem;
}

.resource {
  border-radius: 6px;
  padding: 22px;
  position: relative;
  border: 1px solid #e0e0e0;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource:hover {
  transform: scale(0.98);
  box-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.08);
  cursor: pointer
}

.resource.highlighted {
  border: 1px solid #ff00ff;
}

/* Type pill - shows the media type below description */
.type-pill {
  display: inline-block;
  background: #f0f0f0;
  color: #666;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.resource.highlighted::before {
  content: "★";
  position: absolute;
  top: 6px;
  left: 6px;
  color: #ff00ff;
  font-size: 1.2rem;
  z-index: 1;
}



.resource h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  color: #333;
}

.certification-caption,
.resource .subtitle {
  margin: 0 0 0.75rem 0;
  color: #333;
  font-weight: 500;
  font-style: italic;
}

.resource .description {
  margin: 0 0 1rem 0;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}

.resource .description ul {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
}

.resource .description li {
  margin: 0.25rem 0;
  line-height: 1.4;
}

.resource .description p {
  margin: 0.5rem 0;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.resource-link {
  display: inline-block;
  background: #ff00ff;
  color: #fff;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background-color 0.2s ease, outline 0.2s ease;
  cursor: pointer;
}

.resource-link:hover {
  background: #ff00ff;
  color: #fff;
  outline: 2px solid #ff00ff;
  outline-offset: 2px;
}

.button {
  display: inline-block; 
  margin-top: .5rem; 
  background: #ff00ff; 
  color: #fff; 
  padding: .5rem .75rem; 
  border-radius: 100px; 
  text-decoration: none; 
  transition: outline 0.2s ease;
  cursor: pointer;
}

.button:hover {
  outline: 2px solid #ff00ff;
  outline-offset: 2px;
}

/* Responsive design for bio section */
@media (max-width: 768px) {
  .bio-content {
    gap: 20px;
  }
  
  .bio-image img {
    width: 100%;
    max-width: 60px;
    height: auto;
  }
  
  .image-caption {
    font-size: 0.75rem;
    width: 100%;
  }
  
  .coaching-options {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .or-divider {
    display: none;
  }
}
