/* style/vip-program.css */

/* Base styles for the VIP Program page content */
.page-vip-program {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #f4f4f4; /* Matches body background */
}

/* Section styling */
.page-vip-program__section {
    padding: 60px 20px;
    text-align: center;
}

.page-vip-program__dark-bg {
    background-color: #1A202C; /* Main brand color */
    color: #ffffff; /* White text for dark background */
}

.page-vip-program__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-vip-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add some padding for content */
}

/* Hero Section */
.page-vip-program__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure header offset */
    overflow: hidden; /* Prevent content overflow */
}

.page-vip-program__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-vip-program__hero-image {
    width: 100%;
    margin-bottom: 30px;
    max-width: 1200px; /* Constrain image width */
}

.page-vip-program__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-vip-program__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: #ffffff; /* White text on dark hero background */
}

.page-vip-program__main-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for main title */
}

.page-vip-program__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* General Titles */
.page-vip-program__section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #1A202C;
}

.page-vip-program__section-title--white {
    color: #ffffff;
}

.page-vip-program__text-block {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-program__text-block--white {
    color: #f0f0f0;
}

.page-vip-program__text-block--center {
    text-align: center;
}

.page-vip-program__highlight {
    color: #FFD700; /* Accent color for highlights */
    font-weight: bold;
}

/* CTA Button */
.page-vip-program__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    max-width: 100%; /* Responsive button */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-vip-program__btn-primary {
    background: #FFD700; /* Accent color for primary button */
    color: #1A202C; /* Dark text for accent background */
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-vip-program__btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-vip-program__btn-secondary {
    background: #1A202C; /* Main brand color for secondary button */
    color: #FFD700; /* Accent text for dark background */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-vip-program__btn-secondary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

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

.page-vip-program__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

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

/* Card Styling */
.page-vip-program__card {
    background: #ffffff;
    color: #333333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px; /* Ensure cards have some height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.page-vip-program__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-vip-program__card--dark {
    background: #2A303C; /* Slightly lighter than main dark color for contrast */
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-program__card--dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-program__card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFD700; /* Accent color for card titles */
}

.page-vip-program__card--dark .page-vip-program__card-title {
    color: #FFD700; /* Keep accent color for card titles on dark cards */
}

/* Step Cards */
.page-vip-program__step-card {
    background: #2A303C;
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.page-vip-program__step-number {
    font-size: 48px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1;
}

.page-vip-program__step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-vip-program__step-card p {
    font-size: 16px;
    color: #f0f0f0;
}

.page-vip-program__step-card a {
    color: #FFD700;
    text-decoration: underline;
}

.page-vip-program__step-card a:hover {
    color: #e6c200;
}

/* Image Wrappers */
.page-vip-program__image-wrapper {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 1000px; /* Constrain content images */
    margin-left: auto;
    margin-right: auto;
}