/* BLOG HERO */
.blog-hero {
  position: relative;
  height: 70vh;
  background: url(images/wallpaper\ \(2\).jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog-hero .hero-overlay {
  background-color: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 10px;
  color: #fff;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.blog-hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.blog-hero .btn-explore {
  padding: 0.8rem 2rem;
  background-color: #eb6d06;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.blog-hero .btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgb(235, 109, 6);
}


.recent-posts {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
}

.recent-posts .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.recent-posts .section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 3rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.post-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.post-title {
  font-size: 1.3rem;
  margin: 1rem;
}

.post-excerpt {
  font-size: 1rem;
  color: #555;
  margin: 0 1rem 1rem 1rem;
}

.post-card .btn-read {
  margin: 0 1rem 1rem 1rem;
  padding: 0.5rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.post-card .btn-read:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.top-categories {
  padding: 100px 0;
  background-color: #fff;
  text-align: center;
}

.top-categories .section-title {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
}

.top-categories .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.categories-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-title {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 20px;
}

.category-articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.article-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.article-card img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.article-title {
  font-size: 1rem;
  color: #333;
  text-align: left;
}

.btn-view-all {
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  padding: 8px 20px;
  border: 2px solid #111;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background-color: #111;
  color: #fff;
}

.visual-break {
  background: #f5f5f5; /* light grey */
  text-align: center;
  padding: 80px 20px;
  font-family: 'Helvetica Neue', sans-serif;
}

.visual-break h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.visual-break p {
  font-size: 1.1rem;
  color: #555;
}

.featured-video-hero {
  position: relative;
  margin: 80px 0;
}

.video-wrapper iframe {
  width: 100%;
  height: 60vh;
  border-radius: 12px;
}

.video-caption {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.5));
  padding: 20px 40px;
  border-radius: 12px;
}


.video-caption h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #000;
}

.video-caption p {
  font-size: 1rem;
  color: #555;
}

.blog-banner {
  background-color: #f5f5f5; /* subtle light grey */
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.blog-banner .banner-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #111; /* dark text for contrast */
}

.blog-banner .banner-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555; /* subtle grey for description */
}

.btn-banner {
  padding: 12px 30px;
  background-color: #eb6d06; /* your accent orange */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(235,109,6,0.5);
}