/* style/vip-membership.css */
/* 
   Màu sắc chính: #017439 (Xanh lá)
   Màu phụ: #FFFFFF (Trắng)
   Màu nút đăng ký/đăng nhập: #C30808 (Đỏ)
   Màu chữ nút đăng ký/đăng nhập: #FFFF00 (Vàng)
   Màu nền body (từ shared.css): #1a1a2e (Đen tím than - tối) => Chữ phải màu sáng #FFFFFF
*/

.page-vip-membership {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Body background is dark (#1a1a2e), so text is light */
    background-color: #1a1a2e; /* Ensure consistency with shared.css body background */
}

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

/* Hero Section */
.page-vip-membership__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: #017439; /* Primary brand color for hero background */
    color: #ffffff;
    overflow: hidden; /* Ensure image doesn't overflow */
    min-height: 500px; /* Ensure hero section has a decent height */
}

.page-vip-membership__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.page-vip-membership__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Use a bright color for emphasis on dark background */
    line-height: 1.2;
}

.page-vip-membership__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-vip-membership__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-vip-membership__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Make background image subtle */
    z-index: 1;
}

/* General Sections */
.page-vip-membership__section-title {
    font-size: 2.5em;
    color: #FFFF00; /* Consistent bright title color */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 20px;
}