/* style/vip-club.css */

/* Base styles for the VIP Club page */
.page-vip-club {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-vip-club__section {
    padding: 60px 0;
    text-align: center;
}

.page-vip-club__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff; /* Default for dark sections */
}

.page-vip-club__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-vip-club__dark-bg {
    background-color: #0a0a0a; /* Ensure dark background for content sections */
    color: #ffffff;
}

.page-vip-club__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-vip-club__light-bg .page-vip-club__section-title,
.page-vip-club__light-bg .page-vip-club__section-description,
.page-vip-club__light-bg .page-vip-club__tier-name,
.page-vip-club__light-bg .page-vip-club__tier-desc,
.page-vip-club__light-bg .page-vip-club__tier-benefits li,
.page-vip-club__light-bg .page-vip-club__section-text,
.page-vip-club__light-bg .page-vip-club__step-title,
.page-vip-club__light-bg .page-vip-club__step-text,
.page-vip-club__light-bg .page-vip-club__faq-question span,
.page-vip-club__light-bg .page-vip-club__faq-answer p {
    color: #333333;
}

.page-vip-club__light-bg a {
    color: #26A9E0;
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px);
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-vip-club__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-vip-club__hero-title {
    font-size: 3.8em;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-vip-club__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-vip-club__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-vip-club__btn-primary:hover {
    background-color: #1e87b8;
    border-color: #1e87b8;
}

.page-vip-club__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-vip-club__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #26A9E0;
}

/* Tier Levels Section */
.page-vip-club__tier-levels {
    background-color: #ffffff;
}

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

.page-vip-club__tier-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333333;
}

.page-vip-club__tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club__tier-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-vip-club__tier-name {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-vip-club__tier-desc {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-vip-club__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.page-vip-club__tier-benefits li {
    margin-bottom: 10px;
    color: #333333;
    position: relative;
    padding-left: 25px;
}

.page-vip-club__tier-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #26A9E0;
}

/* Exclusive Privileges Section */
.page-vip-club__exclusive-privileges {
    background-color: #0a0a0a;
}

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

.page-vip-club__privilege-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: #ffffff;
}

.page-vip-club__privilege-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-club__privilege-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-vip-club__privilege-text {
    font-size: 1em;
    color: #f0f0f0;
}

.page-vip-club__cta-block {
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(38, 169, 224, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-vip-club__cta-text {
    font-size: 1.5em;
    color: #FFFFFF;
    margin: 0;
}

/* How to Join Section */
.page-vip-club__how-to-join {
    background-color: #ffffff;
}

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

.page-vip-club__step-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    color: #333333;
}

.page-vip-club__step-icon {
    font-size: 2.5em;
    color: #26A9E0;
    background-color: #e0f2f7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}

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

.page-vip-club__step-text {
    font-size: 1em;
    color: #555555;
}

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

.page-vip-club__step-text a:hover {
    text-decoration: underline;
}

/* Commitment Section */
.page-vip-club__commitment {
    background-color: #0a0a0a;
}

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

.page-vip-club__commitment-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.page-vip-club__commitment-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-vip-club__commitment-text {
    font-size: 1em;
    color: #f0f0f0;
}

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

.page-vip-club__commitment-text a:hover {
    text-decoration: underline;
}

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

.page-vip-club__faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #f8f8f8;
    color: #333333;
}

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

.page-vip-club__faq-question:hover {
    background-color: #e5e5e5;
}

.page-vip-club__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

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

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

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

.page-vip-club__faq-answer p {
    margin: 0;
    color: #555555;
}

/* Final CTA Section */
.page-vip-club__cta-final {
    padding: 80px 0;
    background-color: #26A9E0; /* Using brand color for strong CTA */
}

.page-vip-club__cta-title {
    font-size: 2.8em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.page-vip-club__cta-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

@media (max-width: 768px) {
    .page-vip-club__hero-section {
        min-height: 500px;
    }

    .page-vip-club__hero-title {
        font-size: 2.2em;
    }

    .page-vip-club__hero-description {
        font-size: 1em;
    }

    .page-vip-club__hero-actions,
    .page-vip-club__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-vip-club__section {
        padding: 40px 0;
    }

    .page-vip-club__section-title {
        font-size: 1.8em;
    }

    .page-vip-club__section-description {
        font-size: 0.95em;
    }

    .page-vip-club__tier-grid,
    .page-vip-club__privilege-grid,
    .page-vip-club__steps-grid,
    .page-vip-club__commitment-grid {
        grid-template-columns: 1fr;
    }

    .page-vip-club__cta-final {
        padding: 60px 0;
    }

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

    .page-vip-club__cta-description {
        font-size: 1em;
    }

    /* Mobile image responsiveness */
    .page-vip-club img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-vip-club__hero-section,
    .page-vip-club__section,
    .page-vip-club__container,
    .page-vip-club__tier-card,
    .page-vip-club__privilege-card,
    .page-vip-club__step-card,
    .page-vip-club__commitment-item,
    .page-vip-club__cta-block,
    .page-vip-club__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .page-vip-club__hero-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-vip-club__faq-question,
    .page-vip-club__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-vip-club__hero-title {
        font-size: 1.8em;
    }
    .page-vip-club__section-title {
        font-size: 1.5em;
    }
    .page-vip-club__cta-title {
        font-size: 1.8em;
    }
}