/* style/vip-program.css */

/* Base container for the page content, ensuring header offset and dark text on light background */
.page-vip-program {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #FFFFFF; /* Light background as per scheme */
    color: #333333; /* Dark text for contrast on light background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

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

/* Hero Section */
.page-vip-program__hero-section {
    position: relative;
    text-align: center;
    color: #FFFFFF; /* Text on hero image will be light */
    padding: 80px 20px; 
    overflow: hidden; /* Ensure image doesn't overflow */
    min-height: 500px; /* Minimum height for hero section */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-vip-program__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area */
    z-index: 1;
}

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

.page-vip-program__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark overlay for readability */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-vip-program__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FCBC45; /* Highlight color for title */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-vip-program__hero-cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color for CTA */
    color: #000000; /* Dark text on light button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-program__hero-cta-button:hover {
    background-color: #FFD700; /* Slightly brighter gold on hover */
    transform: translateY(-3px);
}

/* General Section Styling */
.page-vip-program__introduction-section,
.page-vip-program__tiers-section,
.page-vip-program__how-to-join-section,
.page-vip-program__responsible-gaming-section,
.page-vip-program__faq-section,
.page-vip-program__cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-vip-program__section-title {
    font-size: 2.5em;
    color: #000000; /* Main color for section titles */
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

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

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

.page-vip-program__benefit-card-icon {
    width: 300px; /* Ensuring minimum 200px width */
    height: 225px; /* Corresponding height for a 4:3 aspect ratio */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* No filter properties here */
}

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

.page-vip-program__benefit-card-text {
    font-size: 1em;
    color: #666666;
}

/* VIP Tiers Grid */
.page-vip-program__tiers-section {
    background-color: #F0F0F0;
}

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

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

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

.page-vip-program__tier-image {
    width: 350px; /* Ensuring minimum 200px width, set to display size */
    height: 233px; /* Corresponding height for a 3:2 aspect ratio */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* No filter properties here */
}

.page-vip-program__tier-title {
    font-size: 1.8em;
    color: #FCBC45; /* Highlight color for tier titles */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-vip-program__tier-level-text {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
}

.page-vip-program__tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #333333;
}

.page-vip-program__tier-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95em;
}

.page-vip-program__tier-features li span {
    color: #28a745; /* Green checkmark */
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
    font-size: 1.2em;
}

/* How to Join Steps */
.page-vip-program__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

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

.page-vip-program__step-text {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
}

.page-vip-program__step-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-program__step-button:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

/* Responsible Gaming Section */
.page-vip-program__responsible-gaming-section {
    background-color: #E6E6E6;
    padding: 60px 0;
}

.page-vip-program__responsible-gaming-link {
    display: inline-block;
    margin-top: 30px;
    color: #000000;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-vip-program__responsible-gaming-link:hover {
    color: #FCBC45;
}

/* FAQ Section */
.page-vip-program__faq-section {
    background-color: #F0F0F0;
}

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

.page-vip-program__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-weight: bold;
}

.page-vip-program__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-vip-program__faq-answer {
    font-size: 1em;
    color: #666666;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-vip-program__faq-question.active + .page-vip-program__faq-answer {
    display: block;
}


/* Call to Action Section */
.page-vip-program__cta-section {
    background-color: #000000; /* Dark background for CTA */
    color: #FFFFFF;
    padding: 80px 20px;
}

.page-vip-program__cta-title {
    font-size: 2.8em;
    color: #FCBC45; /* Highlight color */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-program__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

.page-vip-program__cta-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-program__cta-button:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

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

@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;
        min-height: 400px;
    }
    .page-vip-program__hero-content {
        padding: 30px;
    }
    .page-vip-program__hero-title {
        font-size: 2.2em;
    }
    .page-vip-program__hero-description {
        font-size: 1em;
    }
    .page-vip-program__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-vip-program__introduction-section,
    .page-vip-program__tiers-section,
    .page-vip-program__how-to-join-section,
    .page-vip-program__responsible-gaming-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;
    }
    .page-vip-program__benefits-grid,
    .page-vip-program__tier-grid,
    .page-vip-program__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-vip-program__benefit-card-icon,
    .page-vip-program__tier-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
        /* No filter properties here */
    }
    .page-vip-program__cta-title {
        font-size: 2em;
    }
    .page-vip-program__cta-description {
        font-size: 1em;
    }
    .page-vip-program__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    /* Important: Mobile content area image overflow prevention */
    .page-vip-program img {
        max-width: 100%;
        height: auto;
        /* No filter properties here */
    }
}

@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__cta-title {
        font-size: 1.8em;
    }
    .page-vip-program__hero-content {
        padding: 20px;
    }
}