/* style/vip-club.css */

/* Biến CSS cho màu sắc */
:root {
    --page-vip-club-primary-color: #0A246A;
    --page-vip-club-secondary-color: #FFD700;
    --page-vip-club-text-dark: #2C3E50; /* Màu chữ tối cho nền sáng */
    --page-vip-club-text-light: #FFFFFF; /* Màu chữ sáng cho nền tối */
    --page-vip-club-background-light: #F8F8F8; /* Nền sáng nhẹ */
    --page-vip-club-background-dark: #0A246A; /* Nền tối chính */
    --page-vip-club-accent-color: #f5db95; /* Màu nhấn từ phân tích */
    --page-vip-club-border-color: #E0E0E0;
}

.page-vip-club {
    font-family: 'Arial', sans-serif;
    color: var(--page-vip-club-text-dark);
    line-height: 1.6;
    background-color: var(--page-vip-club-background-light);
}

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

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

.page-vip-club__section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-vip-club__section-title {
    font-size: 2.5em;
    color: var(--page-vip-club-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

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

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

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

/* Hero Section */
.page-vip-club__hero {
    background: linear-gradient(135deg, var(--page-vip-club-primary-color) 0%, #1A3E8A 100%);
    color: var(--page-vip-club-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-vip-club__hero .page-vip-club__container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-vip-club__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--page-vip-club-text-light);
}

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

/* Buttons */
.page-vip-club__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-vip-club__btn--primary {
    background-color: var(--page-vip-club-secondary-color);
    color: var(--page-vip-club-primary-color);
    border: 2px solid var(--page-vip-club-secondary-color);
}

.page-vip-club__btn--primary:hover {
    background-color: #E6B800;
    border-color: #E6B800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-vip-club__btn--secondary {
    background-color: transparent;
    color: var(--page-vip-club-secondary-color);
    border: 2px solid var(--page-vip-club-secondary-color);
    margin-left: 20px;
}

.page-vip-club__btn--secondary:hover {
    background-color: var(--page-vip-club-secondary-color);
    color: var(--page-vip-club-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-vip-club__btn--tertiary {
    background-color: var(--page-vip-club-primary-color);
    color: var(--page-vip-club-text-light);
    border: 2px solid var(--page-vip-club-primary-color);
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

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

/* Grid Layouts */
.page-vip-club__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-vip-club__level-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--page-vip-club-primary-color);
}

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

.page-vip-club__card-title {
    font-size: 1.8em;
    color: var(--page-vip-club-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club__card-description {
    font-size: 1em;
    color: #666;
}

/* How to Join Steps */
.page-vip-club__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.page-vip-club__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border-bottom: 5px solid var(--page-vip-club-secondary-color);
}

.page-vip-club__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--page-vip-club-secondary-color);
    color: var(--page-vip-club-primary-color);
    font-size: 2.2em;
    font-weight: bold;
    border-radius: 50%;
    margin: -60px auto 20px auto;
    border: 5px solid var(--page-vip-club-background-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club__step-title {
    font-size: 1.5em;
    color: var(--page-vip-club-primary-color);
    margin-bottom: 15px;
}

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

.page-vip-club__step-description a {
    color: var(--page-vip-club-primary-color);
    text-decoration: underline;
}

.page-vip-club__step-description a:hover {
    color: var(--page-vip-club-secondary-color);
}

/* Exclusive Services */
.page-vip-club__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-vip-club__list-item {
    background-color: #ffffff;
    border-left: 5px solid var(--page-vip-club-secondary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
}

.page-vip-club__list-item strong {
    color: var(--page-vip-club-primary-color);
}

/* CTA Section */
.page-vip-club__cta-section {
    background: linear-gradient(135deg, var(--page-vip-club-primary-color), #1A3E8A);
    color: var(--page-vip-club-text-light);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-vip-club__cta-section .page-vip-club__section-title {
    color: var(--page-vip-club-text-light);
}

.page-vip-club__cta-section .page-vip-club__section-title::after {
    background-color: var(--page-vip-club-secondary-color);
}

.page-vip-club__cta-section .page-vip-club__text {
    color: #E0E0E0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-vip-club__cta-buttons .page-vip-club__btn--primary {
    background-color: var(--page-vip-club-secondary-color);
    color: var(--page-vip-club-primary-color);
    border-color: var(--page-vip-club-secondary-color);
}

.page-vip-club__cta-buttons .page-vip-club__btn--secondary {
    background-color: transparent;
    color: var(--page-vip-club-secondary-color);
    border-color: var(--page-vip-club-secondary-color);
    margin-left: 0;
}

.page-vip-club__cta-section .page-vip-club__image {
    margin-top: 50px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Detail Pages Section */
.page-vip-club__grid--details {
    margin-top: 30px;
}

.page-vip-club__detail-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--page-vip-club-secondary-color);
}

.page-vip-club__detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-vip-club__detail-card .page-vip-club__card-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: var(--page-vip-club-primary-color);
}

.page-vip-club__detail-card .page-vip-club__card-title a {
    color: var(--page-vip-club-primary-color);
    text-decoration: none;
}

.page-vip-club__detail-card .page-vip-club__card-title a:hover {
    color: var(--page-vip-club-secondary-color);
    text-decoration: underline;
}

.page-vip-club__detail-card .page-vip-club__card-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

.page-vip-club__detail-card .page-vip-club__btn {
    width: auto;
}

/* General Image Styling */
.page-vip-club__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-top: 40px;
}

.page-vip-club__image--center {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-club__hero-title {
        font-size: 3em;
    }

    .page-vip-club__hero-subtitle {
        font-size: 1.2em;
    }

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

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

    .page-vip-club__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-vip-club__btn--secondary {
        margin-left: 0;
    }
}

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

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

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

    .page-vip-club__section {
        padding: 40px 0;
    }

    .page-vip-club__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

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

    .page-vip-club__grid, .page-vip-club__steps {
        grid-template-columns: 1fr;
    }

    .page-vip-club__step-number {
        margin-top: -50px;
    }

    .page-vip-club__cta-buttons {
        flex-direction: column;
    }

    .page-vip-club__btn--secondary {
        margin-left: 0;
    }
}

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

    .page-vip-club__hero-subtitle {
        font-size: 0.95em;
    }

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

    .page-vip-club__btn {
        padding: 10px 20px;
        font-size: 0.9em;
        width: 100%;
    }

    .page-vip-club__step-item {
        padding: 20px;
    }

    .page-vip-club__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        margin-top: -40px;
    }

    .page-vip-club__card-title, .page-vip-club__step-title {
        font-size: 1.3em;
    }

    .page-vip-club__list-item {
        font-size: 0.95em;
        padding: 12px 15px;
    }
}