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

/* Base Styles for the VIP Club Levels Page */
.page-vip-club-levels {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

/* Section Styling */
.page-vip-club-levels__section {
    padding: 60px 20px;
    text-align: center;
}

.page-vip-club-levels__dark-bg {
    background-color: #0a0a0a;
    color: #ffffff;
}

.page-vip-club-levels__light-bg {
    background-color: #ffffff;
    color: #333333; /* Dark text for light background */
}

.page-vip-club-levels__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-vip-club-levels__hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    min-height: 70vh;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.page-vip-club-levels__hero-content {
    z-index: 1;
    max-width: 700px;
    margin-right: 40px;
    text-align: left;
}

.page-vip-club-levels__hero-section .page-vip-club-levels__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.page-vip-club-levels__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for main title */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club-levels__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-vip-club-levels__hero-image-wrapper {
    flex-shrink: 0;
    width: 50%;
    max-width: 600px;
    margin-left: 40px;
}

.page-vip-club-levels__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* General Titles */
.page-vip-club-levels__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #26A9E0; /* Brand color for section titles */
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Content Wrapper for text and image */
.page-vip-club-levels__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.page-vip-club-levels__content-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

.page-vip-club-levels__text-block {
    flex: 1;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-vip-club-levels__text-block p {
    margin-bottom: 15px;
}

.page-vip-club-levels__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-vip-club-levels__image-block--center {
    margin-top: 40px;
}

.page-vip-club-levels__image-content {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Highlight Text */
.page-vip-club-levels__highlight {
    color: #26A9E0; /* Brand color for highlights */
    font-weight: bold;
}

/* Buttons */
.page-vip-club-levels__btn-primary,
.page-vip-club-levels__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #26A9E0; /* Brand color for primary buttons */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-vip-club-levels__btn-primary:hover,
.page-vip-club-levels__cta-button:hover {
    background-color: #1e87b8; /* Slightly darker shade on hover */
    transform: translateY(-2px);
}

/* Login Button Specific Style (from custom colors) */
.page-vip-club-levels__btn-login {
    background-color: #EA7C07; /* Custom login color */
    color: #FFFFFF;
}

.page-vip-club-levels__btn-login:hover {
    background-color: #c76a06;
}

/* VIP Levels Table */
.page-vip-club-levels__table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-vip-club-levels__vip-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table is readable on smaller screens if overflow-x is used */
    background-color: #ffffff; /* Table background */
}

.page-vip-club-levels__vip-table th,
.page-vip-club-levels__vip-table td {
    padding: 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
    color: #333333; /* Dark text for table content */
}

.page-vip-club-levels__vip-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #26A9E0; /* Brand color for table headers */
}

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

.page-vip-club-levels__card {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 100%; /* Ensure cards in a row have equal height */
    display: flex;
    flex-direction: column;
}

.page-vip-club-levels__card:hover {
    transform: translateY(-5px);
}

.page-vip-club-levels__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-vip-club-levels__card p {
    font-size: 1em;
    line-height: 1.6;
}

/* How to Join Steps */
.page-vip-club-levels__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-vip-club-levels__steps-list li {
    background-color: #ffffff;
    color: #333333;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.page-vip-club-levels__step-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-vip-club-levels__steps-list p {
    font-size: 1em;
    line-height: 1.5;
    color: #333333;
}

.page-vip-club-levels__link {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-vip-club-levels__link:hover {
    text-decoration: underline;
}

.page-vip-club-levels__cta-wrapper {
    margin-top: 50px;
    text-align: center;
}

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

.page-vip-club-levels__faq-item {
    background-color: #0a0a0a; /* Dark background for FAQ items */
    color: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club-levels__faq-item details {
    border: none; /* Remove default details border */
}

.page-vip-club-levels__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: #26A9E0; /* Brand color for FAQ questions */
    position: relative;
    list-style: none; /* Remove default list style for summary */
}

.page-vip-club-levels__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-vip-club-levels__faq-question::marker {
    display: none; /* Hide default marker for other browsers */
}

.page-vip-club-levels__faq-qtext {
    flex-grow: 1;
}

.page-vip-club-levels__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #ffffff; /* White toggle for contrast */
}

.page-vip-club-levels__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #f0f0f0;
    line-height: 1.6;
}

.page-vip-club-levels__faq-answer p {
    margin-bottom: 10px;
}

/* Bottom CTA Section */
.page-vip-club-levels__cta-bottom {
    padding: 80px 20px;
    background-color: #26A9E0; /* Brand color for bottom CTA */
    color: #ffffff;
}

.page-vip-club-levels__cta-bottom .page-vip-club-levels__section-title {
    color: #ffffff;
    text-shadow: none;
}

.page-vip-club-levels__cta-bottom .page-vip-club-levels__description {
    color: #ffffff;
    margin-bottom: 40px;
}

.page-vip-club-levels__text-center {
    text-align: center;
}

/* Color Contrast Fixes */
.page-vip-club-levels__text-contrast-fix {
    color: #333333 !important; /* Force dark text on light backgrounds */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-vip-club-levels__hero-section .page-vip-club-levels__container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .page-vip-club-levels__hero-content {
        margin-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .page-vip-club-levels__hero-image-wrapper {
        margin-left: 0;
        width: 80%;
        max-width: 500px;
    }

    .page-vip-club-levels__main-title {
        font-size: 2.8em;
    }

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

    .page-vip-club-levels__content-wrapper {
        flex-direction: column;
    }

    .page-vip-club-levels__content-wrapper:nth-child(even) {
        flex-direction: column; /* Reset for mobile */
    }

    .page-vip-club-levels__image-block {
        order: -1; /* Image above text on mobile */
        margin-bottom: 20px;
    }

    .page-vip-club-levels__privilege-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile General */
    .page-vip-club-levels__section {
        padding: 40px 15px;
    }

    .page-vip-club-levels__container {
        padding: 0 10px;
    }

    /* Hero Section Mobile */
    .page-vip-club-levels__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
        min-height: auto;
    }

    .page-vip-club-levels__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
}