/* style/vip-program.css */

/* General Styles */
.page-vip-program {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: var(--secondary-color); /* Matches body background #FFFFFF */
}

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

.page-vip-program__section-title {
    font-size: 36px;
    color: var(--primary-color); /* Green title for contrast */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-program__section-description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
}

/* Dark background sections */
.page-vip-program__dark-bg {
    background-color: var(--primary-color); /* #017439 */
    color: #ffffff; /* White text for dark background */
}

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

.page-vip-program__dark-bg .page-vip-program__section-description {
    color: #f0f0f0;
}

.page-vip-program__dark-bg .page-vip-program__step-item h3 {
    color: #ffffff;
}

.page-vip-program__dark-bg .page-vip-program__step-item p {
    color: #f0f0f0;
}

/* 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 content is not hidden by fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #017439aa 50%, #FFFFFF 100%); /* Green to white gradient */
    color: #ffffff;
}

.page-vip-program__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-vip-program__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-vip-program__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.page-vip-program__hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-program__hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-vip-program__btn-register {
    background: #C30808; /* Custom color for register */
    color: #FFFF00; /* Custom font color for register */
}

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