/* style/vip-club.css */
:root {
    --page-vip-club-primary-color: #017439;
    --page-vip-club-auxiliary-color: #FFFFFF;
    --page-vip-club-btn-register-bg: #C30808;
    --page-vip-club-btn-login-bg: #C30808;
    --page-vip-club-btn-text-color: #FFFF00;
    --page-vip-club-bg-color: #FFFFFF;
    --page-vip-club-text-color-dark: #333333;
    --page-vip-club-text-color-light: #ffffff; /* For dark backgrounds */
    --page-vip-club-border-color: #e0e0e0;
}

.page-vip-club {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-vip-club-text-color-dark); /* Default text color for light body bg */
    background-color: var(--page-vip-club-bg-color);
}

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

.page-vip-club__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--page-vip-club-primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-vip-club__text-block {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.page-vip-club__image-content {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background: linear-gradient(135deg, var(--page-vip-club-primary-color) 0%, #004d28 100%); /* Darker green gradient */
    color: var(--page-vip-club-text-color-light);
    overflow: hidden; /* Prevent content overflow */
}

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

.page-vip-club__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.page-vip-club__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 20px;
}

.page-vip-club__main-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--page-vip-club-text-color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__description {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--page-vip-club-text-color-light);
}

.page-vip-club__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--page-vip-club-primary-color);
    color: var(--page-vip-club-text-color-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club__cta-button:hover {
    background: #005f33; /* Slightly darker green */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-club__btn-register {
    background: var(--page-vip-club-btn-register-bg); /* #C30808 */
    color: var(--page-vip-club-btn-text-color); /* #FFFF00 */
}

.page-vip-club__btn-register:hover {
    background: #a30606; /* Darker red */
}

.page-vip-club__btn-login {
    background: var(--page-vip-club-btn-login-bg); /* #C30808 */
    color: var(--page-vip-club-btn-text-color); /* #FFFF00 */
    margin-left: 20px;
}

.page-vip-club__btn-login:hover {
    background: #a30606; /* Darker red */
}

/* Intro Section */
.page-vip-club__intro-section {
    padding: 60px 0;
    background-color: var(--page-vip-club-bg-color);
    color: var(--page-vip-club-text-color-dark);
}

/* VIP Tiers Section */
.page-vip-club__tiers-section {
    padding: 60px 0;
    background: var(--page-vip-club-primary-color); /* Dark background for this section */
    color: var(--page-vip-club-text-color-light);
}

.page-vip-club__tiers-section .page-vip-club__section-title {
    color: var(--page-vip-club-text-color-light);
}

.page-vip-club__tiers-section .page-vip-club__text-block {
    color: var(--page-vip-club-text-color-light);
}

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

.page-vip-club__tier-card {
    background-color: var(--page-vip-club-auxiliary-color);
    color: var(--page-vip-club-text-color-dark);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-club__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-vip-club__card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--page-vip-club-primary-color);
    margin-bottom: 10px;
}

.page-vip-club__card-text {
    font-size: 16px;
    color: #555555;
}

/* Exclusive Benefits Section */
.page-vip-club__benefits-section {
    padding: 60px 0;
    background-color: var(--page-vip-club-bg-color);
    color: var(--page-vip-club-text-color-dark);
}

.page-vip-club__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-vip-club__benefit-item {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 30px; /* Space for custom bullet */
}

.page-vip-club__benefit-item::before {
    content: '★'; /* Custom bullet point */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--page-vip-club-primary-color);
    font-size: 22px;
    line-height: 1.6;
    font-weight: bold;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
    padding: 60px 0;
    background: var(--page-vip-club-primary-color);
    color: var(--page-vip-club-text-color-light);
}

.page-vip-club__how-to-join-section .page-vip-club__section-title,
.page-vip-club__how-to-join-section .page-vip-club__text-block {
    color: var(--page-vip-club-text-color-light);
}

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

.page-vip-club__step-card {
    background-color: var(--page-vip-club-auxiliary-color);
    color: var(--page-vip-club-text-color-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-vip-club__step-card .page-vip-club__card-title {
    color: var(--page-vip-club-primary-color);
}

.page-vip-club__step-card a {
    color: var(--page-vip-club-primary-color);
    text-decoration: underline;
}

.page-vip-club__step-card a:hover {
    color: #005f33;
}

/* Testimonials Section */
.page-vip-club__testimonials-section {
    padding: 60px 0;
    background-color: var(--page-vip-club-bg-color);
    color: var(--page-vip-club-text-color-dark);
}

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