/* style/vip-program.css */
.page-vip-program {
    color: #333333; /* Default text color for assumed light body background */
}

.page-vip-program__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: #000000; /* Dark background for hero */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    padding-bottom: 60px; /* Add some padding at the bottom */
}

.page-vip-program__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-vip-program__hero-title {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Login button color for emphasis */
}

.page-vip-program__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-vip-program__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-vip-program__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-vip-program__button--primary {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-vip-program__button--primary:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-vip-program__button--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-vip-program__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-vip-program__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-vip-program__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-vip-program__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-vip-program__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Slightly dim the background image */
    display: block;
}

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

.page-vip-program__about-section, 
.page-vip-program__tiers-section, 
.page-vip-program__how-to-join-section, 
.page-vip-program__faq-section, 
.page-vip-program__cta-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.page-vip-program__about-section {
    background-color: #f8f8f8;
}

.page-vip-program__section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.page-vip-program__section-description {
    font-size: 1.1em;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555555;
}

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

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

.page-vip-program__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-vip-program__feature-card img {
    width: 200px; /* Minimum size for content images */
    
    object-fit: contain;
    margin-bottom: 20px;
}

.page-vip-program__feature-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.page-vip-program__feature-text {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
}

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

.page-vip-program__tier-card {
    background-color: #000000;
    color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-vip-program__tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.page-vip-program__tier-card img {
    width: 100%;
    height: 200px; /* Minimum size for content images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-vip-program__tier-title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FCBC45;
}

.page-vip-program__tier-description {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
}

.page-vip-program__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-vip-program__tier-benefits li {
    font-size: 0.95em;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    color: #e0e0e0;
}

.page-vip-program__tier-benefits li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    top: 0;
}

.page-vip-program__action-area {
    margin-top: 50px;
}

.page-vip-program__how-to-join-section {
    background-color: #f0f0f0;
}

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

.page-vip-program__step-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease;
}

.page-vip-program__step-card:hover {
    transform: translateY(-5px);
}

.page-vip-program__step-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.page-vip-program__step-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666666;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-vip-program__faq-section {
    background-color: #FFFFFF;
}

.page-vip-program__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.page-vip-program__faq-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-vip-program__faq-question {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.page-vip-program__faq-answer {
    font-size: 1em;
    line-height: 1.7;
    color: #555555;
}

.page-vip-program__cta-section {
    background-color: #000000; /* Dark background for CTA */
    color: #ffffff;
    padding: 80px 0;
}

.page-vip-program__cta-section .page-vip-program__section-title {
    color: #FCBC45;
}

.page-vip-program__cta-section .page-vip-program__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-vip-program__hero-title {
        font-size: 2.8em;
    }
    .page-vip-program__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-vip-program__hero-section {
        padding-top: var(--header-offset, 120px);
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-vip-program__hero-title {
        font-size: 2.2em;
    }
    .page-vip-program__hero-description {
        font-size: 1em;
    }
    .page-vip-program__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-program__button {
        width: 100%;
    }
    .page-vip-program__about-section,
    .page-vip-program__tiers-section,
    .page-vip-program__how-to-join-section,
    .page-vip-program__faq-section,
    .page-vip-program__cta-section {
        padding: 40px 0;
    }
    .page-vip-program__section-title {
        font-size: 1.8em;
    }
    .page-vip-program__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-vip-program__feature-card img,
    .page-vip-program__tier-card img {
        max-width: 100%;
        height: auto; /* Ensure images are responsive and not smaller than 200px */
        min-height: 200px;
    }
    .page-vip-program__feature-card,
    .page-vip-program__tier-card,
    .page-vip-program__step-card {
        padding: 20px;
    }
    .page-vip-program__faq-item {
        padding: 20px;
    }
    .page-vip-program__faq-question {
        font-size: 1.1em;
    }
    /* Ensure content images are responsive and don't overflow */
    .page-vip-program img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-vip-program__hero-title {
        font-size: 1.8em;
    }
    .page-vip-program__section-title {
        font-size: 1.6em;
    }
    .page-vip-program__button--large {
        font-size: 1.1em;
        padding: 15px 25px;
    }
}