/* style/vip-club.css */
.page-vip-club {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Default light text color for dark body background */
    background-color: var(--bg-dark-alt); /* Inherited from shared, assuming dark */
}

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

.page-vip-club__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 60px;
    color: #f0f0f0;
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by 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: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: 2;
}

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

.page-vip-club__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

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

/* Buttons */
.page-vip-club__btn-primary {
    display: inline-block;
    background: #FFD700;
    color: #000080; /* Navy blue text on gold button for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-vip-club__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Video Section */
.page-vip-club__video-section {
    background-color: #000080; /* Navy blue background */
    padding: 80px 0;
    color: #ffffff;
}

.page-vip-club__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 0 auto 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-vip-club__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    cursor: pointer;
}

.page-vip-club__video-description {
    text-align: center;
    font-size: 1.1em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits Section */
.page-vip-club__benefits-section {
    background-color: #0d0d0d; /* Dark background */
    padding: 80px 0;
    color: #ffffff;
}

.page-vip-club__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-vip-club__card {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards on dark bg */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: #ffffff; /* Light text on dark card */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

/* VIP Levels Section */
.page-vip-club__levels-section {
    background-color: #000080; /* Navy blue background */
    padding: 80px 0;
    color: #ffffff;
}

.page-vip-club__level-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.page-vip-club__level-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark bg */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-vip-club__level-card:hover {
    transform: translateY(-7px) scale(1.02);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #FFD700;
}

.page-vip-club__level-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-vip-club__level-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club__level-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1em;
    color: #f0f0f0;
}

.page-vip-club__level-benefits li {
    margin-bottom: 8px;
    padding-left: 0;
    position: relative;
}

.page-vip-club__level-benefits li::before {
    content: '✓';
    color: #FFD700;
    margin-right: 8px;
    font-weight: bold;
}

/* FAQ Section */
.page-vip-club__faq-section {
    background-color: #0d0d0d; /* Dark background */
    padding: 80px 0;
    color: #ffffff;
}

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

.page-vip-club__faq-item {
    background-color: rgba(255, 255, 255, 0.07); /* Slightly transparent white for FAQ items */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly darker for question area */
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-vip-club__faq-heading {
    font-size: 1.2em;
    color: #FFD700;
    margin: 0;
    font-weight: bold;
}

.page-vip-club__faq-toggle {
    font-size: 1.8em;
    color: #FFD700;
    font-weight: bold;
    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 25px 25px;
}

.page-vip-club__faq-answer p {
    margin: 0;
    font-size: 1em;
}

/* CTA Section */
.page-vip-club__cta-section {
    background-color: #000080; /* Navy blue background */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

/* Dark background color for sections with light text */
.page-vip-club__dark-bg {
    background-color: #0d0d0d;
    color: #ffffff;
}

/* Light background color for sections with dark text (if any, though this page mostly dark) */
.page-vip-club__light-bg {
    background-color: #000080;
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .page-vip-club {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-vip-club__hero-section {
        height: 600px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-vip-club__hero-title {
        font-size: 2.5em;
    }
    .page-vip-club__hero-description {
        font-size: 1em;
    }
    .page-vip-club__btn-primary {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-vip-club__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-vip-club__section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-vip-club__grid,
    .page-vip-club__level-grid {
        grid-template-columns: 1fr;
    }
    .page-vip-club__card,
    .page-vip-club__level-card {
        padding: 25px;
    }
    .page-vip-club__card-title {
        font-size: 1.5em;
    }
    .page-vip-club__faq-question {
        padding: 18px 20px;
    }
    .page-vip-club__faq-heading {
        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 20px 20px;
    }

    /* Mobile image responsiveness */
    .page-vip-club img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-club__card-image, .page-vip-club__level-image {
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-vip-club__section,
    .page-vip-club__card,
    .page-vip-club__container,
    .page-vip-club__hero-section,
    .page-vip-club__video-section,
    .page-vip-club__benefits-section,
    .page-vip-club__levels-section,
    .page-vip-club__faq-section,
    .page-vip-club__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Mobile video responsiveness */
    .page-vip-club video,
    .page-vip-club__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-club__video-section,
    .page-vip-club__video-container,
    .page-vip-club__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    /* Mobile button responsiveness */
    .page-vip-club__btn-primary,
    .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;
        padding-left: 15px;
        padding-right: 15px;
    }
    .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;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-vip-club__cta-buttons {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-vip-club__hero-section {
        height: 500px;
    }
    .page-vip-club__hero-title {
        font-size: 2em;
    }
    .page-vip-club__hero-description {
        font-size: 0.9em;
    }
    .page-vip-club__section-title {
        font-size: 1.5em;
    }
    .page-vip-club__card-image {
        height: 200px; /* Adjust height for smaller screens */
    }
}