/* style/vip-club-levels-privileges.css */

/* Base Styles for the page */
.page-vip-club-levels-privileges {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #000000; /* Matching body background for consistency */
}

.page-vip-club-levels-privileges a {
    color: #26A9E0;
    text-decoration: none;
}

.page-vip-club-levels-privileges a:hover {
    text-decoration: underline;
}

.page-vip-club-levels-privileges__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-vip-club-levels-privileges__hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    background-color: #26A9E0; /* Brand color as background */
    color: #ffffff; /* White text for brand color background */
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-vip-club-levels-privileges__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3; /* Subtle background image */
    filter: none; /* Ensure no image filters */
}

.page-vip-club-levels-privileges__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club-levels-privileges__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    color: #f0f0f0;
}

.page-vip-club-levels-privileges__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-vip-club-levels-privileges__btn-primary {
    background-color: #EA7C07; /* Login button color for primary CTA */
    color: #ffffff;
}

.page-vip-club-levels-privileges__btn-primary:hover {
    background-color: #d16b06;
    transform: translateY(-2px);
}

.page-vip-club-levels-privileges__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
    margin-left: 20px;
}

.page-vip-club-levels-privileges__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Section General Styles */
.page-vip-club-levels-privileges__introduction-section,
.page-vip-club-levels-privileges__benefits-section,
.page-vip-club-levels-privileges__upgrade-guide-section,
.page-vip-club-levels-privileges__cta-section {
    padding: 80px 0;
}

.page-vip-club-levels-privileges__levels-overview-section,
.page-vip-club-levels-privileges__faq-section {
    padding: 80px 0;
    background-color: rgba(38, 169, 224, 0.1); /* Slightly transparent brand color on dark background */
    color: #ffffff;
}

.page-vip-club-levels-privileges__light-bg {
    background-color: #000000; /* Dark body background */
    color: #ffffff; /* Light text for dark background */
}

.page-vip-club-levels-privileges__dark-bg {
    background-color: #26A9E0; /* Brand color */
    color: #ffffff; /* White text for brand color */
}

.page-vip-club-levels-privileges__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
}

.page-vip-club-levels-privileges__section-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-vip-club-levels-privileges__note-text {
    font-size: 0.95em;
    font-style: italic;
    color: #cccccc;
    margin-top: 30px;
}

/* VIP Levels Grid */
.page-vip-club-levels-privileges__levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-vip-club-levels-privileges__level-card {
    background-color: rgba(255, 255, 255, 0.1); /* Light background for cards on dark sections */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #ffffff; /* White text for cards */
}

.page-vip-club-levels-privileges__level-card:hover {
    transform: translateY(-10px);
}

.page-vip-club-levels-privileges__level-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure it respects max-width */
    margin-left: auto;
    margin-right: auto;
    filter: none; /* Ensure no image filters */
}

.page-vip-club-levels-privileges__level-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #26A9E0; /* Brand color for titles */
}

.page-vip-club-levels-privileges__level-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* Benefits Grid */
.page-vip-club-levels-privileges__benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-vip-club-levels-privileges__benefit-card {
    background-color: #26A9E0; /* Brand color background for benefits */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff; /* White text for brand color background */
}

.page-vip-club-levels-privileges__benefit-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-vip-club-levels-privileges__benefit-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* Upgrade Guide Steps */
.page-vip-club-levels-privileges__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-vip-club-levels-privileges__step-item {
    background-color: rgba(38, 169, 224, 0.1); /* Light background for cards on dark sections */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club-levels-privileges__step-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #26A9E0; /* Brand color for titles */
}

.page-vip-club-levels-privileges__step-description {
    font-size: 1em;
    color: #f0f0f0;
}

.page-vip-club-levels-privileges__upgrade-image {
    max-width: 800px;
    height: auto;
    display: block;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    filter: none; /* Ensure no image filters */
}

/* FAQ Section */
.page-vip-club-levels-privileges__faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club-levels-privileges__faq-item {
    background-color: rgba(255, 255, 255, 0.1); /* Light background for FAQ items on dark section */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    color: #ffffff;
}

.page-vip-club-levels-privileges__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #26A9E0; /* Brand color for question background */
    color: #ffffff; /* White text for question */
    transition: background-color 0.3s ease;
}

.page-vip-club-levels-privileges__faq-question:hover {
    background-color: #1e87bb;
}

.page-vip-club-levels-privileges__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-vip-club-levels-privileges__faq-item.active .page-vip-club-levels-privileges__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-vip-club-levels-privileges__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for answer */
    color: #f0f0f0;
}

.page-vip-club-levels-privileges__faq-item.active .page-vip-club-levels-privileges__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to reveal content */
    padding: 20px 25px;
}

.page-vip-club-levels-privileges__faq-answer p {
    margin: 0;
    font-size: 1em;
    color: #f0f0f0;
    text-align: left;
}

/* Call to Action Buttons Group */
.page-vip-club-levels-privileges__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-club-levels-privileges__hero-title {
        font-size: 2.8em;
    }

    .page-vip-club-levels-privileges__hero-description {
        font-size: 1.2em;
    }

    .page-vip-club-levels-privileges__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-vip-club-levels-privileges__hero-section {
        min-height: 500px;
        padding: 80px 0;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }

    .page-vip-club-levels-privileges__hero-title {
        font-size: 2.2em;
    }

    .page-vip-club-levels-privileges__hero-description {
        font-size: 1em;
    }

    .page-vip-club-levels-privileges__section-title {
        font-size: 1.8em;
    }

    .page-vip-club-levels-privileges__section-text {
        font-size: 0.95em;
    }

    .page-vip-club-levels-privileges__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
        margin-left: 0 !important; /* Remove margin-left for stacked buttons */
        margin-bottom: 15px; /* Add vertical spacing */
    }

    .page-vip-club-levels-privileges__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        gap: 0; /* Reset gap as margin-bottom handles spacing */
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .page-vip-club-levels-privileges__cta-button:last-child {
        margin-bottom: 0;
    }

    .page-vip-club-levels-privileges__levels-grid,
    .page-vip-club-levels-privileges__benefit-grid,
    .page-vip-club-levels-privileges__guide-steps {
        grid-template-columns: 1fr;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-vip-club-levels-privileges__level-card,
    .page-vip-club-levels-privileges__benefit-card,
    .page-vip-club-levels-privileges__step-item {
        padding: 25px;
    }

    .page-vip-club-levels-privileges__faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
    }

    .page-vip-club-levels-privileges__faq-answer {
        padding: 0 20px;
    }

    .page-vip-club-levels-privileges__faq-item.active .page-vip-club-levels-privileges__faq-answer {
        padding: 18px 20px;
    }

    /* Images responsive */
    .page-vip-club-levels-privileges img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-club-levels-privileges__section,
    .page-vip-club-levels-privileges__card,
    .page-vip-club-levels-privileges__container,
    .page-vip-club-levels-privileges__hero-section,
    .page-vip-club-levels-privileges__introduction-section,
    .page-vip-club-levels-privileges__levels-overview-section,
    .page-vip-club-levels-privileges__benefits-section,
    .page-vip-club-levels-privileges__upgrade-guide-section,
    .page-vip-club-levels-privileges__faq-section,
    .page-vip-club-levels-privileges__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }
}

@media (max-width: 480px) {
    .page-vip-club-levels-privileges__hero-title {
        font-size: 1.8em;
    }
    .page-vip-club-levels-privileges__section-title {
        font-size: 1.5em;
    }
}

/* Ensure no image filters are used */
.page-vip-club-levels-privileges img {
    filter: none;
}