/* style/vip-program.css */

/* --- Base Styles --- */
.page-vip-program {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Default text color for the page, from custom colors */
    background-color: #08160F; /* Default background color for the page, from custom colors */
    line-height: 1.6;
    padding-bottom: 50px; /* Add some padding at the bottom */
}

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

.page-vip-program__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Gold color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-vip-program__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #F2C14E;
}

.page-vip-program__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #A7D9B8; /* Secondary text color */
}

.page-vip-program__text-block .highlight {
    color: #F2C14E;
    font-weight: bold;
}

.page-vip-program__link {
    color: #57E38D; /* Glow color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-vip-program__link:hover {
    color: #F2C14E;
    text-decoration: underline;
}

/* --- Buttons --- */
.page-vip-program__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-vip-program__btn-primary,
.page-vip-program__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-vip-program__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button gradient */
    color: #F2FFF6;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-vip-program__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-vip-program__btn-secondary {
    background: transparent;
    color: #57E38D; /* Glow color for secondary button text */
    border: 2px solid #57E38D;
}

.page-vip-program__btn-secondary:hover {
    background: #57E38D;
    color: #08160F; /* Dark text on hover */
    transform: translateY(-3px);
}

/* --- Hero Section --- */
.page-vip-program__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image then text */
    align-items: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    background-color: #0A4B2C; /* A darker green background for hero */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-vip-program__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height of hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.page-vip-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.8); /* Slightly dim the image for better text readability */
    /* No filter to change color, only brightness */
}

.page-vip-program__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above image */
    margin-top: -80px; /* Pull content slightly up over the image */
}

.page-vip-program__main-title {
    font-weight: bold;
    color: #F2C14E; /* Gold color for H1 */
    margin-bottom: 20px;
    line-height: 1.2;
    /* No fixed font-size, rely on clamp for responsiveness if needed */
    font-size: clamp(2.2em, 5vw, 3.5em); /* Example using clamp for responsive H1 */
}

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

/* --- Introduction Section --- */
.page-vip-program__introduction-section {
    padding: 80px 0;
    background-color: #08160F;
}

.page-vip-program__image-content {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* --- Tiers Section --- */
.page-vip-program__tiers-section {
    padding: 80px 0;
    background-color: #11271B; /* Darker background for this section */
    color: #F2FFF6;
}

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

.page-vip-program__tier-card {
    background-color: #0A4B2C; /* Deep green for tier cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-program__tier-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #F2C14E; /* Gold color for tier titles */
}

.page-vip-program__gold-text {
    color: #F2C14E;
}

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

.page-vip-program__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #F2FFF6;
}

.page-vip-program__tier-benefits li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-vip-program__tier-benefits li::before {
    content: '⭐'; /* Star emoji for list items */
    position: absolute;
    left: 0;
    color: #F2C14E;
}

/* --- Benefits Section --- */
.page-vip-program__benefits-section {
    padding: 80px 0;
    background-color: #08160F;
}

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

.page-vip-program__benefit-card {
    background-color: #11271B; /* Card background color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-program__benefit-title {
    font-size: 1.5em;
    color: #F2C14E;
    margin-bottom: 15px;
    text-align: center;
}

.page-vip-program__benefit-description {
    font-size: 1em;
    color: #A7D9B8;
    text-align: center;
}

/* --- How to Join Section --- */
.page-vip-program__how-to-join-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep green for this section */
    color: #F2FFF6;
}

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

.page-vip-program__step-card {
    background-color: #11271B;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E;
}

.page-vip-program__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #57E38D;
    margin-bottom: 15px;
    background: rgba(87, 227, 141, 0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

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

.page-vip-program__step-description {
    font-size: 1em;
    color: #A7D9B8;
}

/* --- FAQ Section --- */
.page-vip-program__faq-section {
    padding: 80px 0;
    background-color: #08160F;
}

.page-vip-program__faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__faq-item {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-vip-program__faq-item summary {
    list-style: none; /* Hide default marker */
}

.page-vip-program__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-vip-program__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6;
    cursor: pointer;
    background-color: #0A4B2C; /* Darker background for question */
    transition: background-color 0.3s ease;
}

.page-vip-program__faq-question:hover {
    background-color: #1E3A2A; /* Slightly lighter on hover */
}

.page-vip-program__faq-qtext {
    flex-grow: 1;
    color: #F2C14E; /* Gold for question text */
}

.page-vip-program__faq-toggle {
    font-size: 1.5em;
    margin-left: 20px;
    color: #57E38D;
}

.page-vip-program__faq-item[open] .page-vip-program__faq-toggle {
    content: '−'; /* Change to minus when open */
}

.page-vip-program__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #A7D9B8;
    background-color: #11271B;
    border-top: 1px solid #1E3A2A;
}

/* --- CTA Section --- */
.page-vip-program__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #0A4B2C;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-vip-program__main-title {
        font-size: clamp(2em, 4vw, 3em);
    }

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

    .page-vip-program__hero-content {
        margin-top: -50px;
    }
}

@media (max-width: 768px) {
    .page-vip-program {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-vip-program__container {
        padding: 0 15px;
    }

    .page-vip-program__hero-section {
        padding-bottom: 40px;
    }

    .page-vip-program__hero-content {
        margin-top: -30px;
    }

    .page-vip-program__main-title {
        font-size: clamp(1.8em, 7vw, 2.8em);
    }

    .page-vip-program__hero-description {
        font-size: 1.1em;
    }

    .page-vip-program__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-vip-program__text-block {
        font-size: 1em;
    }

    .page-vip-program__cta-buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 15px;
        padding: 0 15px;
    }

    .page-vip-program__btn-primary,
    .page-vip-program__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
    }

    .page-vip-program__tiers-grid,
    .page-vip-program__benefits-grid,
    .page-vip-program__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    /* All containers with images/videos */
    .page-vip-program__hero-section,
    .page-vip-program__introduction-section,
    .page-vip-program__tiers-section,
    .page-vip-program__benefits-section,
    .page-vip-program__how-to-join-section,
    .page-vip-program__faq-section,
    .page-vip-program__cta-section,
    .page-vip-program__container,
    .page-vip-program__card,
    .page-vip-program__tier-card,
    .page-vip-program__benefit-card,
    .page-vip-program__step-card,
    .page-vip-program__faq-item {
        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-program__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    /* Specific for video (if any) - no video in current content, but good to have the rule */
    .page-vip-program video,
    .page-vip-program__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-vip-program__video-section,
    .page-vip-program__video-container,
    .page-vip-program__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-vip-program__video-section {
        padding-top: 10px !important;
    }
}