/* style/vip-loyalty-program.css */

/* Base Styles */
.page-vip-loyalty-program {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: var(--secondary-color, #FFFFFF); /* Body background from shared */
}

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

.page-vip-loyalty-program__section-title {
    font-size: 2.5em;
    color: #017439; /* Primary brand color */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    font-weight: bold;
}

.page-vip-loyalty-program__section-title--white {
    color: #FFFFFF;
}

.page-vip-loyalty-program__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-vip-loyalty-program__text-block--white {
    color: #f0f0f0;
}

.page-vip-loyalty-program a {
    color: #017439;
    text-decoration: none;
}

.page-vip-loyalty-program a:hover {
    text-decoration: underline;
}

/* Buttons */
.page-vip-loyalty-program__btn-primary,
.page-vip-loyalty-program__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    margin: 10px auto; /* Centered for block display */
}

.page-vip-loyalty-program__btn-primary {
    background-color: #017439;
    color: #FFFFFF;
    border: 2px solid #017439;
}

.page-vip-loyalty-program__btn-primary:hover {
    background-color: #005f2e;
    border-color: #005f2e;
}

.page-vip-loyalty-program__btn-secondary {
    background-color: #FFFFFF;
    color: #017439;
    border: 2px solid #017439;
}

.page-vip-loyalty-program__btn-secondary:hover {
    background-color: #f0f0f0;
}

/* Hero Section */
.page-vip-loyalty-program__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: #017439; /* Fallback for image loading */
}

.page-vip-loyalty-program__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-vip-loyalty-program__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Darken image for text readability */
}

.page-vip-loyalty-program__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-vip-loyalty-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

.page-vip-loyalty-program__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Introduction Section */
.page-vip-loyalty-program__introduction-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

/* VIP Tiers Section */
.page-vip-loyalty-program__tiers-section {
    padding: 80px 0;
    background-color: #017439; /* Primary brand color for dark background */
    color: #FFFFFF; /* Light text for dark background */
}

.page-vip-loyalty-program__dark-bg {
  color: #ffffff; /* 深色背景配浅色文字 */
  background: #017439; /* 使用品牌色 nhưng đảm bảo độ tương phản */
}

.page-vip-loyalty-program__tier-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}