/* style/resources-nhatvip-beginner-guide.css */

/* Base Styles */
.page-resources-nhatvip-beginner-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css (#000) */
}

.page-resources-nhatvip-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-nhatvip-beginner-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-nhatvip-beginner-guide__section:last-of-type {
  border-bottom: none;
}

.page-resources-nhatvip-beginner-guide__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffc107; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-resources-nhatvip-beginner-guide__guide-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #007bff; /* Primary color for subtitles */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources-nhatvip-beginner-guide p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #e0e0e0;
}

.page-resources-nhatvip-beginner-guide ol,
.page-resources-nhatvip-beginner-guide ul {
  margin-bottom: 15px;
  padding-left: 25px;
  color: #e0e0e0;
}

.page-resources-nhatvip-beginner-guide li {
  margin-bottom: 8px;
  font-size: 16px;
}

.page-resources-nhatvip-beginner-guide strong {
  color: #ffffff;
}

.page-resources-nhatvip-beginner-guide a {
  color: #ffc107; /* Links in content */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-nhatvip-beginner-guide a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Buttons */
.page-resources-nhatvip-beginner-guide__btn-primary,
.page-resources-nhatvip-beginner-guide__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent text wrapping for desktop */
}

.page-resources-nhatvip-beginner-guide__btn-primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-resources-nhatvip-beginner-guide__btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
  transform: translateY(-2px);
}

.page-resources-nhatvip-beginner-guide__btn-secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.page-resources-nhatvip-beginner-guide__btn-secondary:hover {
  background-color: #ffc107;
  color: #333333; /* Darker text for light background */
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
  transform: translateY(-2px);
}

.page-resources-nhatvip-beginner-guide__mt-20 {
  margin-top: 20px;
}

.page-resources-nhatvip-beginner-guide__text-center {
  text-align: center;
}

/* Hero Section */
.page-resources-nhatvip-beginner-guide__hero-section {
  position: relative;
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient for hero background */
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Apply header offset here */
}

.page-resources-nhatvip-beginner-guide__hero-content {
  max-width: 600px;
  text-align: left;
  z-index: 1;
  padding: 20px;
}

.page-resources-nhatvip-beginner-guide__hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-resources-nhatvip-beginner-guide__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-resources-nhatvip-beginner-guide__hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-nhatvip-beginner-guide__hero-image-wrapper {
  flex-shrink: 0;
  margin-left: 40px;
  max-width: 500px; /* Constrain image width */
  z-index: 0;
}