/* style/promotions-vip-benefits.css */

/* Base styles for the page content */
.page-promotions-vip-benefits {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
}

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

/* Section titles */
.page-promotions-vip-benefits__section-title {
    font-size: 2.5em;
    color: #ffffff; /* White for dark sections */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Section descriptions */
.page-promotions-vip-benefits__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-promotions-vip-benefits__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: #017439; /* Brand color for hero background */
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.page-promotions-vip-benefits__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 10px;
    margin: 20px;
}

.page-promotions-vip-benefits__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFF00; /* Custom font color for title */
    line-height: 1.2;
}

.page-promotions-vip-benefits__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ffffff;
}