/* Blog Page Styles */
.blog-area {
  padding: 60px 0 40px 0;
  background: linear-gradient(135deg, #f3e7fe 0%, #e3f0ff 100%);
  min-height: 100vh;
}

.blog-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-title {
  color: #a259ff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(162, 89, 255, 0.1);
}

.blog-desc {
  color: #5a4a7a;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.blog-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
  padding: 0 20px;
}

.blog-categories a {
  background: rgba(255, 255, 255, 0.8);
  color: #5a4a7a;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.blog-categories a:hover,
.blog-categories a.active {
  background: linear-gradient(135deg, #a259ff, #7c3aed);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.3);
}

.blog-posts {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.blog-card-date {
  color: #8b5cf6;
  font-weight: 600;
}

.blog-card-category {
  background: linear-gradient(135deg, #f3e7fe, #e3f0ff);
  color: #7c3aed;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-card-title {
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-card-title a {
  color: #1f2937;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: #a259ff;
}

.blog-card-excerpt {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.blog-card-btn {
  display: inline-block;
  background: linear-gradient(135deg, #a259ff, #7c3aed);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(162, 89, 255, 0.3);
}

.blog-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.4);
  color: white;
}

.blog-pagination {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 50px;
}

.blog-pagination .page-numbers {
  display: inline-block;
  background: white;
  color: #5a4a7a;
  padding: 12px 18px;
  margin: 0 5px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: linear-gradient(135deg, #a259ff, #7c3aed);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.3);
}

/* Single Blog Post Styles */
.single-blog-post {
  background: linear-gradient(135deg, #f3e7fe 0%, #e3f0ff 100%);
  min-height: 100vh;
  padding: 40px 0;
}

.single-blog-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.single-blog-hero {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.single-blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-blog-content {
  padding: 40px;
}

.single-blog-header {
  margin-bottom: 30px;
}

.single-blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.single-blog-date {
  color: #8b5cf6;
  font-weight: 600;
}

.single-blog-author {
  color: #6b7280;
}

.single-blog-category {
  background: linear-gradient(135deg, #f3e7fe, #e3f0ff);
  color: #7c3aed;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.single-blog-title {
  color: #1f2937;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
}

.single-blog-excerpt {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  display: none;
}

.single-blog-body {
  color: #374151;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.single-blog-body h2,
.single-blog-body h3,
.single-blog-body h4 {
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.single-blog-body p {
  margin-bottom: 20px;
}

.single-blog-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.single-blog-footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 30px;
}

.single-blog-tags {
  margin-bottom: 30px;
}

.single-blog-tags h4 {
  color: #1f2937;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-list a {
  background: linear-gradient(135deg, #f3e7fe, #e3f0ff);
  color: #7c3aed;
  padding: 6px 12px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tag-list a:hover {
  background: linear-gradient(135deg, #a259ff, #7c3aed);
  color: white;
  transform: translateY(-2px);
}

.single-blog-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.nav-previous a,
.nav-next a {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
  color: #a259ff;
}

.single-blog-back {
  text-align: center;
}

.back-to-blog {
  display: inline-block;
  background: linear-gradient(135deg, #a259ff, #7c3aed);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(162, 89, 255, 0.3);
}

.back-to-blog:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.4);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-title {
    font-size: 2rem;
  }
  
  .blog-desc {
    font-size: 1rem;
  }
  
  .blog-categories {
    gap: 10px;
  }
  
  .blog-categories a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .blog-posts {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .blog-card-content {
    padding: 20px;
  }
  
  .blog-card-title a {
    font-size: 1.2rem;
  }
  
  .single-blog-content {
    padding: 25px;
  }
  
  .single-blog-title {
    font-size: 2rem;
  }
  
  .single-blog-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .single-blog-navigation {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .blog-area {
    padding: 40px 0 20px 0;
  }
  
  .blog-title {
    font-size: 1.8rem;
  }
  
  .blog-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .blog-categories a {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }
  
  .single-blog-title {
    font-size: 1.8rem;
  }
  
  .single-blog-content {
    padding: 20px;
  }
} 

.gradient-text {
  background: linear-gradient(90deg, #ed247a 0%, #5e7ce2 40%, #a259ff 70%, #ed24b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 900;
} 