/* style/vip-program.css */

/* Custom Properties for Colors */
:root {
    --sz777-primary-color: #F2C14E; /* Main Brand Color */
    --sz777-secondary-color: #FFD36B; /* Auxiliary Brand Color */
    --sz777-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Gradient */
    --sz777-card-bg: #111111; /* Card Background */
    --sz777-background: #0A0A0A; /* Page Background */
    --sz777-text-main: #FFF6D6; /* Main Text Color */
    --sz777-border-color: #3A2A12; /* Border Color */
    --sz777-glow-color: #FFD36B; /* Glow Color */

    /* Default text for light/dark backgrounds to ensure contrast */
    --text-on-dark: #FFF6D6;
    --text-on-light: #333333;
}

/* Base styles for the VIP Program page content */
.page-vip-program {
    background-color: var(--sz777-background);
    color: var(--sz777-text-main); /* Light text for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 50px; /* Ensure space above footer */
}

/* Container for content sections */
.page-vip-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

/* Section titles */
.page-vip-program__section-title {
    font-size: clamp(28px, 3.5vw, 42px); /* Responsive font size for H2 */
    color: var(--sz777-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Subtitles (H3) */
.page-vip-program__sub-title {
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--sz777-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Text blocks (paragraphs) */
.page-vip-program__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--sz777-text-main);
}

/* Card styles */
.page-vip-program__card {
    background-color: var(--sz777-card-bg);
    border: 1px solid var(--sz777-border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards in a grid have equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-vip-program__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.2);
}

.page-vip-program__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
    display: block; /* Ensure no extra space below image */
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
}

.page-vip-program__card-title {
    font-size: 24px;
    color: var(--sz777-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program__card-description {
    font-size: 16px;
    color: var(--sz777-text-main);
    flex-grow: 1; /* Allows description to take up available space */
}

.page-vip-program__card-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
    flex-grow: 1;
}

.page-vip-program__card-list li {
    font-size: 16px;
    color: var(--sz777-text-main);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-vip-program__card-list li::before {
    content: '⭐'; /* Unicode star or similar */
    position: absolute;
    left: 0;
    color: var(--sz777-secondary-color);
}

/* Button styles */
.page-vip-program__btn-primary,
.page-vip-program__btn-secondary,
.page-vip-program__btn-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Break long words */
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-vip-program__btn-primary {
    background: var(--sz777-button-gradient);
    color: var(--sz777-text-main); /* Text Main for contrast */
    box-shadow: 0 4px 10px rgba(255, 211, 107, 0.4);
}

.page-vip-program__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 211, 107, 0.6);
}

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

.page-vip-program__btn-secondary:hover {
    background-color: var(--sz777-primary-color);
    color: var(--sz777-background); /* Dark background for contrast */
    transform: translateY(-2px);
}

.page-vip-program__btn-link {
    background-color: transparent;
    color: var(--sz777-secondary-color);
    border: 1px solid var(--sz777-secondary-color);
    margin-top: 15px;
    font-size: 15px;
    padding: 10px 20px;
}

.page-vip-program__btn-link:hover {
    background-color: var(--sz777-secondary-color);
    color: var(--sz777-card-bg); /* Dark color for contrast */
    transform: translateY(-1px);
}

.page-vip-program__cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    justify-content: center;
    width: 100%; /* Ensure container takes full width */
    max-width: 100%; /* Prevent overflow */
    box-sizing: border-box;
}

.page-vip-program__cta-buttons--center {
    justify-content: center;
}

/* Hero Section */
.page-vip-program__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Space for fixed header */
    padding-bottom: 50px; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--sz777-background); /* Fallback background */
}

.page-vip-program__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height of the image wrapper */
    overflow: hidden;
}

.page-vip-program__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-vip-program__hero-content {
    position: relative; /* Ensure content is above image if needed, but not overlaid */
    z-index: 2;
    padding-top: 30px; /* Space between image and text */
    max-width: 900px;
}

.page-vip-program__main-title {
    font-size: clamp(36px, 5vw, 60px); /* Responsive H1 */
    color: var(--sz777-secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

.page-vip-program__hero-description {
    font-size: 19px;
    color: var(--sz777-text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* VIP Tiers Section */
.page-vip-program__tiers-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

/* Bonuses Section */
.page-vip-program__bonuses-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

/* Service Section */
.page-vip-program__service-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-vip-program__service-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-vip-program__service-content > div {
    flex: 1;
    min-width: 300px;
}

.page-vip-program__image-wrapper {
    flex-shrink: 0;
    max-width: 50%;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__service-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* Join Section */
.page-vip-program__join-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-vip-program__step-card {
    text-align: center;
    padding-bottom: 20px; /* Ensure space for button */
}