/* style/vip-club.css */
.page-vip-club {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-vip-club__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient */
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.page-vip-club__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue_gold]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 20px;
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-vip-club__hero-image-wrapper {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 450px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-vip-club__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-vip-club__hero-actions {
    display: flex;
    gap: 15px;
}

.page-vip-club__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-vip-club__btn--primary {
    background-color: #FFCC00; /* Accent color */
    color: #003366; /* Main color for text */
    border: 2px solid #FFCC00;
}

.page-vip-club__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-vip-club__btn--secondary {
    background-color: transparent;
    color: #FFCC00; /* Accent color */
    border: 2px solid #FFCC00;
}

.page-vip-club__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-vip-club__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-vip-club__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-vip-club__section-title {
    font-size: 2.8em;
    color: #003366; /* Main color */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-vip-club__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Accent color */
    border-radius: 2px;
}

.page-vip-club__section-subtitle {
    font-size: 1.3em;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.page-vip-club__intro, .page-vip-club__levels, .page-vip-club__benefits, .page-vip-club__how-to-join, .page-vip-club__why-choose, .page-vip-club__detail-pages, .page-vip-club__call-to-action {
    padding: 60px 0;
}

.page-vip-club__intro {
    background-color: #f8f8f8;
}

.page-vip-club__text-content {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
}

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

.page-vip-club__image-inline {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-club__levels {
    background-color: #fff;
}

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

.page-vip-club__level-card {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club__level-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-vip-club__level-title {
    font-size: 1.8em;
    color: #003366; /* Main color */
    margin-bottom: 15px;
}

.page-vip-club__level-description {
    font-size: 1em;
    color: #555;
}

.page-vip-club__benefits {
    background-color: #f0f4f8; /* Lighter blue/grey for contrast */
}

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

.page-vip-club__benefit-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: #FFCC00; /* Accent color for icons */
}

.page-vip-club__benefit-title {
    font-size: 1.6em;
    color: #003366; /* Main color */
    margin-bottom: 10px;
}

.page-vip-club__benefit-description {
    font-size: 1em;
    color: #555;
}

.page-vip-club__how-to-join {
    background-color: #fff;
}

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

.page-vip-club__step-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-vip-club__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #003366; /* Main color */
    color: #FFCC00; /* Accent color */
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-vip-club__step-title {
    font-size: 1.8em;
    color: #003366; /* Main color */
    margin-bottom: 15px;
}

.page-vip-club__step-description {
    font-size: 1em;
    color: #555;
}

.page-vip-club__step-description a {
    color: #003366;
    text-decoration: underline;
}

.page-vip-club__step-description a:hover {
    color: #FFCC00;
}

.page-vip-club__cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

.page-vip-club__why-choose {
    background-color: #f8f8f8;
}

.page-vip-club__detail-pages {
    background-color: #fff;
}

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

.page-vip-club__detail-card {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club__detail-title {
    font-size: 1.5em;
    color: #003366; /* Main color */
    margin-bottom: 10px;
}

.page-vip-club__detail-title a {
    color: #003366;
    text-decoration: none;
}

.page-vip-club__detail-title a:hover {
    color: #FFCC00;
    text-decoration: underline;
}

.page-vip-club__detail-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-vip-club__call-to-action {
    background: linear-gradient(90deg, #003366, #001a33);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-vip-club__call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-vip-club__cta-content {
    position: relative;
    z-index: 1;
}

.page-vip-club__cta-title {
    font-size: 3em;
    color: #FFCC00; /* Accent color */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__cta-description {
    font-size: 1.4em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__cta-description a {
    color: #FFCC00;
    text-decoration: underline;
}

.page-vip-club__cta-description a:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-vip-club__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        gap: 30px;
    }

    .page-vip-club__hero-content {
        max-width: 100%;
        padding: 0;
    }

    .page-vip-club__hero-image-wrapper {
        width: 100%;
        max-width: 500px;
        height: 250px;
    }

    .page-vip-club__hero-title {
        font-size: 2.8em;
    }

    .page-vip-club__hero-description {
        font-size: 1.1em;
    }

    .page-vip-club__hero-actions {
        justify-content: center;
    }

    .page-vip-club__section-title {
        font-size: 2.2em;
    }

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

    .page-vip-club__cta-title {
        font-size: 2.5em;
    }

    .page-vip-club__cta-description {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-vip-club__hero {
        padding: 40px 15px;
    }

    .page-vip-club__hero-title {
        font-size: 2.2em;
    }

    .page-vip-club__hero-description {
        font-size: 1em;
    }

    .page-vip-club__hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .page-vip-club__btn {
        width: 100%;
    }

    .page-vip-club__level-grid, .page-vip-club__benefits-grid, .page-vip-club__steps-grid, .page-vip-club__detail-grid {
        grid-template-columns: 1fr;
    }

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

    .page-vip-club__section-subtitle {
        font-size: 1em;
    }

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

    .page-vip-club__cta-description {
        font-size: 1em;
    }

    .page-vip-club__intro, .page-vip-club__levels, .page-vip-club__benefits, .page-vip-club__how-to-join, .page-vip-club__why-choose, .page-vip-club__detail-pages, .page-vip-club__call-to-action {
        padding: 40px 0;
    }
}

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

    .page-vip-club__hero-image-wrapper {
        height: 200px;
    }

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

    .page-vip-club__cta-title {
        font-size: 1.6em;
    }
}