/* style/vip-privileges.css */

/* Base styles for the VIP privileges page */
.page-vip-privileges {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text on default light body background */
    background-color: #f8f8f8; /* Slightly off-white background for main content */
}

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

.page-vip-privileges__container--center {
    text-align: center;
}

.page-vip-privileges__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-vip-privileges__section:nth-of-type(even) {
    background-color: #f1f7fa; /* Light blueish background for alternating sections */
}

.page-vip-privileges__section-title {
    font-size: 36px;
    color: #26A9E0; /* Primary brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-vip-privileges__text-block {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

/* Hero Section */
.page-vip-privileges__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); /* Fixed header offset */
    background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Subtle gradient for hero background */
}

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

.page-vip-privileges__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

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