/* Guide Specific Styles */

.guide-container {
  padding: 40px 0 80px;
  background-color: var(--bg-alt);
  min-height: 100vh;
}

.guide-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text);
}

.guide-nav {
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 60px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 90px;
  z-index: 10;
}

.guide-nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.guide-nav a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s;
}

.guide-nav a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.guide-section {
  background: white;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  scroll-margin-top: 180px; /* Header offset */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.guide-section h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--bg-alt);
  padding-bottom: 10px;
}

.guide-step {
  margin-bottom: 30px;
}

.guide-step h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-step h4::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 24px;
  background: var(--primary);
  border-radius: 3px;
}

.guide-image {
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.guide-image.placeholder {
  background: #f3f4f6;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-weight: 500;
}

.guide-section ul,
.guide-section ol {
  padding-left: 24px;
  color: var(--text);
}

.guide-section li {
  margin-bottom: 10px;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 768px) {
  .guide-nav {
    top: 70px;
    margin-bottom: 30px;
  }

  .guide-nav ul {
    gap: 10px;
  }

  .guide-nav a {
    font-size: 0.875rem;
    padding: 6px 12px;
  }

  .guide-section {
    padding: 20px;
  }
}
