/* style/hit-club-vip.css */

/* Biến CSS */
:root {
    --page-hit-club-vip-primary-color: #007BFF;
    --page-hit-club-vip-secondary-color: #FFD700;
    --page-hit-club-vip-text-dark: #333333;
    --page-hit-club-vip-text-light: #ffffff;
    --page-hit-club-vip-bg-light: #f8f9fa;
    --page-hit-club-vip-bg-dark: #2c3e50; /* Một màu nền tối hơn để tạo độ tương phản */
    --page-hit-club-vip-border-color: #e0e0e0;
}

/* Thiết lập chung cho trang */
.page-hit-club-vip {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-hit-club-vip-text-dark);
    background-color: var(--page-hit-club-vip-bg-light);
}

.page-hit-club-vip__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Phần Hero */
.page-hit-club-vip__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--page-hit-club-vip-primary-color) 0%, #0056b3 100%); /* Màu xanh đậm hơn */
    color: var(--page-hit-club-vip-text-light);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-hit-club-vip__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-hit-club-vip__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-hit-club-vip-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-hit-club-vip__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 300;
}

.page-hit-club-vip__hero-description {
    font-size: 1.1em;
    margin-bottom: 40px;
}

.page-hit-club-vip__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-hit-club-vip__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3; /* Làm mờ ảnh nền */
    z-index: 0;
}

.page-hit-club-vip__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Nút chung */
.page-hit-club-vip__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-hit-club-vip__btn--primary {
    background-color: var(--page-hit-club-vip-secondary-color);
    color: var(--page-hit-club-vip-bg-dark); /* Màu chữ tối để đảm bảo độ tương phản */
}

.page-hit-club-vip__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-hit-club-vip__btn--secondary {
    background-color: transparent;
    color: var(--page-hit-club-vip-text-light);
    border: 2px solid var(--page-hit-club-vip-text-light);
}

.page-hit-club-vip__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-hit-club-vip__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-hit-club-vip__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Phần chung của các section */
.page-hit-club-vip__section {
    padding: 60px 0;
    text-align: center;
}

.page-hit-club-vip__section--benefits {
    background-color: var(--page-hit-club-vip-bg-light);
}

.page-hit-club-vip__section--join {
    background-color: #f0f4f8;
}

.page-hit-club-vip__section--experience {
    background-color: var(--page-hit-club-vip-bg-light);
}

.page-hit-club-vip__section--faq {
    background-color: #f0f4f8;
}

.page-hit-club-vip__section--details {
    background-color: var(--page-hit-club-vip-bg-light);
}

.page-hit-club-vip__section--cta {
    background: linear-gradient(135deg, var(--page-hit-club-vip-primary-color) 0%, #0056b3 100%);
    color: var(--page-hit-club-vip-text-light);
}

.page-hit-club-vip__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-hit-club-vip-primary-color);
}

.page-hit-club-vip__section--cta .page-hit-club-vip__section-title {
    color: var(--page-hit-club-vip-secondary-color);
}

.page-hit-club-vip__section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-hit-club-vip__section--cta .page-hit-club-vip__section-description {
    color: #e0e0e0;
}

.page-hit-club-vip__section-description--centered {
    text-align: center;
    margin-top: 30px;
}

/* Lưới tính năng */
.page-hit-club-vip__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-hit-club-vip__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-hit-club-vip__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-hit-club-vip__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

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

.page-hit-club-vip__feature-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

.page-hit-club-vip__text-link {
    color: var(--page-hit-club-vip-primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-hit-club-vip__text-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Bước gia nhập */
.page-hit-club-vip__join-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-hit-club-vip__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-hit-club-vip__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-hit-club-vip__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

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

.page-hit-club-vip__step-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

/* Trải nghiệm VIP */
.page-hit-club-vip__experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-hit-club-vip__experience-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-hit-club-vip__experience-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-hit-club-vip__experience-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

/* FAQ */
.page-hit-club-vip__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-hit-club-vip__faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-hit-club-vip__faq-question {
    font-size: 1.4em;
    color: var(--page-hit-club-vip-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.page-hit-club-vip__faq-answer {
    font-size: 1em;
    color: #666;
    display: none; /* Mặc định ẩn */
    padding-top: 10px;
    border-top: 1px solid var(--page-hit-club-vip-border-color);
    margin-top: 10px;
}

.page-hit-club-vip__faq-question.active + .page-hit-club-vip__faq-answer {
    display: block;
}

/* Chi tiết trang con */
.page-hit-club-vip__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-hit-club-vip__detail-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-hit-club-vip__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.page-hit-club-vip__detail-title a {
    color: var(--page-hit-club-vip-primary-color);
    text-decoration: none;
}

.page-hit-club-vip__detail-title a:hover {
    text-decoration: underline;
}

.page-hit-club-vip__detail-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

/* CTA cuối trang */
.page-hit-club-vip__cta-content {
    padding: 60px 20px;
}

.page-hit-club-vip__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hit-club-vip__hero {
        padding: 60px 15px;
    }

    .page-hit-club-vip__hero-title {
        font-size: 2.5em;
    }

    .page-hit-club-vip__hero-subtitle {
        font-size: 1.2em;
    }

    .page-hit-club-vip__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-hit-club-vip__btn {
        width: 100%;
    }

    .page-hit-club-vip__section-title {
        font-size: 2em;
    }

    .page-hit-club-vip__section-description {
        font-size: 1em;
    }

    .page-hit-club-vip__feature-item,
    .page-hit-club-vip__step-item,
    .page-hit-club-vip__experience-item,
    .page-hit-club-vip__detail-item {
        padding: 20px;
    }

    .page-hit-club-vip__feature-title,
    .page-hit-club-vip__step-title,
    .page-hit-club-vip__experience-title,
    .page-hit-club-vip__detail-title {
        font-size: 1.4em;
    }

    .page-hit-club-vip__faq-question {
        font-size: 1.2em;
    }
}

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

    .page-hit-club-vip__hero-subtitle {
        font-size: 1em;
    }

    .page-hit-club-vip__section-title {
        font-size: 1.8em;
    }

    .page-hit-club-vip__cta-actions {
        flex-direction: column;
        gap: 10px;
    }
}