/* style/about.css */
/* 
  Màu sắc chủ đạo: #26A9E0 (Xanh lam)
  Màu phụ: #FFFFFF (Trắng)
  Màu văn bản chính: #333333 (Xám đậm)
  Màu nền body: #FFFFFF (Trắng)
*/

.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Văn bản chính màu xám đậm trên nền sáng */
  background-color: #FFFFFF; /* Nền trắng */
  padding-top: var(--header-offset, 120px); /* Đảm bảo nội dung không bị che bởi header */
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-about__section {
  padding: 60px 0;
  text-align: center;
}

.page-about__section--mission-vision,
.page-about__section--games {
  background-color: #f8f8f8; /* Nền xám nhạt cho các phần nội dung */
}

.page-about__section--values {
  background-color: #FFFFFF; /* Nền trắng cho phần giá trị */
}

.page-about__dark-bg {
  background-color: #26A9E0; /* Nền xanh lam đậm cho phần an toàn & hỗ trợ */
  color: #ffffff; /* Văn bản trắng trên nền xanh lam đậm */
}

.page-about__section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #26A9E0; /* Tiêu đề màu xanh lam */
}

.page-about__dark-bg .page-about__section-title {
  color: #ffffff; /* Tiêu đề trắng trên nền xanh lam đậm */
}

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

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #26A9E0, #a0d8f2); /* Gradient nhẹ */
  padding-top: var(--header-offset, 120px); /* Đảm bảo nội dung không bị che bởi header */
  overflow: hidden; /* Ngăn chặn nội dung tràn ra ngoài */
}

.page-about__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-about__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-about__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff;
}

.page-about__main-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.page-about__intro-description {
  font-size: 22px;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-about__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #EA7C07; /* Màu cam cho CTA chính */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Đảm bảo responsive */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button:hover {
  background: #d86c06;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button--secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  box-shadow: none;
}

.page-about__cta-button--secondary:hover {
  background: #e0e0e0;
  color: #1a7fb2;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.page-about__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.page-about__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-about__text-block {
  flex: 1;
}

.page-about__image-block {
  flex: 1;
  min-width: 200px; /* Minimum size for content images */
}

.page-about__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-about__subsection-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-about__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
}

/* Core Values Section */
.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__value-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-about__value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-about__card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-about__value-card p {
  font-size: 16px;
  color: #555555;
}