/* Blog Post Styles */
.blog-page {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
}

/* Header and Blog Styles */
.blog-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.blog-header-nav .logo {
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #057cf6;
  text-decoration: none;
  display: inline-block;
}

.blog-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.blog-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-title {
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.blog-meta {
  font-family: 'Roboto Flex', sans-serif;
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.blog-category {
  display: inline-block;
  background-color: #e0f0ff;
  color: #027bf4;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.blog-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-content h2 {
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #222;
  margin: 40px 0 20px;
}

.blog-content p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.blog-content ul, .blog-content ol {
  margin-bottom: 25px;
  padding-left: 25px;
}

.blog-content li {
  margin-bottom: 10px;
}

.blog-content a {
  color: #027bf4;
  text-decoration: none;
  border-bottom: 1px solid rgba(2, 123, 244, 0.3);
  transition: border-color 0.3s;
}

.blog-content a:hover {
  border-color: rgba(2, 123, 244, 1);
}

.blog-cta {
  margin-top: 50px;
  text-align: center;
  padding: 30px;
  background-color: rgba(2, 123, 244, 0.05);
  border-radius: 10px;
}

.blog-cta h2 {
  margin-top: 0;
}

.blog-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.blog-nav a {
  color: #027bf4;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.blog-nav-prev::before {
  content: "←";
  margin-right: 8px;
}

.blog-nav-next::after {
  content: "→";
  margin-left: 8px;
}

/* Container for twinkles - positioned to match effects.js expectations */
#twinkles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 2rem;
  }
  
  .blog-content h2 {
    font-size: 1.5rem;
  }
  
  .blog-content p {
    font-size: 1rem;
  }
  
  .blog-nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .blog-header-nav {
    padding: 15px;
  }
  
  .blog-header-nav .logo {
    font-size: 1.5rem;
  }
  
  .blog-container {
    width: 95%;
    padding: 30px 15px;
  }
} 