/* Custom styles for henglihov.online */

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.navbar {
  background-color: #000 !important;
  border-bottom: 1px solid #333;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #ccc !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.hero-article {
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  padding: 2rem;
  max-width: 600px;
}

.hero-category {
  background-color: #dc3545;
  color: white;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-summary {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #007bff;
}

/* Featured Cards */
.featured-card {
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.featured-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Video thumbnail styles */
.video-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  opacity: 0.8;
  z-index: 2;
}

.featured-card .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.featured-card .card-title a {
  text-decoration: none;
  color: inherit;
}

.featured-card .card-title a:hover {
  text-decoration: none;
  color: inherit;
}

.featured-card .card-text {
  font-size: 0.9rem;
  color: #666;
}

/* Latest News */
.news-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.news-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #000;
}

.news-title a {
  text-decoration: none;
  color: inherit;
}

.news-title a:hover {
  text-decoration: none;
  color: inherit;
}

.news-summary {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.read-more {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

/* Sidebar */
.sidebar-widget {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.widget-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #000;
}

.trending-list {
  list-style: none;
  padding: 0;
}

.trending-list li {
  margin-bottom: 0.5rem;
}

.trending-list a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.trending-list a:hover {
  text-decoration: underline;
}

.newsletter-form .form-control {
  border-radius: 4px;
  border: 1px solid #ddd;
}

.newsletter-form .btn {
  border-radius: 4px;
  font-weight: 500;
}

.ad-placeholder {
  background-color: #e9ecef;
  padding: 2rem;
  text-align: center;
  border-radius: 4px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 0;
  margin-top: 4rem;
}

footer p {
  margin: 0;
}

/* Views styling */
.views-count {
  font-family: Arial, sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .news-item .row {
    flex-direction: column;
  }

  .news-image {
    margin-bottom: 1rem;
  }

  .sidebar {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-summary {
    font-size: 1rem;
  }

  .featured-stories .col-md-4 {
    margin-bottom: 1.5rem;
  }
}
