/* Blog Section Styling */
.blog-section {
  min-height: 100vh;
  background: #121212;
  color: white;
  padding: 100px 20px 50px;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-title {
  font-size: 3rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: bold;
}

.blog-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #b0b0b0;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

/* Blog Post Card */
.blog-post {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-post:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.blog-post-header {
  margin-bottom: 20px;
}

.blog-post h2 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-post:hover h2 {
  color: #fff;
}

.blog-date {
  font-size: 0.9rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-excerpt {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
}

.read-more:hover {
  transform: translateX(5px);
  color: #fff;
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(3px);
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15),
    rgba(255, 215, 0, 0.05)
  );
  border: 2px solid #ffd700;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

.newsletter h3 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.newsletter p {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.newsletter-form button {
  padding: 15px 40px;
  background: #ffd700;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.newsletter-form button:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* Footer Styles */
.footer {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  color: white;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content p {
  /* font-size: 0.9rem; */
  /* letter-spacing: 1px; */
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-section {
    padding: 80px 15px 40px;
  }

  .blog-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .blog-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .blog-post {
    padding: 20px;
  }

  .blog-post h2 {
    font-size: 1.3rem;
  }

  .newsletter {
    padding: 30px 20px;
  }

  .newsletter h3 {
    font-size: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 100px 10px 30px;
  }

  .blog-grid {
    margin-bottom: 20px;
  }

  .blog-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .blog-subtitle {
    font-size: 0.95rem;
  }

  .blog-post {
    padding: 15px;
  }

  .blog-post h2 {
    font-size: 1.1rem;
  }

  .blog-excerpt {
    font-size: 0.95rem;
  }

  .read-more {
    font-size: 0.9rem;
  }

  .newsletter {
    padding: 20px 15px;
    margin-top: 20px;
  }

  .newsletter h3 {
    font-size: 1.3rem;
  }

  .newsletter p {
    font-size: 1rem;
  }
}
