/* Home Page Styles */
.site-main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}



/* Post Styles */
.post {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.post:last-child {
  border-bottom: none;
}

.post-title {
  color: #000000;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
}

.post-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: #666666;
}

.post-meta {
  color: #666666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.post-content {
  line-height: 1.8;
  color: #000000;
}

.read-more {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.read-more:hover {
  background-color: #333333;
  color: #ffffff;
}

/* Home Page Specific Sections */
.home-hero {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 3rem;
}

.home-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.home-hero p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.featured-posts {
  margin: 3rem 0;
}

.featured-posts h3 {
  color: #000000;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 3px solid #000000;
  padding-bottom: 1rem;
}

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

.post-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post-card:hover {
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.post-card .post-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.post-card .post-meta {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.post-card .post-content {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
  background: #000000;
  color: #ffffff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 10px;
  margin: 3rem 0;
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-section p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.cta-btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta-btn-primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-btn-secondary:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-area {
    padding: 1rem;
  }

  .home-hero {
    padding: 2rem 1rem;
  }

  .home-hero h2 {
    font-size: 2rem;
  }

  .home-hero p {
    font-size: 1rem;
  }

  .featured-posts h3 {
    font-size: 1.5rem;
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .post-card {
    padding: 1rem;
  }

  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-section h3 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 200px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .home-hero h2 {
    font-size: 1.5rem;
  }

  .featured-posts h3 {
    font-size: 1.25rem;
  }

  .post-card .post-title {
    font-size: 1.25rem;
  }

  .cta-section h3 {
    font-size: 1.25rem;
  }

  .cta-btn {
    width: 180px;
    padding: 0.75rem 1.5rem;
  }
}
