/* style/vip-club.css */

/* Base styles for VIP Club page */
.page-vip-club {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #FFFFFF; /* Ensures consistency with body background */
}

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

.page-vip-club__dark-section {
    background-color: #017439;
    color: #ffffff;
}

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

.page-vip-club__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: inherit;
}

.page-vip-club__dark-section .page-vip-club__section-title {
    color: #ffffff;
}

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

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}

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

.page-vip-club__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay for text readability */
}

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

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

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

/* 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;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-vip-club__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

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

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

.page-vip-club__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
    border-color: #ffffff;
}

.page-vip-club__btn-centered {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
}

/* Benefits Section */
.page-vip-club__benefits-section {
    padding: 80px 0;
}

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

.page-vip-club__benefit-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-vip-club__benefit-card:hover {
    transform: translateY(-5px);
}

.page-vip-club__benefit-icon {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

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

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

/* Tiers Section */
.page-vip-club__tiers-section {
    padding: 80px 0;
}

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

.page-vip-club__tier-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.page-vip-club__tier-card:hover {
    transform: translateY(-5px);
}

.page-vip-club__tier-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #FFFF00; /* Yellow for VIP tiers */
}

.page-vip-club__tier-description {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-vip-club__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

/* How to Join Section */
.page-vip-club__how-to-join-section {
    padding: 80px 0;
}

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

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

.page-vip-club__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #017439;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-vip-club__faq-section {
    padding: 80px 0;
}

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

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

.page-vip-club__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #017439;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1em;
}

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

.page-vip-club__faq-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.1em;
}

.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 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #ffffff;
    color: #555555;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 20px !important;
}

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

/* CTA Section */
.page-vip-club__cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-vip-club__cta-content {
    max-width: 800px;
}

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

@media (max-width: 768px) {
    .page-vip-club__hero-section {
        min-height: 450px;
        padding: 40px 15px;
    }
    .page-vip-club__hero-title {
        font-size: 2.2em;
    }
    .page-vip-club__hero-description {
        font-size: 1em;
    }
    .page-vip-club__section-title {
        font-size: 2em;
    }
    .page-vip-club__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-vip-club__benefits-section,
    .page-vip-club__tiers-section,
    .page-vip-club__how-to-join-section,
    .page-vip-club__faq-section,
    .page-vip-club__cta-section {
        padding: 60px 0;
    }
    .page-vip-club__container {
        padding: 0 15px;
    }
    
    /* Mobile image responsiveness */
    .page-vip-club img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-club__hero-image-wrapper,
    .page-vip-club__benefit-card,
    .page-vip-club__tier-card,
    .page-vip-club__step-card,
    .page-vip-club__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Mobile button responsiveness */
    .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;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-vip-club__btn-centered {
        max-width: 100% !important;
    }

    .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;
    }

    /* Fixed header offset for mobile hero/video */
    .page-vip-club__hero-section {
        padding-top: var(--header-offset, 120px) !important;
    }
}

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