/* style/vip-program.css */

/* Base styles for the VIP program page */
.page-vip-program {
    color: #333333; /* Dark text for light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Container for consistent content width */
.page-vip-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.page-vip-program__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-vip-program__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCBC45; /* Highlight color */
    border-radius: 2px;
}

/* Text Content */
.page-vip-program__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__text-content--note {
    font-size: 0.95em;
    color: #555555;
    font-style: italic;
    margin-top: 30px;
}

/* Call to Action Buttons */
.page-vip-program__hero-cta-button,
.page-vip-program__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FCBC45;
}

.page-vip-program__hero-cta-button:hover,
.page-vip-program__cta-button:hover {
    background-color: #e0a53a; /* Slightly darker on hover */
    transform: translateY(-2px);
}

.page-vip-program__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Hero Section */
.page-vip-program__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 40px; /* Adjusted padding, header offset handled by main */
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF; /* Light text for hero */
    overflow: hidden;
}

.page-vip-program__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3; /* Overlay for text readability */
}

.page-vip-program__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* No filter to change image color */
}

.page-vip-program__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

/* Benefits Section */
.page-vip-program__benefits-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

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

.page-vip-program__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-vip-program__card-description {
    font-size: 1em;
    color: #555555;
}

/* Tiers Section */
.page-vip-program__tiers-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.page-vip-program__tier-card {
    background-color: #fefefe;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-program__tier-card:hover {
    border-color: #FCBC45;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* How to Join Section */
.page-vip-program__how-to-join-section {
    padding: 80px 0;
    background-color: #000000; /* Dark background */
    color: #FFFFFF; /* Light text */
}

.page-vip-program__how-to-join-section .page-vip-program__section-title,
.page-vip-program__how-to-join-section .page-vip-program__text-content {
    color: #FFFFFF;
}

.page-vip-program__how-to-join-section .page-vip-program__section-title::after {
    background-color: #FCBC45;
}

.page-vip-program__join-steps {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-vip-program__join-steps li {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly visible light background */
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    font-size: 1.1em;
    display: flex;
    align-items: flex-start;
    color: #f0f0f0;
}

.page-vip-program__join-steps li strong {
    color: #FCBC45;
    margin-right: 15px;
    font-size: 1.2em;
    flex-shrink: 0;
}

.page-vip-program__join-steps li a {
    color: #FCBC45;
    text-decoration: underline;
}

.page-vip-program__join-steps li a:hover {
    color: #e0a53a;
}

/* FAQ Section */
.page-vip-program__faq-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-vip-program__faq-items {
    max-width: 900px;
    margin: 50px auto 0;
}

.page-vip-program__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

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

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

.page-vip-program__faq-question:hover {
    background-color: #f5f5f5;
}

.page-vip-program__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #555555;
}

.page-vip-program__faq-answer.open {
    max-height: 200px; /* Adjust as needed for content */
    padding: 15px 25px 20px;
}

.page-vip-program__faq-answer p {
    margin: 0;
    font-size: 1em;
}

.page-vip-program__faq-answer a {
    color: #FCBC45;
    text-decoration: underline;
}

.page-vip-program__faq-answer a:hover {
    color: #e0a53a;
}

/* Final CTA Section */
.page-vip-program__cta-final-section {
    padding: 80px 0;
    background-color: #FCBC45; /* Highlight background */
    color: #000000; /* Dark text for contrast */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-vip-program__cta-final-section .page-vip-program__section-title,
.page-vip-program__cta-final-section .page-vip-program__text-content {
    color: #000000;
    position: relative;
    z-index: 2;
}

.page-vip-program__cta-final-section .page-vip-program__section-title::after {
    background-color: #000000; /* Dark line for highlight background */
}

.page-vip-program__image-content {
    margin-top: 40px;
    text-align: center;
}

.page-vip-program__image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: block; /* Ensure no extra space below image */
    margin: 0 auto; /* Center image */
    /* No filter to change image color */
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

/* Ensure all images in content area meet minimum size */
.page-vip-program__intro-section img,
.page-vip-program__benefits-section img,
.page-vip-program__tiers-section img,
.page-vip-program__how-to-join-section img,
.page-vip-program__faq-section img,
.page-vip-program__cta-final-section img {
    min-width: 200px;
    min-height: 200px;
    max-width: 100%; /* Ensure responsiveness */
    height: auto; /* Maintain aspect ratio */
}

/* Specific image styling for support image in final CTA */
.page-vip-program__image-content--support {
    margin-top: 60px;
}
.page-vip-program__image-content--support img {
    max-width: 600px; /* Example max-width for this specific image */
    width: 100%; /* Ensures it scales down on smaller screens */
    height: auto;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-program__hero-title {
        font-size: 3em;
    }
    .page-vip-program__hero-description {
        font-size: 1.2em;
    }
    .page-vip-program__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-vip-program {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-vip-program__hero-section {
        padding: 60px 20px;
    }
    .page-vip-program__hero-title {
        font-size: 2.5em;
    }
    .page-vip-program__hero-description {
        font-size: 1.1em;
    }
    .page-vip-program__hero-cta-button,
    .page-vip-program__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-vip-program__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-vip-program__section-title {
        font-size: 1.8em;
    }
    .page-vip-program__text-content {
        font-size: 1em;
    }
    .page-vip-program__benefits-grid,
    .page-vip-program__tiers-grid {
        grid-template-columns: 1fr;
    }
    .page-vip-program__join-steps li {
        flex-direction: column;
        align-items: flex-start;
    }
    .page-vip-program__join-steps li strong {
        margin-bottom: 10px;
    }
    .page-vip-program__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-vip-program__faq-answer.open {
        padding: 10px 20px 15px;
    }
    /* Mobile image overflow prevention */
    .page-vip-program img {
        max-width: 100%;
        height: auto;
        display: block; /* Ensure images are block elements */
    }
}

@media (max-width: 480px) {
    .page-vip-program__hero-title {
        font-size: 2em;
    }
    .page-vip-program__hero-description {
        font-size: 0.95em;
    }
    .page-vip-program__section-title {
        font-size: 1.5em;
    }
}