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

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --dark-text-color: #333333;
    --light-text-color: #ffffff;
    --login-color: #EA7C07;
}

.page-vip-club-levels-privileges {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--light-text-color); /* Default text color for dark body background */
    background-color: transparent; /* Assuming shared.css sets body background */
}

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

.page-vip-club-levels-privileges__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    padding: 80px 20px 40px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    overflow: hidden;
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.page-vip-club-levels-privileges__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-vip-club-levels-privileges__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-vip-club-levels-privileges__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-vip-club-levels-privileges__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--secondary-color);
}

.page-vip-club-levels-privileges__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-vip-club-levels-privileges__btn-primary {
    display: inline-block;
    background-color: var(--login-color); /* Using login color for primary action */
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
}

.page-vip-club-levels-privileges__btn-primary:hover {
    background-color: darken(var(--login-color), 10%);
    border-color: var(--secondary-color);
}

.page-vip-club-levels-privileges__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--light-text-color);
}

.page-vip-club-levels-privileges__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--light-text-color);
}

/* Section Backgrounds */
.page-vip-club-levels-privileges__dark-bg {
    background-color: #0d0d0d; /* A darker background for sections */
    color: var(--light-text-color);
    padding: 60px 0;
}

.page-vip-club-levels-privileges__light-bg {
    background-color: #1a1a1a; /* A slightly lighter dark background */
    color: var(--light-text-color);
    padding: 60px 0;
}

.page-vip-club-levels-privileges__introduction-section .page-vip-club-levels-privileges__section-title,
.page-vip-club-levels-privileges__introduction-section .page-vip-club-levels-privileges__section-description {
    color: var(--light-text-color);
}

.page-vip-club-levels-privileges__introduction-section p {
    color: var(--light-text-color);
    text-align: center;
    margin-bottom: 20px;
}

.page-vip-club-levels-privileges__introduction-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

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

/* 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: 40px;
}

.page-vip-club-levels-privileges__level-card {
    background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent background */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--light-text-color);
}

.page-vip-club-levels-privileges__level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club-levels-privileges__level-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-vip-club-levels-privileges__level-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

/* Privileges Section */
.page-vip-club-levels-privileges__privileges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-vip-club-levels-privileges__privilege-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    color: var(--light-text-color);
}

.page-vip-club-levels-privileges__privilege-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.page-vip-club-levels-privileges__privilege-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.page-vip-club-levels-privileges__privilege-description a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

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

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

.page-vip-club-levels-privileges__step-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--light-text-color);
}

.page-vip-club-levels-privileges__step-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-vip-club-levels-privileges__step-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.page-vip-club-levels-privileges__center-button {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

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

.page-vip-club-levels-privileges__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-club-levels-privileges__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--secondary-color);
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-vip-club-levels-privileges__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.page-vip-club-levels-privileges__faq-question h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.2em;
}

.page-vip-club-levels-privileges__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.page-vip-club-levels-privileges__faq-item.active .page-vip-club-levels-privileges__faq-toggle {
    transform: rotate(45deg);
}

.page-vip-club-levels-privileges__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #cccccc;
}

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

.page-vip-club-levels-privileges__faq-answer p {
    margin: 0;
    color: #cccccc;
}

.page-vip-club-levels-privileges__faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

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

/* Call to Action Section */
.page-vip-club-levels-privileges__cta-section {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-vip-club-levels-privileges__cta-content {
    max-width: 800px;
}

.page-vip-club-levels-privileges__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-vip-club-levels-privileges__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

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

@media (max-width: 768px) {
    .page-vip-club-levels-privileges {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-vip-club-levels-privileges__hero-section {
        min-height: 450px;
        padding: 60px 15px 30px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header on mobile */
    }

    .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__btn-primary {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-vip-club-levels-privileges__section-description {
        font-size: 1em;
        margin-left: 15px;
        margin-right: 15px;
    }

    .page-vip-club-levels-privileges__levels-grid,
    .page-vip-club-levels-privileges__privileges-grid,
    .page-vip-club-levels-privileges__upgrade-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-vip-club-levels-privileges__level-card,
    .page-vip-club-levels-privileges__privilege-item,
    .page-vip-club-levels-privileges__step-card {
        padding: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .page-vip-club-levels-privileges__level-title,
    .page-vip-club-levels-privileges__privilege-title,
    .page-vip-club-levels-privileges__step-title {
        font-size: 1.5em;
    }

    .page-vip-club-levels-privileges__faq-list {
        margin-left: 15px;
        margin-right: 15px;
    }

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

    .page-vip-club-levels-privileges__faq-question h3 {
        font-size: 1em;
    }

    .page-vip-club-levels-privileges__faq-toggle {
        font-size: 1.5em;
    }

    .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: 15px 20px;
    }

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

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

    /* Mobile responsive images */
    .page-vip-club-levels-privileges img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Mobile responsive containers for images/content */
    .page-vip-club-levels-privileges__section,
    .page-vip-club-levels-privileges__container,
    .page-vip-club-levels-privileges__level-card,
    .page-vip-club-levels-privileges__privilege-item,
    .page-vip-club-levels-privileges__step-card,
    .page-vip-club-levels-privileges__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Mobile responsive buttons */
    .page-vip-club-levels-privileges__btn-primary,
    .page-vip-club-levels-privileges__center-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-vip-club-levels-privileges__cta-buttons,
    .page-vip-club-levels-privileges__button-group,
    .page-vip-club-levels-privileges__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
}