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

/* Base styles for the VIP Club Privileges page */
.page-vip-club-privileges {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #1A202C; /* Dark gray for text on light body background */
    background-color: #f4f4f4; /* Inherited from body, but good to keep in mind */
    padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-vip-club-privileges__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-vip-club-privileges__hero-section {
    position: relative;
    padding: 80px 20px 60px;
    text-align: center;
    overflow: hidden; /* To contain the hero image */
    background-color: #1A202C; /* Dark background for hero section */
    color: #ffffff; /* Light text on dark background */
}

.page-vip-club-privileges__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-vip-club-privileges__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-vip-club-privileges__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-vip-club-privileges__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-vip-club-privileges__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    display: block;
}

.page-vip-club-privileges__hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Buttons */
.page-vip-club-privileges__button {
    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, transform 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.page-vip-club-privileges__button--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #1A202C; /* Dark text on gold */
    border: 2px solid #FFD700;
}

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

.page-vip-club-privileges__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary */
    border: 2px solid #FFD700;
}

.page-vip-club-privileges__button--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
}

.page-vip-club-privileges__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #DC143C; /* Red accent for small button */
    color: #ffffff;
    border: none;
}

.page-vip-club-privileges__button--small:hover {
    background-color: #b00f2f;
    transform: translateY(-2px);
}

/* Section Titles and Text */
.page-vip-club-privileges__section-title {
    font-size: 2.5em;
    color: #1A202C;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-vip-club-privileges__section-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #333333;
}

/* Introduction Section */
.page-vip-club-privileges__introduction-section {
    padding: 80px 0;
    background-color: #ffffff; /* White background for contrast */
}

.page-vip-club-privileges__introduction-section img {
    display: block;
    margin: 40px auto 0;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Features Section */
.page-vip-club-privileges__features-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.page-vip-club-privileges__feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-privileges__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.page-vip-club-privileges__feature-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-vip-club-privileges__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-vip-club-privileges__feature-description {
    font-size: 1em;
    color: #555555;
}

/* VIP Levels Section */
.page-vip-club-privileges__levels-section {
    padding: 80px 0;
    background-color: #1A202C; /* Dark background for VIP levels */
    color: #f0f0f0; /* Light text on dark background */
}

.page-vip-club-privileges__levels-section .page-vip-club-privileges__section-title {
    color: #FFD700; /* Gold title on dark background */
}

.page-vip-club-privileges__levels-section .page-vip-club-privileges__section-title::after {
    background-color: #FFD700;
}

.page-vip-club-privileges__levels-section .page-vip-club-privileges__section-text {
    color: #cccccc;
}

.page-vip-club-privileges__levels-section img {
    display: block;
    margin: 40px auto 60px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

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

.page-vip-club-privileges__level-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.page-vip-club-privileges__level-description {
    font-size: 1em;
    color: #e0e0e0;
}

.page-vip-club-privileges__levels-actions {
    text-align: center;
    margin-top: 60px;
}


/* How to Join Section */
.page-vip-club-privileges__how-to-join-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.page-vip-club-privileges__step-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-vip-club-privileges__step-title {
    font-size: 1.6em;
    color: #1A202C;
    margin-bottom: 15px;
}

.page-vip-club-privileges__step-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}


/* FAQ Section */
.page-vip-club-privileges__faq-section {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.page-vip-club-privileges__faq-items {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-vip-club-privileges__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 25px 30px;
}

.page-vip-club-privileges__faq-question {
    font-size: 1.3em;
    color: #1A202C;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-vip-club-privileges__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
}

.page-vip-club-privileges__faq-item.active .page-vip-club-privileges__faq-question::after {
    content: '-';
}

.page-vip-club-privileges__faq-answer {
    font-size: 1em;
    color: #555555;
    display: none;
    margin-top: 15px;
}

.page-vip-club-privileges__faq-item.active .page-vip-club-privileges__faq-answer {
    display: block;
}

/* Call to Action Section */
.page-vip-club-privileges__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #DC143C; /* Red accent background */
    color: #ffffff;
}

.page-vip-club-privileges__cta-section .page-vip-club-privileges__section-title {
    color: #ffffff;
}

.page-vip-club-privileges__cta-section .page-vip-club-privileges__section-title::after {
    background-color: #FFD700;
}

.page-vip-club-privileges__cta-section .page-vip-club-privileges__section-text {
    color: #f0f0f0;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-club-privileges__hero-title {
        font-size: 2.8em;
    }
    .page-vip-club-privileges__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-vip-club-privileges {
        padding-top: var(--header-offset, 80px);
        overflow-x: hidden; /* Prevent horizontal scroll on mobile */
    }
    .page-vip-club-privileges__hero-section {
        padding: 60px 15px 40px;
    }
    .page-vip-club-privileges__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-vip-club-privileges__hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    .page-vip-club-privileges__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-club-privileges__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-vip-club-privileges__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-vip-club-privileges__section-text {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-vip-club-privileges__features-grid,
    .page-vip-club-privileges__levels-list,
    .page-vip-club-privileges__steps-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure images in content sections are responsive and don't overflow */
    .page-vip-club-privileges__introduction-section img,
    .page-vip-club-privileges__feature-card img,
    .page-vip-club-privileges__levels-section img,
    .page-vip-club-privileges__step-card img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min image size */
        min-height: 200px; /* Enforce min image size */
    }
}

@media (max-width: 480px) {
    .page-vip-club-privileges__hero-title {
        font-size: 1.8em;
    }
    .page-vip-club-privileges__section-title {
        font-size: 1.5em;
    }
    .page-vip-club-privileges__button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-vip-club-privileges__feature-title,
    .page-vip-club-privileges__level-title,
    .page-vip-club-privileges__step-title {
        font-size: 1.4em;
    }
}