/* style/vip-program.css */

/* Root variables for colors */
:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --background-dark: #0D0E12;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
}

/* Base styles for the page content */
.page-vip-program {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for dark background */
    background: var(--background-dark); /* Page background */
    padding-bottom: 60px;
}

/* Ensure body padding-top is handled by shared.css */
/* No padding-top: var(--header-offset); here to prevent double padding */

.page-vip-program__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px; /* Space below content */
    overflow: hidden;
    background: linear-gradient(180deg, var(--background-dark) 0%, rgba(13, 14, 18, 0.8) 100%); /* Subtle gradient for hero section */
}

.page-vip-program__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit hero image height */
    overflow: hidden;
    position: relative;
}

.page-vip-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-vip-program__hero-content {
    position: relative; /* Ensure content is above any background elements */
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    margin-top: -150px; /* Pull content up over the image slightly for better visual flow */
    background: linear-gradient(0deg, var(--background-dark) 0%, rgba(13, 14, 18, 0.7) 100%); /* Gradient background for content */
    padding-top: 10px; /* Small top padding */
    border-radius: 10px;
}

.page-vip-program__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* H1 font size clamp */
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px var(--primary-color);
}

.page-vip-program__hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-vip-program__btn-primary,
.page-vip-program__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 100%; /* Ensure buttons adapt to width */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word;
}

.page-vip-program__btn-primary {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: #ffffff;
    border: none;
}

.page-vip-program__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, var(--glow-color) 0%, var(--primary-color) 100%);
}

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

.page-vip-program__btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-vip-program__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-vip-program__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 140, 26, 0.5);
}

.page-vip-program__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-vip-program__tiers-section {
    background: var(--card-bg); /* Darker background for this section */
    padding: 60px 20px;
    border-radius: 10px;
    margin: 40px auto;
}

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

.page-vip-program__card {
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-vip-program__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 15px var(--glow-color);
}

.page-vip-program__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure no extra space below image */
}

.page-vip-program__card-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-vip-program__card-description {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    flex-grow: 1; /* Allow description to take available space */
}

.page-vip-program__card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    color: var(--text-main);
    font-size: 0.95rem;
}

.page-vip-program__card-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-vip-program__card-features li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.page-vip-program__card-button {
    width: auto; /* Override default 100% for card buttons */
    margin: 0 auto; /* Center button in card */
}

.page-vip-program__benefits-section {
    padding: 60px 20px;
}

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

.page-vip-program__benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-program__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 15px var(--glow-color);
}

.page-vip-program__how-to-join-section {
    background: var(--card-bg);
    padding: 60px 20px;
    border-radius: 10px;
    margin: 40px auto;
}

.page-vip-program__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-vip-program__step-item {
    background: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.page-vip-program__step-item:hover {
    transform: translateX(5px);
}

.page-vip-program__step-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-vip-program__step-description {
    font-size: 1rem;
    color: var(--text-main);
}

.page-vip-program__step-description a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-vip-program__center-content {
    text-align: center;
}

.page-vip-program__faq-section {
    padding: 60px 20px;
}

.page-vip-program__faq-illustration {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.page-vip-program__faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-vip-program__faq-item[open] > .page-vip-program__faq-question {
    background: var(--primary-color);
    color: #ffffff;
    border-bottom: 1px solid var(--primary-color);
}

.page-vip-program__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    background: var(--background-dark);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
    list-style: none; /* For details summary */
}

.page-vip-program__faq-question::-webkit-details-marker {
    display: none;
}

.page-vip-program__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--secondary-color);
}

.page-vip-program__faq-item[open] .page-vip-program__faq-toggle {
    color: #ffffff;
}