/* Center navbar navigation items */
.navbar-nav {
  margin: 0 auto;
}

.navbar-collapse {
  justify-content: center;
}

/* ===== HOME PAGE STYLES ===== */

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 900px;
}

.hero-banner .btn {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-banner .btn-primary {
  background-color: #fff;
  color: #667eea;
  border: none;
}

.hero-banner .btn-primary:hover {
  background-color: #f0f0f0;
}

.hero-banner .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-banner .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Page Title & Subtitle */
.quarto-title-block {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.quarto-title-block .title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

/* Section Headers */
#quarto-document-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 0.5rem;
  color: #333;
}

#quarto-document-content h2 + p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Feature Cards Grid */
.grid {
  max-width: 1000px;
  margin: 0 auto;
  gap: 1.5rem !important;
  padding: 1rem;
}

.g-col-4 {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.5rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.g-col-4:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.g-col-4 h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.g-col-4 p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Get Started Section */
#get-started {
  padding: 3rem 1rem;
  margin-top: 2rem;
}

#get-started + p {
  color: #666;
  margin-bottom: 1.5rem;
}

#get-started ~ p .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

#get-started ~ p .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* ===== SHOWCASE STYLES ===== */
.showcase-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.showcase-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.showcase-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.showcase-buttons .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
}

.showcase-buttons .btn-secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.showcase-buttons .btn-secondary:hover {
  background: rgba(102, 126, 234, 0.1);
}
