/* Main Style.css - Better spacing and proportions */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  min-height: 70vh;
}

.hero h1 {
  font-size: 3.5rem; /* Slightly larger but not overwhelming */
  max-width: 900px; /* More breathing room */
  margin-bottom: 3rem; /* Better spacing */
  line-height: 1.2;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.get-started {
  background-color: #a56dff;
  color: white;
  border: none;
  padding: 1rem 2rem; /* More substantial buttons */
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(165, 109, 255, 0.3);
}

.get-started:hover {
  background-color: #9254ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(165, 109, 255, 0.4);
}

.learn-more {
  background-color: transparent;
  border: 2px solid #555;
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-more:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #777;
  transform: translateY(-2px);
}

/* Commands page specific styles */
.commands-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.commands-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #a56dff, #d100ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.commands-header p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 700px; /* More breathing room */
  margin: 0 auto;
  line-height: 1.5;
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem; /* More space between cards */
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.command-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem; /* More padding */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.command-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(165, 109, 255, 0.2);
}

.category-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem; /* More space */
  color: #a56dff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.command-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  padding: 1.5rem; /* More padding */
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border-left: 3px solid #a56dff;
}

.command-name {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: bold;
  color: #a56dff;
  margin-bottom: 0.75rem; /* More space */
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
}

.command-name:hover {
  color: #d100ff;
  text-decoration: underline;
}

.command-description {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5; /* Better line height */
  margin-bottom: 0.75rem;
}

.command-usage {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #a56dff;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    gap: 1rem;
  }
  
  .get-started, .learn-more {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .commands-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .command-category {
    padding: 1.5rem;
  }
  
  .commands-header {
    padding: 1rem 0;
  }
  
  .commands-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .get-started, .learn-more {
    width: 200px;
  }
}