/* style/vip-club.css */

/* Variables for consistency */
:root {
    --page-vip-club-primary-color: #0A192F;
    --page-vip-club-secondary-color: #FFD700;
    --page-vip-club-text-light: #f0f0f0; /* For dark backgrounds */
    --page-vip-club-text-dark: #333333; /* For light backgrounds */
    --page-vip-club-background-dark: #1a1a1a;
    --page-vip-club-background-light: #ffffff;
    --page-vip-club-border-color: #333333;
    --page-vip-club-card-bg: #1c2a3e; /* Slightly lighter than primary for cards */
    --page-vip-club-gold-gradient: linear-gradient(90deg, #FFD700, #E0B400);
}

/* Base styles for the page content */
.page-vip-club {
    font-family: 'Arial', sans-serif;
    color: var(--page-vip-club-text-light); /* Default text color for dark background */
    background-color: var(--page-vip-club-primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.page-vip-club__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-vip-club__section {
    padding: 80px 0;
    text-align: center;
}

.page-vip-club__section-title {
    font-size: 2.8em;
    color: var(--page-vip-club-secondary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-vip-club__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc; /* Slightly lighter for readability */
}

/* Buttons */
.page-vip-club__btn {
    display: inline-block;
    padding: 14px 30px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.05em;
    border: none;
}

.page-vip-club__btn--primary {
    background: var(--page-vip-club-secondary-color);
    color: var(--page-vip-club-primary-color); /* Dark text on gold button */
}

.page-vip-club__btn--primary:hover {
    background: #e0b400; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-vip-club__btn--secondary {
    background: transparent;
    color: var(--page-vip-club-secondary-color);
    border: 2px solid var(--page-vip-club-secondary-color);
}

.page-vip-club__btn--secondary:hover {
    background: var(--page-vip-club-secondary-color);
    color: var(--page-vip-club-primary-color);
    transform: translateY(-2px);
}

.page-vip-club__btn--link {
    color: var(--page-vip-club-secondary-color);
    text-decoration: underline;
    font-weight: normal;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}

.page-vip-club__btn--link:hover {
    color: #e0b400;
    text-decoration: none;
}


/* Hero Section */
.page-vip-club__hero {
    background-color: var(--page-vip-club-primary-color);
    color: var(--page-vip-club-text-light);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.page-vip-club__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(255, 215, 0, 0.1));
    z-index: 1;
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-vip-club__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: var(--page-vip-club-secondary-color);
    line-height: 1.2;
}

.page-vip-club__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* About Section */
.page-vip-club__about {
    background-color: var(--page-vip-club-background-dark);
}

/* VIP Levels Section */
.page-vip-club__levels {
    background-color: var(--page-vip-club-primary-color);
}

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

.page-vip-club__level-card {
    background-color: var(--page-vip-club-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-vip-club__level-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--page-vip-club-secondary-color));
}

.page-vip-club__level-title {
    font-size: 1.8em;
    color: var(--page-vip-club-secondary-color);
    margin-bottom: 15px;
}

.page-vip-club__level-desc {
    font-size: 0.95em;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.page-vip-club__level-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
}

.page-vip-club__level-card ul li {
    background: rgba(255, 215, 0, 0.1);
    border-left: 3px solid var(--page-vip-club-secondary-color);
    padding: 8px 15px;
    margin-bottom: 8px;
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 0.9em;
}

/* Benefits Section */
.page-vip-club__benefits {
    background-color: var(--page-vip-club-background-dark);
}

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

.page-vip-club__benefit-card {
    background-color: var(--page-vip-club-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-vip-club__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--page-vip-club-secondary-color));
}

.page-vip-club__benefit-title {
    font-size: 1.6em;
    color: var(--page-vip-club-secondary-color);
    margin-bottom: 10px;
}

.page-vip-club__benefit-desc {
    font-size: 0.95em;
    color: #b0b0b0;
}

/* How to Join Section */
.page-vip-club__how-to-join {
    background-color: var(--page-vip-club-primary-color);
}

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

.page-vip-club__step-card {
    background-color: var(--page-vip-club-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-vip-club__step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--page-vip-club-secondary-color));
}

.page-vip-club__step-title {
    font-size: 1.5em;
    color: var(--page-vip-club-secondary-color);
    margin-bottom: 10px;
}

.page-vip-club__step-desc {
    font-size: 0.95em;
    color: #b0b0b0;
}

.page-vip-club__step-desc a {
    color: var(--page-vip-club-secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-vip-club__step-desc a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-vip-club__faq {
    background-color: var(--page-vip-club-background-dark);
}

.page-vip-club__faq-item {
    background-color: var(--page-vip-club-card-bg);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.page-vip-club__faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-vip-club__faq-question {
    font-size: 1.3em;
    color: var(--page-vip-club-secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-vip-club__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--page-vip-club-secondary-color);
    transition: transform 0.3s ease;
}

.page-vip-club__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-vip-club__faq-answer {
    font-size: 1em;
    color: #cccccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-vip-club__faq-answer.active {
    max-height: 500px; /* Increased for longer answers */
    opacity: 1;
    padding-top: 15px;
}


/* Related Pages Section */
.page-vip-club__related-pages {
    background-color: var(--page-vip-club-primary-color);
}

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

.page-vip-club__detail-card {
    background-color: var(--page-vip-club-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-vip-club__detail-title {
    font-size: 1.6em;
    color: var(--page-vip-club-secondary-color);
    margin-bottom: 15px;
}

.page-vip-club__detail-title a {
    color: inherit;
    text-decoration: none;
}

.page-vip-club__detail-title a:hover {
    text-decoration: underline;
}

.page-vip-club__detail-desc {
    font-size: 0.95em;
    color: #b0b0b0;
    margin-bottom: 20px;
}

/* Call to Action Section */
.page-vip-club__cta {
    background-color: var(--page-vip-club-secondary-color);
    padding: 80px 0;
    color: var(--page-vip-club-primary-color); /* Dark text on gold background */
    text-align: center;
}

.page-vip-club__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-vip-club-primary-color);
}

.page-vip-club__cta-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
}

.page-vip-club__cta-buttons .page-vip-club__btn {
    margin: 10px;
}

.page-vip-club__cta-buttons .page-vip-club__btn--primary {
    background: var(--page-vip-club-primary-color);
    color: var(--page-vip-club-secondary-color);
}

.page-vip-club__cta-buttons .page-vip-club__btn--primary:hover {
    background: #000;
    color: var(--page-vip-club-secondary-color);
}

.page-vip-club__cta-buttons .page-vip-club__btn--secondary {
    background: transparent;
    color: var(--page-vip-club-primary-color);
    border-color: var(--page-vip-club-primary-color);
}

.page-vip-club__cta-buttons .page-vip-club__btn--secondary:hover {
    background: var(--page-vip-club-primary-color);
    color: var(--page-vip-club-secondary-color);
}

/* Fade-in animation for sections */
.page-vip-club .fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-vip-club .fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-vip-club__hero-title {
        font-size: 3em;
    }
    .page-vip-club__hero-subtitle {
        font-size: 1.2em;
    }
    .page-vip-club__section-title {
        font-size: 2.2em;
    }
    .page-vip-club__cta-title {
        font-size: 2.2em;
    }
    .page-vip-club__text {
        font-size: 1em;
    }
    .page-vip-club__level-card ul li {
        font-size: 0.85em;
    }
}

@media (max-width: 768px) {
    .page-vip-club__hero {
        padding: 80px 0;
        min-height: 500px;
    }
    .page-vip-club__hero-title {
        font-size: 2.5em;
    }
    .page-vip-club__hero-subtitle {
        font-size: 1.1em;
    }
    .page-vip-club__section {
        padding: 60px 0;
    }
    .page-vip-club__section-title {
        font-size: 1.8em;
    }
    .page-vip-club__level-grid,
    .page-vip-club__benefit-grid,
    .page-vip-club__steps-grid,
    .page-vip-club__detail-list {
        grid-template-columns: 1fr;
    }
}