/* Base styles for the Bắn Cá page */
.page-ban-ca {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background: var(--secondary-color, #FFFFFF);
}

.page-ban-ca__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-ban-ca__section-spacing {
  padding: 60px 0;
}

.page-ban-ca__light-bg {
  background: #FFFFFF;
  color: #333333;
}

.page-ban-ca__dark-bg {
  background: #017439;
  color: #FFFFFF;
}

.page-ban-ca__text-center {
  text-align: center;
}

.page-ban-ca__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: #017439;
}

.page-ban-ca__section-title--white {
  color: #FFFFFF;
}

.page-ban-ca__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
}

.page-ban-ca__article-body--white-text {
  color: #FFFFFF;
}

.page-ban-ca__article-body h3 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #017439;
}

.page-ban-ca__article-body--white-text h3 {
  color: #FFFFFF;
}

.page-ban-ca__article-body ol,
.page-ban-ca__article-body ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-ban-ca__article-body li {
  margin-bottom: 10px;
}

.page-ban-ca__article-body a {
  color: #C30808;
  text-decoration: underline;
}

.page-ban-ca__article-body--white-text a {
  color: #FFFF00;
}

/* Hero Section */
.page-ban-ca__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding */
  overflow: hidden;
}

.page-ban-ca__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for desktop */
  overflow: hidden;
}

.page-ban-ca__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-ban-ca__hero-content {
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(1, 116, 57, 0.9) 0%, rgba(1, 116, 57, 0.95) 100%);
  color: #FFFFFF;
  width: 100%;
  box-sizing: border-box;
}

.page-ban-ca__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-ban-ca__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__hero-cta-buttons,
.page-ban-ca__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary,
.page-ban-ca__btn-promo {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 300px; /* Limit button width */
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}