/* Demo-specific styles for mega-navigation.astro page */

.mega-nav-demo h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mega-nav-demo h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.mega-nav-demo h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.mega-nav-demo h4 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #444;
}

.mega-nav-demo p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1.5rem;
}

.mega-nav-demo ul {
  padding-left: 20px;
}

.mega-nav-demo li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

.mega-nav-demo ol {
  padding-left: 20px;
}

.mega-nav-demo ol li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.5;
}

.mega-nav-demo code {
  background: #f1f3f4;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.9em;
  color: #e83e8c;
}

.mega-nav-demo kbd {
  display: inline-block;
  padding: 3px 8px;
  font-size: 0.85rem;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin: 0 2px;
  font-family: monospace;
}

.mega-nav-demo a {
  transition: all 0.3s ease;
}

.mega-nav-demo a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .mega-nav-demo h1 {
    font-size: 2.8rem;
  }

  .mega-nav-demo h2 {
    font-size: 1.9rem;
  }

  .mega-nav-demo h3 {
    font-size: 1.4rem;
  }
}
