* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}
.btn-primary:hover {
  background: #1d4ed8;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}
.btn-secondary:hover {
  background: #2563eb;
  color: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo:hover {
  color: #1d4ed8;
  text-decoration: none;
}
.logo .logo-icon {
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}
.nav-links a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #64748b;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile behavior */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    cursor: pointer;
  }
  .nav-menu {
    max-height: 0; /* start hidden */
    overflow: hidden; /* hide overflowing items */
    transition: max-height 0.5s ease, padding 0.5s ease;
    position: absolute; /* dropdown below header */
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 1rem; /* padding animates with max-height */
  }
  .nav-menu.show {
    max-height: 500px; /* adjust for your menu height */
    padding: 1rem; /* adds spacing when opened */
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 0.5rem 0;
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px), radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: float 20s ease-in-out infinite;
}
.hero .hero-content {
  max-width: 800px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}
.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp 1s ease 0.2s forwards;
}
.hero .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 1s ease 0.4s forwards;
}
.hero .hero-content .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 1s ease 0.6s forwards;
}
.hero .hero-content .cta-buttons .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.hero .hero-content .cta-buttons .btn-secondary:hover {
  background: #fff;
  color: #2563eb;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
main {
  padding-top: 80px;
}

.section {
  padding: 4rem 0;
}
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
  text-align: center;
}
.section p {
  font-size: 1.1rem;
  color: #64748b;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}
.feature-card .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2563eb;
}
.feature-card p {
  text-align: left;
  margin: 0;
  font-size: 1rem;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 2rem;
}
.page-header .page-title {
  font-size: 3rem;
  color: #1e293b;
  margin-bottom: 1rem;
}
.page-header .page-description {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.latest-posts {
  background: #f8fafc;
}

.posts-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.post-card,
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.post-card-header,
.blog-card-header {
  height: 120px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.post-card-header .post-icon,
.post-card-header .blog-icon,
.blog-card-header .post-icon,
.blog-card-header .blog-icon {
  font-size: 3rem;
}

.post-card-content,
.blog-card-content {
  padding: 2rem;
}
.post-card-content .post-date,
.post-card-content .blog-date,
.blog-card-content .post-date,
.blog-card-content .blog-date {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}
.post-card-content h3,
.post-card-content h2,
.blog-card-content h3,
.blog-card-content h2 {
  margin-bottom: 1rem;
  color: #1e293b;
}
.post-card-content h3 a,
.post-card-content h2 a,
.blog-card-content h3 a,
.blog-card-content h2 a {
  color: inherit;
  text-decoration: none;
}
.post-card-content h3 a:hover,
.post-card-content h2 a:hover,
.blog-card-content h3 a:hover,
.blog-card-content h2 a:hover {
  color: #2563eb;
}
.post-card-content h2,
.blog-card-content h2 {
  font-size: 1.5rem;
}
.post-card-content h3,
.blog-card-content h3 {
  font-size: 1.25rem;
}
.post-card-content p,
.blog-card-content p {
  color: #64748b;
  margin: 0 0 1rem 0;
  text-align: left;
  font-size: 1rem;
}

.post {
  max-width: 800px;
  margin: 0 auto;
}
.post .post-header {
  text-align: center;
  margin-bottom: 3rem;
}
.post .post-header .post-title {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}
.post .post-header .post-meta {
  color: #64748b;
  font-size: 1rem;
}
.post .post-header .post-meta time {
  font-weight: 500;
}
.post .post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}
.post .post-content h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem 0;
  color: #1e293b;
}
.post .post-content h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem 0;
  color: #1e293b;
}
.post .post-content h4 {
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem 0;
  color: #1e293b;
}
.post .post-content p {
  margin-bottom: 1.5rem;
  text-align: left;
}
.post .post-content ul, .post .post-content ol {
  margin: 1rem 0 1.5rem 2rem;
}
.post .post-content ul li, .post .post-content ol li {
  margin-bottom: 0.5rem;
}
.post .post-content blockquote {
  border-left: 4px solid #2563eb;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #64748b;
}
.post .post-content code {
  background: #f1f5f9;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  color: #e11d48;
}
.post .post-content pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.post .post-content pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: 0.9rem;
}
.post .post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.post .post-content table th, .post .post-content table td {
  border: 1px solid #e2e8f0;
  padding: 0.75rem;
  text-align: left;
}
.post .post-content table th {
  background: #f8fafc;
  font-weight: 600;
  color: #1e293b;
}
.post .post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}
.post .post-footer .share-buttons {
  text-align: center;
}
.post .post-footer .share-buttons h4 {
  margin-bottom: 1rem;
  color: #1e293b;
}
.post .post-footer .share-buttons a {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  background: #f8fafc;
  color: #64748b;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.post .post-footer .share-buttons a:hover {
  background: #2563eb;
  color: #fff;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.post-navigation a {
  display: block;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  text-decoration: none;
  color: #64748b;
  transition: all 0.3s ease;
}
.post-navigation a:hover {
  background: #e2e8f0;
  color: #1e293b;
}
.post-navigation a span {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}
.post-navigation a strong {
  color: #1e293b;
  font-size: 1.1rem;
}
.post-navigation .nav-next {
  text-align: right;
}

.post-tags {
  margin-top: 1rem;
}
.post-tags .tag {
  display: inline-block;
  background: #e2e8f0;
  color: #64748b;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0;
}
.pagination .pagination-link {
  padding: 0.75rem 1.5rem;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}
.pagination .pagination-link:hover {
  background: #1d4ed8;
  color: #fff;
}
.pagination .pagination-info {
  color: #64748b;
  font-weight: 500;
}

.docs-content .doc-section h3 {
  color: #1e293b;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
  font-size: 1.5rem;
}
.docs-content .doc-section h4 {
  color: #1e293b;
  margin: 1.5rem 0 1rem 0;
  font-size: 1.25rem;
}
.docs-content .doc-section p {
  text-align: left;
  margin-bottom: 1rem;
}
.docs-content .doc-section ul, .docs-content .doc-section ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.docs-content .doc-section ul li, .docs-content .doc-section ol li {
  margin-bottom: 0.5rem;
  text-align: left;
}
.docs-content .doc-section .code-block {
  background: #1e293b;
  color: #e2e8f0;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-family: "Monaco", "Consolas", monospace;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.4;
}

.site-footer {
  background: #1e293b;
  color: #e2e8f0;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}
.site-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer .footer-section h3, .site-footer .footer-section h4 {
  color: #fff;
  margin-bottom: 1rem;
}
.site-footer .footer-section h3 {
  font-size: 1.5rem;
}
.site-footer .footer-section ul {
  list-style: none;
}
.site-footer .footer-section ul li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-section ul li a:hover {
  color: #fff;
}
.site-footer .footer-section p {
  color: #94a3b8;
  margin: 0;
  text-align: left;
}
.site-footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #94a3b8;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  .navbar .nav-container {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links a {
    font-size: 1.2rem;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    border-bottom: none;
  }
  .nav-links a:hover, .nav-links a.active {
    background: #f8fafc;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  .hero .hero-content {
    padding: 1rem;
  }
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero .hero-content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero .hero-content .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  .page-header .page-title {
    font-size: 2rem;
  }
  .section h2 {
    font-size: 2rem;
  }
  .posts-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .post-navigation {
    grid-template-columns: 1fr;
  }
  .post-navigation .nav-next {
    text-align: left;
  }
  .pagination {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .container {
    padding: 0 1rem;
  }
  main {
    padding-top: 80px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
  .page-header .page-title {
    font-size: 1.8rem;
  }
  .post .post-header .post-title {
    font-size: 2rem;
  }
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
@media print {
  .site-header,
  .site-footer,
  .post-navigation,
  .share-buttons {
    display: none;
  }
  main {
    padding-top: 0;
  }
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: none;
    color: #333;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .btn-primary {
    border: 2px solid #000;
  }
  .feature-card {
    border: 1px solid #000;
  }
  .post-card,
  .blog-card {
    border: 1px solid #000;
  }
}
.doc-layout {
  display: flex;
}

.doc-sidebar {
  width: 250px;
  padding: 20px;
  background-color: #f8f9fa;
  border-right: 1px solid #ddd;
}

.doc-sidebar nav ul {
  list-style: none;
  padding: 0;
}

.doc-sidebar nav ul li {
  margin-bottom: 10px;
}

.doc-sidebar nav ul li a {
  text-decoration: none;
  color: #007bff;
}

.doc-content {
  flex: 1;
  padding: 20px;
}

/*# sourceMappingURL=main.css.map */