/* style/promotions-vip-program.css */

/* Custom Colors */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

/* Base styles for the page */
.page-promotions-vip-program {
    font-family: 'Arial', sans-serif;
    color: var(--color-text-main); /* Default text color for the page */
    background-color: var(--color-background); /* Body background from shared, this is for main content */
    line-height: 1.6;
    padding-bottom: 60px; /* Space for footer */
}

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

/* Hero Section */
.page-promotions-vip-program__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
    box-sizing: border-box;
}

.page-promotions-vip-program__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.page-promotions-vip-program__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    color: var(--color-text-main);
}

.page-promotions-vip-program__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions-vip-program__description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-vip-program__btn-primary,
.page-promotions-vip-program__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-promotions-vip-program__btn-primary {
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: #ffffff; /* Ensures contrast */
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-promotions-vip-program__btn-secondary {
    background: var(--color-background);
    color: var(--color-primary); /* Ensures contrast */
    border: 2px solid var(--color-primary);
}

.page-promotions-vip-program__btn-secondary:hover {
    background: var(--color-primary);
    color: #ffffff; /* Ensures contrast */
    transform: translateY(-3px);
}

/* Sections */
.page-promotions-vip-program__introduction-section,
.page-promotions-vip-program__tiers-section,
.page-promotions-vip-program__benefits-section,
.page-promotions-vip-program__how-to-join-section,
.page-promotions-vip-program__faq-section,
.page-promotions-vip-program__final-cta-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--color-divider);
}

.page-promotions-vip-program__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-gold);
}

.page-promotions-vip-program__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--color-text-secondary);
}

.page-promotions-vip-program__text-block a {
    color: var(--color-secondary);
    text-decoration: none;
}

.page-promotions-vip-program__text-block a:hover {
    text-decoration: underline;
}

/* Tier Cards */
.page-promotions-vip-program__tier-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-vip-program__card {
    background: var(--color-card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-text-main); /* Ensures contrast */
    border: 1px solid var(--color-border);
}

.page-promotions-vip-program__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-promotions-vip-program__card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-gold);
}

.page-promotions-vip-program__card-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.page-promotions-vip-program__text-note {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-top: 30px;
    text-align: center;
    font-style: italic;
}

/* Benefits List */
.page-promotions-vip-program__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-promotions-vip-program__benefit-item {
    background: var(--color-card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--color-primary);
    color: var(--color-text-main); /* Ensures contrast */
}

.page-promotions-vip-program__benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-gold);
}

.page-promotions-vip-program__benefit-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* How To Join Steps */
.page-promotions-vip-program__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-vip-program__step-item {
    background: var(--color-card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--color-secondary);
    color: var(--color-text-main); /* Ensures contrast */
}

.page-promotions-vip-program__step-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-gold);
}

.page-promotions-vip-program__step-description {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

/* FAQ Section */
.page-promotions-vip-program__faq-list {
    margin-top: 40px;
}

.page-promotions-vip-program__faq-item {
    background: var(--color-card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: var(--color-text-main); /* Ensures contrast */
}

.page-promotions-vip-program__faq-item summary {
    list-style: none;
    display: block;
}

.page-promotions-vip-program__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-promotions-vip-program__faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-main);
    border-bottom: 1px solid var(--color-divider);
    transition: background-color 0.3s ease;
}

.page-promotions-vip-program__faq-question:hover {
    background-color: var(--color-deep-green);
}

.page-promotions-vip-program__faq-item[open] .page-promotions-vip-program__faq-question {
    background-color: var(--color-deep-green);
}

.page-promotions-vip-program__faq-qtext {
    flex-grow: 1;
}

.page-promotions-vip-program__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--color-primary);
}

.page-promotions-vip-program__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.page-promotions-vip-program__faq-answer p {
    margin-bottom: 0;
}

/* Final CTA Section */
.page-promotions-vip-program__final-cta-section {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-vip-program__section-title {
        font-size: 2rem;
    }
    .page-promotions-vip-program__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .page-promotions-vip-program__description {
        font-size: 1.1rem;
    }
    .page-promotions-vip-program__card-title {
        font-size: 1.6rem;
    }
    .page-promotions-vip-program__benefit-title,
    .page-promotions-vip-program__step-title {
        font-size: 1.4rem;
    }
    .page-promotions-vip-program__faq-question {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-program__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles header offset, small top padding for hero */
    }
    .page-promotions-vip-program__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-promotions-vip-program__description {
        font-size: 1rem;
    }
    .page-promotions-vip-program__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px; /* Constrain button width on mobile */
        margin-left: auto;
        margin-right: auto;
    }
    .page-promotions-vip-program__btn-primary,
    .page-promotions-vip-program__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions-vip-program__introduction-section,
    .page-promotions-vip-program__tiers-section,
    .page-promotions-vip-program__benefits-section,
    .page-promotions-vip-program__how-to-join-section,
    .page-promotions-vip-program__faq-section,
    .page-promotions-vip-program__final-cta-section {
        padding: 40px 0;
    }

    .page-promotions-vip-program__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-promotions-vip-program__text-block {
        font-size: 0.95rem;
    }
    .page-promotions-vip-program__card {
        padding: 20px;
    }
    .page-promotions-vip-program__card-image {
        height: 150px;
    }
    .page-promotions-vip-program__card-title {
        font-size: 1.4rem;
    }
    .page-promotions-vip-program__benefit-item,
    .page-promotions-vip-program__step-item {
        padding: 20px;
    }
    .page-promotions-vip-program__benefit-title,
    .page-promotions-vip-program__step-title {
        font-size: 1.3rem;
    }
    .page-promotions-vip-program__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-promotions-vip-program__faq-toggle {
        font-size: 1.5rem;
    }
    .page-promotions-vip-program__faq-answer {
        font-size: 0.95rem;
        padding: 10px 20px 15px;
    }

    /* Ensure all images are responsive */
    .page-promotions-vip-program img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* All containers with images/content */
    .page-promotions-vip-program__section,
    .page-promotions-vip-program__card,
    .page-promotions-vip-program__container,
    .page-promotions-vip-program__hero-section,
    .page-promotions-vip-program__introduction-section,
    .page-promotions-vip-program__tiers-section,
    .page-promotions-vip-program__benefits-section,
    .page-promotions-vip-program__how-to-join-section,
    .page-promotions-vip-program__faq-section,
    .page-promotions-vip-program__final-cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    /* Specific override for hero section padding to ensure small top padding */
    .page-promotions-vip-program__hero-section {
        padding-top: 10px !important;
    }

    /* Video responsive styles (if any video is present on the page) */
    .page-promotions-vip-program video,
    .page-promotions-vip-program__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-promotions-vip-program__video-section,
    .page-promotions-vip-program__video-container,
    .page-promotions-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-promotions-vip-program__video-section {
        padding-top: 10px !important;
    }
}

/* Color Contrast Fixes (if needed) */
/* The chosen color palette inherently provides good contrast on the dark background. */
/* For example, gold text on dark green, or light green text on dark green. */
/* Buttons use white text on gradients, or brand color on background for secondary. */

/* Ensure link colors have sufficient contrast */
a {
    color: var(--color-secondary);
}
a:hover {
    color: var(--color-glow);
}

/* Ensure strong text has sufficient contrast */
strong {
    color: var(--color-gold);
}