/* style/vip-club.css */

/* General styles for the VIP Club page */
.page-vip-club {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Main text color for dark backgrounds */
    background-color: #08160F; /* Custom background color */
    line-height: 1.6;
}

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

/* Section padding */
.page-vip-club section {
    padding: 60px 0;
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* body already handles --header-offset, so small top padding here */
    overflow: hidden;
}

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

.page-vip-club__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-vip-club__hero-content {
    position: relative; /* Ensure content is above image but not overlapping it */
    padding: 40px 20px;
    max-width: 900px;
    z-index: 2;
    background-color: rgba(8, 22, 15, 0.8); /* Semi-transparent background for readability */
    margin-top: -100px; /* Pull up slightly over the image for visual flow */
    border-radius: 10px;
}

.page-vip-club__hero-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    color: #F2FFF6;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-vip-club__hero-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Secondary text color */
    margin-bottom: 30px;
}

.page-vip-club__hero-button,
.page-vip-club__join-button,
.page-vip-club__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button gradient */
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.page-vip-club__hero-button:hover,
.page-vip-club__join-button:hover,
.page-vip-club__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Slightly darker hover */
}

/* Intro Section */
.page-vip-club__intro-section {
    background-color: #08160F;
    text-align: center;
}

.page-vip-club__intro-title {
    font-size: 2.5em;
    color: #F2FFF6;
    margin-bottom: 20px;
}

.page-vip-club__intro-text {
    font-size: 1.05em;
    color: #A7D9B8;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* VIP Levels Section */
.page-vip-club__levels-section {
    background-color: #11271B; /* Card BG color for this section */
    text-align: center;
    color: #F2FFF6;
}

.page-vip-club__levels-title {
    font-size: 2.5em;
    color: #F2FFF6;
    margin-bottom: 20px;
}

.page-vip-club__levels-description {
    font-size: 1.05em;
    color: #A7D9B8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-vip-club__level-card {
    background-color: #0A4B2C; /* Deep Green for card background */
    border: 1px solid #2E7A4E; /* Custom border color */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__level-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-vip-club__level-name {
    font-size: 1.8em;
    color: #F2C14E; /* Gold color for VIP names */
    margin-bottom: 10px;
}

.page-vip-club__level-detail {
    font-size: 0.95em;
    color: #A7D9B8;
}

.page-vip-club__levels-footer-text {
    font-size: 1em;
    color: #A7D9B8;
    margin-top: 40px;
}

/* Benefits Section */
.page-vip-club__benefits-section {
    background-color: #08160F;
    color: #F2FFF6;
}

.page-vip-club__benefits-title {
    font-size: 2.5em;
    color: #F2FFF6;
    margin-bottom: 40px;
    text-align: center;
}

.page-vip-club__benefits-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-vip-club__benefits-text-content {
    flex: 1;
    min-width: 300px;
}

.page-vip-club__benefits-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-vip-club__benefits-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-club__benefits-intro,
.page-vip-club__benefits-outro {
    font-size: 1.05em;
    color: #A7D9B8;
    margin-bottom: 20px;
}

.page-vip-club__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.page-vip-club__benefits-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1em;
    color: #F2FFF6;
    display: flex;
    align-items: center;
}

.page-vip-club__benefits-item strong {
    color: #57E38D; /* Glow color for emphasis */
    margin-right: 10px;
}

/* How to Join Section */
.page-vip-club__join-section {
    background-color: #22C768; /* Auxiliary color for medium background */
    color: #000000; /* Dark text for medium background */
    text-align: center;
    padding: 60px 0;
}

.page-vip-club__join-title {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 20px;
}

.page-vip-club__join-description {
    font-size: 1.05em;
    color: #333333;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__join-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.page-vip-club__join-step-item {
    background-color: #F2FFF6; /* Light background for step cards */
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: #333333;
}

.page-vip-club__join-step-title {
    font-size: 1.6em;
    color: #13994A; /* Darker green for titles */
    margin-bottom: 15px;
}

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

.page-vip-club__join-step-text a {
    color: #13994A; /* Link color */
    text-decoration: underline;
}

.page-vip-club__join-step-text a:hover {
    color: #2AD16F;
}

.page-vip-club__join-footer-text {
    font-size: 1.05em;
    color: #333333;
    margin-top: 40px;
    margin-bottom: 30px;
}

/* Events Section */
.page-vip-club__events-section {
    background-color: #08160F;
    color: #F2FFF6;
    text-align: center;
}

.page-vip-club__events-title {
    font-size: 2.5em;
    color: #F2FFF6;
    margin-bottom: 20px;
}

.page-vip-club__events-description {
    font-size: 1.05em;
    color: #A7D9B8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-vip-club__event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-vip-club__event-name {
    font-size: 1.6em;
    color: #F2FFF6;
    margin-bottom: 10px;
}

.page-vip-club__event-detail {
    font-size: 0.95em;
    color: #A7D9B8;
}

.page-vip-club__events-footer-text {
    font-size: 1em;
    color: #A7D9B8;
    margin-top: 40px;
}

/* Service Section (Dark Background) */
.page-vip-club__service-section {
    background-color: #11271B; /* Card BG color for this section */
    color: #F2FFF6;
    text-align: center;
}

.page-vip-club__service-title {
    font-size: 2.5em;
    color: #F2FFF6;
    margin-bottom: 20px;
}

.page-vip-club__service-description {
    font-size: 1.05em;
    color: #A7D9B8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__service-item {
    background-color: #0A4B2C; /* Deep Green for service item background */
    border: 1px solid #2E7A4E;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1em;
    color: #F2FFF6;
}

.page-vip-club__service-item strong {
    color: #57E38D;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.page-vip-club__service-footer-text {
    font-size: 1em;
    color: #A7D9B8;
    margin-top: 40px;
}

/* FAQ Section */
.page-vip-club__faq-section {
    background-color: #08160F;
    color: #F2FFF6;
    text-align: center;
}

.page-vip-club__faq-title {
    font-size: 2.5em;
    color: #F2FFF6;
    margin-bottom: 40px;
}

.page-vip-club__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-vip-club__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-club__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: #F2FFF6;
    outline: none;
}

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

.page-vip-club__faq-item summary:hover {
    background-color: rgba(17, 168, 78, 0.1); /* Slight hover effect with main color */
}

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

.page-vip-club__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D; /* Glow color */
}

.page-vip-club__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    color: #A7D9B8;
    line-height: 1.5;
}

.page-vip-club__faq-answer a {
    color: #57E38D;
    text-decoration: underline;
}

.page-vip-club__faq-answer a:hover {
    color: #2AD16F;
}

/* Final CTA Section (Dark Background) */
.page-vip-club__cta-final {
    background-color: #11271B; /* Card BG color for this section */
    text-align: center;
    padding: 60px 0;
}

.page-vip-club__cta-title {
    font-size: 2.5em;
    color: #F2FFF6;
    margin-bottom: 20px;
}

.page-vip-club__cta-description {
    font-size: 1.1em;
    color: #A7D9B8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-vip-club section {
        padding: 40px 0;
    }

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

    /* Hero Section */
    .page-vip-club__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-vip-club__hero-content {
        margin-top: -60px; /* Adjust for smaller screens */
        padding: 30px 15px;
    }
    .page-vip-club__hero-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }
    .page-vip-club__hero-description {
        font-size: 1em;
    }
    .page-vip-club__hero-button,
    .page-vip-club__join-button,
    .page-vip-club__cta-button {
        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;
        font-size: 1em;
    }

    /* Titles */
    .page-vip-club__intro-title,
    .page-vip-club__levels-title,
    .page-vip-club__benefits-title,
    .page-vip-club__join-title,
    .page-vip-club__events-title,
    .page-vip-club__service-title,
    .page-vip-club__faq-title,
    .page-vip-club__cta-title {
        font-size: 2em;
    }

    /* Descriptions */
    .page-vip-club__intro-text,
    .page-vip-club__levels-description,
    .page-vip-club__benefits-intro,
    .page-vip-club__benefits-outro,
    .page-vip-club__join-description,
    .page-vip-club__join-footer-text,
    .page-vip-club__events-description,
    .page-vip-club__events-footer-text,
    .page-vip-club__service-description,
    .page-vip-club__service-footer-text,
    .page-vip-club__cta-description {
        font-size: 0.95em;
    }

    /* Grid layouts */
    .page-vip-club__levels-grid,
    .page-vip-club__benefits-grid,
    .page-vip-club__events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-vip-club__join-steps {
        flex-direction: column;
        gap: 20px;
    }

    .page-vip-club__join-step-item {
        max-width: 100%;
        margin: 0 auto;
    }

    .page-vip-club__benefits-grid {
        flex-direction: column;
    }

    /* Images */
    .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__benefits-image-wrapper,
    .page-vip-club__level-card,
    .page-vip-club__event-card,
    .page-vip-club__join-step-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-vip-club__hero-image {
        max-height: 400px;
    }
    .page-vip-club__level-image,
    .page-vip-club__event-image {
        max-height: 180px;
    }
    .page-vip-club__faq-item summary {
        padding: 15px;
        font-size: 1em;
    }
    .page-vip-club__faq-answer {
        padding: 0 15px 15px 15px;
    }
}