/* 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: #000000; /* Assuming body background is black */
}

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

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

.page-vip-club__dark-bg {
    background-color: #0d0d0d;
    color: #ffffff;
}

.page-vip-club__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-club__section-title--light {
    color: #FFD700;
}

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

.page-vip-club__section-text--light {
    color: #f0f0f0;
}

.page-vip-club__highlight-text {
    color: #FFD700;
    font-weight: bold;
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    box-sizing: border-box;
}

.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.7);
    z-index: 2;
}

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

.page-vip-club__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.page-vip-club__btn-primary {
    background-color: #FFD700;
    color: #000000; /* Contrast with gold */
    border: 2px solid #FFD700;
    margin: 10px;
}

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

.page-vip-club__btn-primary--large {
    font-size: 1.2em;
    padding: 18px 35px;
}

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

.page-vip-club__btn-secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

/* Intro Section */
.page-vip-club__intro-section {
    background-color: #000000;
    color: #ffffff;
}

.page-vip-club__intro-section a {
    color: #FFD700;
    text-decoration: none;
}

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

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

.page-vip-club__card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
    height: 100%;
    box-sizing: border-box;
}

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

.page-vip-club__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter */
}

.page-vip-club__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-vip-club__card-text {
    font-size: 0.95em;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.page-vip-club__card-text a {
    color: #FFD700;
    text-decoration: none;
}

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

.page-vip-club__card-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-vip-club__card-features li {
    margin-bottom: 8px;
    color: #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.page-vip-club__card-features li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.page-vip-club__privilege-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    height: 100%;
    box-sizing: border-box;
}

.page-vip-club__privilege-icon {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    filter: none; /* Ensure no CSS filter */
}

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

.page-vip-club__privilege-description {
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-vip-club__privilege-description a {
    color: #FFD700;
    text-decoration: none;
}

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

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

.page-vip-club__step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    height: 100%;
    box-sizing: border-box;
}

.page-vip-club__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-vip-club__step-title a {
    color: #FFD700;
    text-decoration: none;
}

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

.page-vip-club__step-description {
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-vip-club__step-description a {
    color: #FFD700;
    text-decoration: none;
}

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

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

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

.page-vip-club__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

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

.page-vip-club__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    cursor: pointer;
    background-color: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-vip-club__faq-question h3 {
    margin: 0;
    color: #FFD700;
    font-size: 1em; /* Adjust h3 size within question */
}

.page-vip-club__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    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: #f0f0f0;
}

.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;
    padding-bottom: 10px;
    color: #f0f0f0;
}

.page-vip-club__faq-answer a {
    color: #FFD700;
    text-decoration: none;
}

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

/* Final CTA Section */
.page-vip-club__cta-final-section {
    padding: 80px 0;
}

.page-vip-club__cta-final-section .page-vip-club__btn-primary {
    margin-top: 30px;
}

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

@media (max-width: 768px) {
    .page-vip-club {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-vip-club__hero-section {
        height: 60vh;
        padding-top: var(--header-offset, 120px) !important; /* Apply header offset on mobile if needed */
    }
    .page-vip-club__hero-title {
        font-size: 2.5em;
    }
    .page-vip-club__hero-description {
        font-size: 1.1em;
    }
    .page-vip-club__section-title {
        font-size: 2em;
    }
    .page-vip-club__section-text {
        font-size: 1em;
    }
    .page-vip-club__card,
    .page-vip-club__privilege-item,
    .page-vip-club__step-card {
        padding: 20px;
    }
    .page-vip-club__card-image,
    .page-vip-club__privilege-icon {
        height: 180px;
    }
    .page-vip-club__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-vip-club__faq-answer {
        padding: 0 20px;
    }
    .page-vip-club__faq-item.active .page-vip-club__faq-answer {
        padding: 15px 20px;
    }

    /* Mobile specific image, video, button adaptations */
    .page-vip-club img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-club video,
    .page-vip-club__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-club__section,
    .page-vip-club__card,
    .page-vip-club__container,
    .page-vip-club__video-section,
    .page-vip-club__video-container,
    .page-vip-club__video-wrapper,
    .page-vip-club__cta-buttons,
    .page-vip-club__button-group,
    .page-vip-club__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }
    .page-vip-club__cta-button,
    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary,
    .page-vip-club a[class*="button"],
    .page-vip-club a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-vip-club__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-vip-club__hero-title {
        font-size: 2em;
    }
    .page-vip-club__hero-description {
        font-size: 1em;
    }
    .page-vip-club__section-title {
        font-size: 1.8em;
    }
    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-vip-club__btn-primary--large {
        font-size: 1em;
        padding: 15px 25px;
    }
}