/**
 * Copyright (c) 2025-2026 Let's Automate. All rights reserved.
 * This source code is proprietary and confidential.
 * Unauthorized copying, modification, or distribution is strictly prohibited.
 * See LICENSE file for details.
 */

/* How-To Guide Styles */

.guide-breadcrumb {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.guide-breadcrumb a {
  color: var(--neon-cyan, #00ffff);
  text-decoration: none;
}

.guide-breadcrumb a:hover {
  text-decoration: underline;
}

.guide-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.guide-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  padding: 28px;
  background: var(--card-bg, rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 14px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.guide-step:hover {
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00ffff, #00ff88);
  color: #000;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  border-radius: 12px;
}

.step-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-secondary, #b0b0b0);
  line-height: 1.7;
  margin-bottom: 8px;
  font-size: 1rem;
}

.step-content p:last-child {
  margin-bottom: 0;
}

.guide-tips {
  margin-top: 50px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.08), rgba(0, 255, 136, 0.05));
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 14px;
}

.guide-tips h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: #00ff88;
  margin-bottom: 15px;
}

.guide-tips ul {
  list-style: none;
  padding: 0;
}

.guide-tips li {
  color: var(--text-secondary, #b0b0b0);
  line-height: 1.7;
  padding: 6px 0 6px 24px;
  position: relative;
}

.guide-tips li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: 700;
}

.guide-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.guide-nav-link {
  color: var(--neon-cyan, #00ffff);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 20px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.guide-nav-link:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.6);
}

.guide-nav-link.next {
  background: linear-gradient(135deg, #00ffff, #00ff88);
  color: #000;
  border: none;
  font-weight: 700;
}

.guide-nav-link.next:hover {
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
  transform: translateY(-1px);
}

/* Guide index cards */
.guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.guide-card {
  display: block;
  padding: 28px;
  background: var(--card-bg, rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 14px;
  text-decoration: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}

.guide-card:hover {
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
  transform: translateY(-3px);
}

.guide-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}

.guide-card p {
  color: var(--text-secondary, #b0b0b0);
  font-size: 0.95rem;
  line-height: 1.5;
}

.guide-card .guide-time {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: #00ff88;
  font-weight: 700;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .guide-step {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .guide-nav {
    flex-direction: column;
    gap: 12px;
  }

  .guide-nav-link {
    text-align: center;
    width: 100%;
  }
}
