/* style/vip-club.css */

/* --- Global Reset & Base Styles for .page-vip-club --- */
.page-vip-club {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background #121212 */
    background-color: transparent; /* Body background is handled by shared.css */
}

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

/* --- Section Styles --- */
.page-vip-club__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 700px; /* Ensure hero section has a decent height */
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
    background: linear-gradient(135deg, #017439, #004d2e); /* Brand color gradient */
    color: #ffffff;
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Overlay image with transparency */
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for readability */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Highlighted color for main title */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-vip-club__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-vip-club__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-vip-club__section-title {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 20px;
    color: #FFFF00; /* Highlighted color for section titles */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-vip-club__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #f0f0f0;
}

.page-vip-club__dark-section {
    background-color: #017439; /* Brand primary color for dark sections */
    color: #ffffff;
    padding: 80px 0;
}

.page-vip-club__benefits-section,
.page-vip-club__how-to-join-section,
.page-vip-club__tiers-section,
.page-vip-club__exclusive-events-section,
.page-vip-club__personalized-service-section,
.page-vip-club__faq-section,
.page-vip-club__cta-final-section {
    padding: 80px 0;
}

.page-vip-club__how-to-join-section,
.page-vip-club__exclusive-events-section,
.page-vip-club__faq-section {
    background-color: #1a1a1a; /* Dark background for contrast with dark-section */
    color: #ffffff;
}
.page-vip-club__personalized-service-section {
    background-color: #017439;
    color: #ffffff;
}


/* --- Card Styles --- */
.page-vip-club__benefits-grid,
.page-vip-club__steps-grid,
.page-vip-club__tiers-grid,
.page-vip-club__events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-vip-club__benefit-card,
.page-vip-club__step-card,
.page-vip-club__tier-card,
.page-vip-club__event-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
}

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

.page-vip-club__benefit-icon,
.page-vip-club__tier-badge,
.page-vip-club__event-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min-size for images */
    min-height: 200px;
    object-fit: cover;
}

.page-vip-club__benefit-title,
.page-vip-club__step-title,
.page-vip-club__tier-title,
.page-vip-club__event-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #FFFF00; /* Highlighted color for card titles */
}

.page-vip-club__benefit-description,
.page-vip-club__step-description,
.page-vip-club__tier-description,
.page-vip-club__event-description {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.page-vip-club__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #017439;
    color: #ffffff;
    font-size: 2em;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-vip-club__tier-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-vip-club__tier-features li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__tier-features li:last-child {
    border-bottom: none;
}

.page-vip-club__tier-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #cccccc;
}

.page-vip-club__event-link {
    display: inline-block;
    margin-top: 15px;
    color: #FFFF00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-vip-club__event-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* --- Personalized Service Section --- */
.page-vip-club__service-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.page-vip-club__service-text {
    flex: 1;
}

.page-vip-club__service-subtitle {
    font-size: 2em;
    color: #FFFF00;
    margin-bottom: 15px;
    margin-top: 30px;
}

.page-vip-club__service-description {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-vip-club__service-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Enforce min-size for images */
    min-height: 200px;
    object-fit: cover;
}

/* --- FAQ Section --- */
.page-vip-club__faq-list {
    margin-top: 50px;
}

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

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

.page-vip-club__faq-question:hover {
    background-color: #005f38;
}

.page-vip-club__faq-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.2em;
}

.page-vip-club__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    color: #FFFF00; /* Highlighted toggle icon */
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-vip-club__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05); /* Lighter background for answer */
    color: #f0f0f0;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px 25px;
}

.page-vip-club__faq-answer p {
    margin: 0;
    color: #f0f0f0;
}

/* --- Call to Action Buttons --- */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-vip-club__btn-primary {
    background-color: #C30808; /* Custom color for register/login */
    color: #FFFF00; /* Custom font color for register/login */
    border: 2px solid #C30808;
}

.page-vip-club__btn-primary:hover {
    background-color: #e00a0a;
    border-color: #e00a0a;
    color: #ffffff;
}

.page-vip-club__btn-secondary {
    background-color: transparent;
    color: #FFFF00; /* Custom font color */
    border: 2px solid #FFFF00;
}

.page-vip-club__btn-secondary:hover {
    background-color: #FFFF00;
    color: #C30808; /* Custom color */
    border-color: #FFFF00;
}

.page-vip-club__btn-center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
}

.page-vip-club__cta-area,
.page-vip-club__cta-final-section .page-vip-club__cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.page-vip-club__cta-text {
    font-size: 1.2em;
    color: #f0f0f0;
    margin: 0;
}

.page-vip-club__additional-info,
.page-vip-club__additional-content,
.page-vip-club__final-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #cccccc;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-vip-club__hero-title {
        font-size: 2.8em;
    }
    .page-vip-club__hero-description {
        font-size: 1.1em;
    }
    .page-vip-club__section-title {
        font-size: 2.2em;
    }
    .page-vip-club__service-content {
        flex-direction: column;
    }
    .page-vip-club__service-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-vip-club__hero-section {
        min-height: 500px;
        padding: 40px 20px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-vip-club__hero-content {
        padding: 20px;
    }
    .page-vip-club__hero-title {
        font-size: 2.2em;
    }
    .page-vip-club__hero-description {
        font-size: 1em;
    }
    .page-vip-club__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-vip-club__section-title {
        font-size: 1.8em;
    }
    .page-vip-club__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-vip-club__benefits-section,
    .page-vip-club__how-to-join-section,
    .page-vip-club__tiers-section,
    .page-vip-club__exclusive-events-section,
    .page-vip-club__personalized-service-section,
    .page-vip-club__faq-section,
    .page-vip-club__cta-final-section {
        padding: 50px 0;
    }
    .page-vip-club__benefits-grid,
    .page-vip-club__steps-grid,
    .page-vip-club__tiers-grid,
    .page-vip-club__events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-vip-club__benefit-card,
    .page-vip-club__step-card,
    .page-vip-club__tier-card,
    .page-vip-club__event-card {
        padding: 20px;
    }
    .page-vip-club__benefit-title,
    .page-vip-club__step-title,
    .page-vip-club__tier-title,
    .page-vip-club__event-title {
        font-size: 1.5em;
    }
    .page-vip-club__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-vip-club__service-image {
        max-width: 100%;
    }
    .page-vip-club__service-subtitle {
        font-size: 1.6em;
    }
    .page-vip-club__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-vip-club__faq-title {
        font-size: 1.1em;
    }
    .page-vip-club__faq-toggle {
        font-size: 1.5em;
    }
    .page-vip-club__faq-answer {
        padding: 15px 20px;
    }
    .page-vip-club__cta-area,
    .page-vip-club__cta-final-section .page-vip-club__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-club__cta-text {
        font-size: 1em;
        text-align: center;
    }

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

    .page-vip-club video,
    .page-vip-club__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }

    .page-vip-club__section,
    .page-vip-club__card,
    .page-vip-club__container,
    .page-vip-club__video-section,
    .page-vip-club__video-container,
    .page-vip-club__video-wrapper,
    .page-vip-club__cta-buttons,
    .page-vip-club__button-group,
    .page-vip-club__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no horizontal scroll */
   }}