/* style/vip-club-levels.css */
.page-vip-club-levels {
    color: #333333; /* Dark text for default (white) body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-vip-club-levels__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px; /* Minimum height for hero section */
    background-color: #003366; /* Dark blue background */
    color: #ffffff;
    padding: 80px 20px;
}

.page-vip-club-levels__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-vip-club-levels__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club-levels__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #f0f0f0;
}

.page-vip-club-levels__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #003366; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-vip-club-levels__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-vip-club-levels__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3; /* Subtle background image */
}

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

.page-vip-club-levels__section-title {
    font-size: 2.5em;
    color: #003366; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-vip-club-levels__overview-section,
.page-vip-club-levels__tiers-section,
.page-vip-club-levels__how-to-join-section,
.page-vip-club-levels__faq-section,
.page-vip-club-levels__cta-bottom-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-vip-club-levels__overview-section {
    background-color: #f8f8f8;
}

.page-vip-club-levels__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-vip-club-levels__feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

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

.page-vip-club-levels__feature-text {
    color: #666666;
}

.page-vip-club-levels__tiers-section {
    background-color: #003366;
    color: #ffffff;
}

.page-vip-club-levels__tiers-section .page-vip-club-levels__section-title {
    color: #FFD700;
}

.page-vip-club-levels__tiers-section .page-vip-club-levels__section-intro {
    color: #f0f0f0;
}

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

.page-vip-club-levels__tier-card {
    background-color: #0a407a; /* Slightly lighter blue for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club-levels__tier-card:hover {
    transform: translateY(-5px);
    background-color: #1a508a; /* Darker blue on hover */
}

.page-vip-club-levels__tier-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: contain; /* Ensure full image is visible */
    margin-bottom: 20px;
    border-radius: 5px;
    display: block;
}

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

.page-vip-club-levels__tier-description {
    color: #cccccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-vip-club-levels__tier-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: #f0f0f0;
}

.page-vip-club-levels__tier-benefits li {
    background-color: rgba(255, 215, 0, 0.1);
    padding: 8px 15px;
    margin-bottom: 8px;
    border-left: 3px solid #FFD700;
    border-radius: 3px;
    font-size: 0.95em;
}

.page-vip-club-levels__tier-cta {
    display: inline-block;
    background-color: #FFD700;
    color: #003366;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto; /* Push button to bottom */
}

.page-vip-club-levels__tier-cta:hover {
    background-color: #e6c200;
}

.page-vip-club-levels__how-to-join-section {
    background-color: #f8f8f8;
}

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

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

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

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

.page-vip-club-levels__step-text {
    color: #666666;
    margin-bottom: 20px;
}

.page-vip-club-levels__step-cta {
    display: inline-block;
    background-color: #003366;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-vip-club-levels__step-cta:hover {
    background-color: #002244;
}

.page-vip-club-levels__faq-section {
    padding-bottom: 80px;
}

.page-vip-club-levels__faq-item {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-vip-club-levels__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-vip-club-levels__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    margin-left: 10px;
}

.page-vip-club-levels__faq-answer {
    font-size: 1em;
    color: #555555;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    display: none; /* Hidden by default, toggled by JS */
}

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

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

.page-vip-club-levels__cta-bottom-section {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-vip-club-levels__cta-bottom-section .page-vip-club-levels__section-title {
    color: #FFD700;
}

.page-vip-club-levels__cta-bottom-section .page-vip-club-levels__section-intro {
    color: #f0f0f0;
    margin-bottom: 50px;
}

.page-vip-club-levels__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    margin-bottom: 20px;
}

.page-vip-club-levels__cta-link {
    display: block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-vip-club-levels__cta-link:hover {
    color: #e6c200;
}

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

    .page-vip-club-levels__hero-description {
        font-size: 1.2em;
    }

    .page-vip-club-levels__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-vip-club-levels__hero-title {
        font-size: 2.5em;
    }

    .page-vip-club-levels__hero-description {
        font-size: 1.1em;
    }

    .page-vip-club-levels__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-vip-club-levels__section-title {
        font-size: 1.8em;
    }

    .page-vip-club-levels__section-intro {
        font-size: 1em;
    }

    .page-vip-club-levels__features-grid,
    .page-vip-club-levels__tiers-grid,
    .page-vip-club-levels__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-vip-club-levels__hero-section,
    .page-vip-club-levels__overview-section,
    .page-vip-club-levels__tiers-section,
    .page-vip-club-levels__how-to-join-section,
    .page-vip-club-levels__faq-section,
    .page-vip-club-levels__cta-bottom-section {
        padding: 40px 0;
    }

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

    /* Ensure content area images are responsive and do not overflow */
    .page-vip-club-levels img {
        max-width: 100%;
        height: auto;
    }

    .page-vip-club-levels__tier-image {
        height: auto;
        min-height: 200px; /* Ensure minimum size */
    }

    .page-vip-club-levels__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-vip-club-levels__hero-title {
        font-size: 2em;
    }

    .page-vip-club-levels__hero-description {
        font-size: 0.95em;
    }

    .page-vip-club-levels__section-title {
        font-size: 1.5em;
    }

    .page-vip-club-levels__faq-question {
        font-size: 1.1em;
    }
}