/* style/vip-program.css */

/* Base styles for the VIP program page */
.page-vip-program {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
    padding-top: 0; /* Handled by shared.css body padding, or by hero if needed */
}

/* Fixed Header Offset - if shared.css does NOT set body padding-top */
/* For this specific page, I'll assume shared.css handles body padding-top, so hero-section doesn't need it for desktop, but for mobile, I'll add it to the hero for safety. */
.page-vip-program__hero-section {
    padding-top: var(--header-offset, 120px); /* Fallback for safety, but shared should handle it on body */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #0a0a0a; /* Match body background for consistency */
    padding-bottom: 60px;
    overflow: hidden; /* Prevent content overflow */
}

.page-vip-program__hero-content {
    max-width: 900px;
    padding: 20px;
    z-index: 1;
}

.page-vip-program__hero-title {
    font-size: 3.5em;
    color: #FFFF00; /* Register/Login font color, used for emphasis */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-vip-program__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-vip-program__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
}

/* General Section Styles */
.page-vip-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-vip-program__section-title {
    font-size: 2.5em;
    color: #FFFF00; /* Main titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-program__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-vip-program__btn-primary {
    display: inline-block;
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #C30808;
}

.page-vip-program__btn-primary:hover {
    background-color: #e02020;
    transform: translateY(-2px);
}

.page-vip-program__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #017439; /* Main brand color */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #017439;
}

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

/* Sections with dark background */
.page-vip-program__dark-bg {
    background-color: #0a0a0a; /* Deep dark background */
    color: #ffffff; /* Light text for dark background */
}

/* Sections with light background (cards within dark sections) */
.page-vip-program__light-bg {
    background-color: #1a1a1a; /* Slightly lighter than body for contrast */
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.page-vip-program__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-vip-program__benefit-card {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-program__benefit-icon {
    width: 200px; /* Min size 200px */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-vip-program__benefit-title {
    font-size: 1.5em;
    color: #017439; /* Brand color for titles in light cards */
    margin-bottom: 10px;
}

.page-vip-program__benefit-text {
    font-size: 1em;
    color: #cccccc;
}

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

.page-vip-program__tier-card {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-vip-program__tier-image {
    width: 300px; /* Min size 200px, 300 for better display in card */
    height: 200px; /* Maintain aspect ratio for 600x400 */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

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

.page-vip-program__tier-features li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #f0f0f0;
}

.page-vip-program__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

/* How to Join Section */
.page-vip-program__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-vip-program__step-card {
    padding: 30px;
    text-align: center;
    position: relative;
}

.page-vip-program__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #017439;
    color: #ffffff;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    border: 3px solid #FFFF00;
}

.page-vip-program__step-title {
    font-size: 1.5em;
    color: #FFFF00;
    margin-bottom: 10px;
}

.page-vip-program__step-text {
    color: #cccccc;
}

.page-vip-program__step-text a {
    color: #FFFF00;
    text-decoration: none;
    font-weight: bold;
}

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

/* FAQ Section */
.page-vip-program__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__faq-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-program__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-weight: bold;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-vip-program__faq-question:hover {
    background-color: #028e46; /* Slightly darker green on hover */
}

.page-vip-program__faq-question h3 {
    margin: 0;
    color: #ffffff; /* Ensure title in question is white */
    font-size: 1.1em; /* Adjust font size for better readability */
}