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

.page-promo-vip-program__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-promo-vip-program__hero-container {
    position: relative;
    max-width: 1920px; /* Max width for hero content */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-promo-vip-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for better text contrast, without changing color hue */
}

.page-promo-vip-program__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #FFFFFF;
    max-width: 800px;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo-vip-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login color for emphasis */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-promo-vip-program__hero-description {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-promo-vip-program__hero-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color */
    color: #000000; /* Dark text for light button */
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promo-vip-program__hero-button:hover {
    background-color: #e0a53a;
    transform: translateY(-3px);
}

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

.page-promo-vip-program__introduction-section,
.page-promo-vip-program__tiers-section,
.page-promo-vip-program__how-to-join-section,
.page-promo-vip-program__faq-section,
.page-promo-vip-program__cta-final-section {
    padding: 80px 0;
    text-align: center;
}

.page-promo-vip-program__introduction-section {
    background-color: #000000;
    color: #FFFFFF;
}

.page-promo-vip-program__introduction-title,
.page-promo-vip-program__cta-final-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FCBC45;
}

.page-promo-vip-program__introduction-text,
.page-promo-vip-program__cta-final-description {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-promo-vip-program__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promo-vip-program__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #FCBC45;
    cursor: pointer;
}

.page-promo-vip-program__cta-button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-promo-vip-program__cta-button--register:hover {
    background-color: #FCBC45;
    color: #000000;
}

.page-promo-vip-program__cta-button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-promo-vip-program__cta-button--login:hover {
    background-color: #e0a53a;
}

.page-promo-vip-program__tiers-title,
.page-promo-vip-program__how-to-join-title,
.page-promo-vip-program__faq-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000000;
}

.page-promo-vip-program__tiers-description,
.page-promo-vip-program__how-to-join-description {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

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

.page-promo-vip-program__tier-card,
.page-promo-vip-program__step-card {
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.page-promo-vip-program__tier-card:hover,
.page-promo-vip-program__step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-promo-vip-program__tier-image {
    width: 100%; /* Ensure image fills card width */
    max-width: 400px; /* Max width for consistency */
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

.page-promo-vip-program__tier-name,
.page-promo-vip-program__step-title {
    font-size: 1.8em;
    color: #FCBC45;
    margin-bottom: 15px;
}

.page-promo-vip-program__tier-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    width: 100%;
}

.page-promo-vip-program__tier-benefits li {
    margin-bottom: 10px;
    font-size: 1.05em;
    position: relative;
    padding-left: 25px;
}

.page-promo-vip-program__tier-benefits li::before {
    content: '✓'; /* Checkmark */
    color: #FCBC45;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-promo-vip-program__tier-button,
.page-promo-vip-program__step-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto; /* Push button to bottom */
}

.page-promo-vip-program__tier-button:hover,
.page-promo-vip-program__step-button:hover {
    background-color: #e0a53a;
    transform: translateY(-2px);
}

.page-promo-vip-program__step-text {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-promo-vip-program__faq-accordion {
    margin-top: 40px;
    text-align: left;
}

.page-promo-vip-program__faq-item {
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-promo-vip-program__faq-question {
    padding: 20px 30px;
    margin: 0;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FCBC45;
    background-color: #1a1a1a;
    transition: background-color 0.3s ease;
}

.page-promo-vip-program__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promo-vip-program__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promo-vip-program__faq-answer {
    padding: 0 30px 20px 30px;
    margin: 0;
    font-size: 1em;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promo-vip-program__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 15px;
}

.page-promo-vip-program__faq-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promo-vip-program__faq-button:hover {
    background-color: #e0a53a;
    transform: translateY(-3px);
}

.page-promo-vip-program__cta-final-section {
    background-color: #000000;
    color: #FFFFFF;
}

.page-promo-vip-program__cta-final-container {
    padding: 60px 20px;
}

.page-promo-vip-program__cta-final-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promo-vip-program__cta-final-button:hover {
    background-color: #e0a53a;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo-vip-program__hero-title {
        font-size: 2.8em;
    }
    .page-promo-vip-program__hero-description {
        font-size: 1.1em;
    }
    .page-promo-vip-program__introduction-title,
    .page-promo-vip-program__cta-final-title {
        font-size: 2.2em;
    }
    .page-promo-vip-program__tiers-title,
    .page-promo-vip-program__how-to-join-title,
    .page-promo-vip-program__faq-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promo-vip-program__hero-section {
        padding-top: var(--header-offset, 80px);
    }
    .page-promo-vip-program__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-promo-vip-program__hero-title {
        font-size: 2.2em;
    }
    .page-promo-vip-program__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-promo-vip-program__hero-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-promo-vip-program__introduction-section,
    .page-promo-vip-program__tiers-section,
    .page-promo-vip-program__how-to-join-section,
    .page-promo-vip-program__faq-section,
    .page-promo-vip-program__cta-final-section {
        padding: 60px 0;
    }
    .page-promo-vip-program__introduction-title,
    .page-promo-vip-program__cta-final-title {
        font-size: 1.8em;
    }
    .page-promo-vip-program__introduction-text,
    .page-promo-vip-program__cta-final-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-promo-vip-program__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo-vip-program__cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .page-promo-vip-program__tiers-title,
    .page-promo-vip-program__how-to-join-title,
    .page-promo-vip-program__faq-title {
        font-size: 1.6em;
    }
    .page-promo-vip-program__tier-grid,
    .page-promo-vip-program__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promo-vip-program__tier-image {
        max-width: 100%;
        height: auto;
    }
    .page-promo-vip-program__tier-name,
    .page-promo-vip-program__step-title {
        font-size: 1.5em;
    }
    .page-promo-vip-program__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promo-vip-program__faq-answer {
        padding: 0 20px 15px 20px;
    }
    /* Ensure all images within content areas are responsive and do not overflow */
    .page-promo-vip-program img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-promo-vip-program__tier-card img, .page-promo-vip-program__step-card img {
        width: 100%; /* Ensure card images fill their container */
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .page-promo-vip-program__hero-title {
        font-size: 1.8em;
    }
    .page-promo-vip-program__hero-description {
        font-size: 0.9em;
    }
    .page-promo-vip-program__hero-button {
        padding: 10px 25px;
        font-size: 1em;
    }
    .page-promo-vip-program__introduction-title,
    .page-promo-vip-program__cta-final-title {
        font-size: 1.5em;
    }
    .page-promo-vip-program__tiers-title,
    .page-promo-vip-program__how-to-join-title,
    .page-promo-vip-program__faq-title {
        font-size: 1.4em;
    }
}