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

/* Base styles for the page content area */
.page-promotions-vip-privileges {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

/* Hero Section */
.page-promotions-vip-privileges__hero-section {
    position: relative;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    overflow: hidden; /* Ensure image doesn't overflow */
    padding-top: var(--header-offset, 120px); /* Apply header offset here if shared doesn't do it on body */
}

.page-promotions-vip-privileges__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.4); /* Darken image for better text contrast */
}

.page-promotions-vip-privileges__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-privileges__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

.page-promotions-vip-privileges__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* General Section Styling */
.page-promotions-vip-privileges__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-promotions-vip-privileges__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 10px;
    position: relative;
}

.page-promotions-vip-privileges__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    border-radius: 2px;
}

.page-promotions-vip-privileges__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0; /* Light grey for readability on dark background */
    text-align: justify;
}

/* CTA Buttons */
.page-promotions-vip-privileges__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-promotions-vip-privileges__btn-primary,
.page-promotions-vip-privileges__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;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text break */
    text-align: center;
}

.page-promotions-vip-privileges__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-promotions-vip-privileges__btn-primary:hover {
    background-color: #d16b06;
    border-color: #d16b06;
}

.page-promotions-vip-privileges__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-promotions-vip-privileges__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* About VIP Section */
.page-promotions-vip-privileges__about-vip-section {
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
    padding: 60px 0;
}

/* VIP Levels Section */
.page-promotions-vip-privileges__levels-section {
    background-color: #0d0d0d;
    padding: 60px 0;
}

.page-promotions-vip-privileges__level-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.page-promotions-vip-privileges__card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-promotions-vip-privileges__card-title {
    font-size: 1.8em;
    color: #26A9E0; /* Brand color for card titles */
    margin-bottom: 15px;
}

.page-promotions-vip-privileges__card-image {
    width: 100%;
    max-width: 250px; /* Constrain image size within card */
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum image size */
    min-height: 200px;
}

.page-promotions-vip-privileges__card p {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.page-promotions-vip-privileges__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    max-width: 200px; /* Align list items */
}

.page-promotions-vip-privileges__card li {
    background: rgba(38, 169, 224, 0.1);
    border-left: 3px solid #26A9E0;
    padding: 8px 15px;
    margin-bottom: 8px;
    border-radius: 4px;
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-promotions-vip-privileges__note {
    text-align: center;
    font-style: italic;
    margin-top: 30px;
    color: #b0b0b0;
}

/* Benefits Section */
.page-promotions-vip-privileges__benefits-section {
    background-color: #1a1a1a;
    padding: 60px 0;
}

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

.page-promotions-vip-privileges__benefit-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.page-promotions-vip-privileges__benefit-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-promotions-vip-privileges__benefit-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum image size */
    min-height: 200px;
}

.page-promotions-vip-privileges__benefit-card p {
    color: #e0e0e0;
    font-size: 1em;
}

/* Join Section */
.page-promotions-vip-privileges__join-section {
    background-color: #0a0a0a;
    padding: 60px 0;
    text-align: center;
}

/* FAQ Section */
.page-promotions-vip-privileges__faq-section {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.page-promotions-vip-privileges__faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.page-promotions-vip-privileges__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-privileges__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    background-color: rgba(38, 169, 224, 0.15); /* Slightly transparent brand color */
    transition: background-color 0.3s ease;
}

.page-promotions-vip-privileges__faq-question:hover {
    background-color: rgba(38, 169, 224, 0.25);
}

.page-promotions-vip-privileges__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    transition: transform 0.3s ease;
    color: #26A9E0;
}

.page-promotions-vip-privileges__faq-item.active .page-promotions-vip-privileges__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions-vip-privileges__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #e0e0e0;
}

.page-promotions-vip-privileges__faq-item.active .page-promotions-vip-privileges__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 25px;
}

.page-promotions-vip-privileges__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
    font-size: 1em;
    color: #e0e0e0;
}

/* Conclusion Section */
.page-promotions-vip-privileges__conclusion-section {
    background-color: #0a0a0a;
    padding: 60px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-vip-privileges__hero-title {
        font-size: 3em;
    }
    .page-promotions-vip-privileges__section-title {
        font-size: 2em;
    }
    .page-promotions-vip-privileges__level-cards,
    .page-promotions-vip-privileges__benefit-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

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

    .page-promotions-vip-privileges__hero-section {
        padding: 80px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-promotions-vip-privileges__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-vip-privileges__hero-description {
        font-size: 1em;
    }
    .page-promotions-vip-privileges__section-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-privileges__text-block {
        font-size: 1em;
    }
    .page-promotions-vip-privileges__container {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    /* Images responsiveness */
    .page-promotions-vip-privileges img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* All containers with images */
    .page-promotions-vip-privileges__level-cards,
    .page-promotions-vip-privileges__benefit-grid,
    .page-promotions-vip-privileges__card,
    .page-promotions-vip-privileges__benefit-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-promotions-vip-privileges__card-image,
    .page-promotions-vip-privileges__benefit-image {
        min-width: 200px !important; /* Enforce min size for content images */
        min-height: 200px !important;
    }


    /* Buttons responsiveness */
    .page-promotions-vip-privileges__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions-vip-privileges__btn-primary,
    .page-promotions-vip-privileges__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    /* FAQ responsiveness */
    .page-promotions-vip-privileges__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions-vip-privileges__faq-answer {
        padding: 0 20px;
    }
    .page-promotions-vip-privileges__faq-item.active .page-promotions-vip-privileges__faq-answer {
        padding: 10px 20px;
    }
}