/* 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 background body */
    background-color: var(--dark-bg-1); /* Inherit from shared.css, implies dark background */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-vip-program__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-vip-program__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0; /* Lighter text for readability on dark backgrounds */
}

/* Hero Section */
.page-vip-program__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    padding: 80px 20px;
}

.page-vip-program__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5); /* Darken image for text readability, no color change */
}

.page-vip-program__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-vip-program__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF; /* Ensure high contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-program__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0; /* Ensure high contrast */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-vip-program__cta-button {
    display: inline-block;
    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;
    max-width: 100%; /* For responsive buttons */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-vip-program__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid transparent;
}