/* style/vip-club.css */

/* General page styles */
.page-vip-club {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #ffffff; /* Default body background */
}

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

.page-vip-club__center-content {
    text-align: center;
}

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

.page-vip-club__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Color contrast classes */
.page-vip-club__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-vip-club__dark-bg {
    background-color: #26A9E0; /* Primary color as background */
    color: #ffffff; /* White text for contrast */
}

/* Hero Section */
.page-vip-club__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 spacing */
    background: linear-gradient(135deg, #26A9E0, #a1dcf2); /* Gradient with primary color */
}

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

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

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

.page-vip-club__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}