/* style/vip-program.css */

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

/* Header offset for fixed header */
.page-vip-program__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    position: relative;
    overflow: hidden;
}

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

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

/* Section introduction paragraphs */
.page-vip-program__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

/* Hero Section */
.page-vip-program__hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: #26A9E0; /* Main brand color for hero background */
    color: #ffffff;
    padding: 60px 20px;
    position: relative;
}

.page-vip-program__hero-content {
    max-width: 600px;
    text-align: left;
    z-index: 1;
    margin-right: 40px;
}

.page-vip-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-vip-program__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-vip-program__hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-vip-program__hero-image-wrapper {
    flex-shrink: 0;
    max-width: 600px; /* Adjust as needed */
    height: auto;
    z-index: 1;
}

.page-vip-program__hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* General button styles */
.page-vip-program__btn-primary,
.page-vip-program__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.page-vip-program__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-vip-program__btn-primary:hover {
    background-color: #d46b00;
    border-color: #d46b00;
}

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

.page-vip-program__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.page-vip-program__btn-center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
}

/* Introduction Section */
.page-vip-program__introduction-section {
    padding: 80px 0;
    background-color: #ffffff; /* Light background */
    color: #333333;
}
.page-vip-program__introduction-section p {
    max-width: 900px;
    margin: 20px auto;
    text-align: justify;
}

/* Benefits Section */
.page-vip-program__benefits-section {
    padding: 80px 0;
    background-color: #26A9E0; /* Dark background from brand color */
    color: #ffffff;
}

.page-vip-program__benefits-section .page-vip-program__section-title,
.page-vip-program__benefits-section .page-vip-program__section-intro {
    color: #ffffff;
}

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

.page-vip-program__benefit-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-program__benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-program__benefit-image {
    width: 100%; /* Make image fill card width */
    max-width: 250px; /* Max width for image within card */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-vip-program__benefit-title {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-program__benefit-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* Tiers Section */
.page-vip-program__tiers-section {
    padding: 80px 0;
    background-color: #ffffff; /* Light background */
    color: #333333;
}

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

.page-vip-program__tier-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-vip-program__tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-program__tier-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-vip-program__tier-image {
    width: 100%; /* Make image fill card width */
    max-width: 200px; /* Max width for image within card */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-vip-program__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.page-vip-program__tier-benefits li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555555;
}

.page-vip-program__tier-benefits li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #26A9E0;
}

.page-vip-program__section-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #555555;
}