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

.page-promotions-vip-benefits {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light grey for general text on dark backgrounds */
    line-height: 1.6;
    background-color: #1A202C;
}

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

.page-promotions-vip-benefits__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3e485e 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    position: relative;
    overflow: hidden;
}

.page-promotions-vip-benefits__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-benefits__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e5dfd3;
}

.page-promotions-vip-benefits__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    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;
    border: none;
    cursor: pointer;
}

.page-promotions-vip-benefits__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions-vip-benefits__cta-button--secondary {
    background-color: #4CAF50; /* Green button */
    color: #FFFFFF;
}

.page-promotions-vip-benefits__cta-button--secondary:hover {
    background-color: #45a049;
}

.page-promotions-vip-benefits__section {
    padding: 60px 0;
    background-color: #1A202C;
    color: #e5dfd3;
}

.page-promotions-vip-benefits__section--dark {
    background-color: #2a3345; /* Slightly lighter dark grey for contrast */
}

.page-promotions-vip-benefits__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-vip-benefits__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-vip-benefits__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e5dfd3;
}

.page-promotions-vip-benefits__inline-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-vip-benefits__inline-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-promotions-vip-benefits__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #e5dfd3;
}

.page-promotions-vip-benefits__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-promotions-vip-benefits__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-vip-benefits__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-vip-benefits__hero-subtitle {
        font-size: 1.1em;
    }

    .page-promotions-vip-benefits__section-title {
        font-size: 2em;
    }

    .page-promotions-vip-benefits__sub-title {
        font-size: 1.5em;
    }

    .page-promotions-vip-benefits__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-vip-benefits__text-content, .page-promotions-vip-benefits__list-item {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-benefits__hero-title {
        font-size: 2em;
    }

    .page-promotions-vip-benefits__hero-subtitle {
        font-size: 0.9em;
    }

    .page-promotions-vip-benefits__section-title {
        font-size: 1.8em;
    }

    .page-promotions-vip-benefits__sub-title {
        font-size: 1.3em;
    }

    .page-promotions-vip-benefits__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}