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

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

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

.page-vip-club-levels__section-title {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-vip-club-levels__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Hero Section */
.page-vip-club-levels__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-vip-club-levels__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-vip-club-levels__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-vip-club-levels__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-vip-club-levels__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-vip-club-levels__hero-description {
    font-size: 1.4em;
    color: #f0f0f0;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Buttons */
.page-vip-club-levels__btn-primary,
.page-vip-club-levels__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    border: none; /* Reset default button border */
}

.page-vip-club-levels__btn-primary {
    background: #C30808; /* Custom color for register/login */
    color: #FFFF00; /* Custom font color for register/login */
    margin-right: 20px;
}

.page-vip-club-levels__btn-primary:hover {
    background: #e00a0a;
    transform: translateY(-2px);
}

.page-vip-club-levels__btn-secondary {
    background: transparent;
    color: #017439;
    border: 2px solid #017439;
}

.page-vip-club-levels__btn-secondary:hover {
    background: #017439;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Introduction Section */
.page-vip-club-levels__introduction-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Darker background for contrast */
}

/* Levels Overview Section */
.page-vip-club-levels__levels-overview-section {
    padding: 80px 0;
    background-color: #121212; /* Match body background */
}

.page-vip-club-levels__overview-image {
    display: block;
    margin: 40px auto 60px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

.page-vip-club-levels__level-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter dark card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club-levels__level-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-club-levels__level-title {
    font-size: 1.8em;
    color: #FFFF00; /* Highlight VIP levels */
    margin-bottom: 15px;
}

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

.page-vip-club-levels__level-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-vip-club-levels__level-benefits li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #c0c0c0;
    font-size: 0.95em;
}

.page-vip-club-levels__level-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #017439; /* Brand green for checkmark */
}

/* Exclusive Privileges Section */
.page-vip-club-levels__exclusive-privileges-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

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

.page-vip-club-levels__privilege-item:hover {
    transform: translateY(-5px);
}

.page-vip-club-levels__privilege-icon {
    width: 200px; /* Minimum 200px */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-vip-club-levels__privilege-title {
    font-size: 1.6em;
    color: #FFFF00;
    margin-bottom: 10px;
}

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

/* Upgrade & Maintain Section */
.page-vip-club-levels__upgrade-maintain-section {
    padding: 80px 0;
    background-color: #121212;
}

.page-vip-club-levels__upgrade-image {
    display: block;
    margin: 40px auto 60px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

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

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

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

.page-vip-club-levels__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

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

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

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

.page-vip-club-levels__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-vip-club-levels__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-vip-club-levels__faq-question h3 {
    margin: 0;
    color: inherit;
    font-size: 1em; /* Adjust to fit parent font-size */
}

.page-vip-club-levels__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.page-vip-club-levels__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);
}

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

.page-vip-club-levels__faq-answer p {
    margin: 0;
    color: #e0e0e0;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-club-levels__hero-title {
        font-size: 2.8em;
    }
    .page-vip-club-levels__hero-description {
        font-size: 1.2em;
    }
    .page-vip-club-levels__section-title {
        font-size: 2em;
    }
    .page-vip-club-levels__level-title,
    .page-vip-club-levels__privilege-title,
    .page-vip-club-levels__step-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-vip-club-levels {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-vip-club-levels__hero-section {
        height: 500px;
    }
    .page-vip-club-levels__hero-title {
        font-size: 2.2em;
    }
    .page-vip-club-levels__hero-description {
        font-size: 1em;
    }
}